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/fr/katello.po CHANGED
@@ -54,6 +54,12 @@ msgstr "Sélectionnez soit la dernière vue du contenu, soit la version de la vu
54
54
  msgid " RPMs"
55
55
  msgstr " RPMs"
56
56
 
57
+ msgid " The base path can be a web address or a filesystem location."
58
+ msgstr ""
59
+
60
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
61
+ msgstr ""
62
+
57
63
  msgid " View task details "
58
64
  msgstr " Détails de la tâche "
59
65
 
@@ -84,12 +90,18 @@ msgstr "trouvé(e)(s)."
84
90
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
85
91
  msgstr " est en dehors de l'ordonnancement du chemin de l'environnement. La pratique recommandée est de passer à l'environnement suivant dans le chemin."
86
92
 
93
+ msgid " or any step on the left."
94
+ msgstr ""
95
+
87
96
  msgid " to manage and promote content views, or select a different environment."
88
97
  msgstr ""
89
98
 
90
99
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
91
100
  msgstr "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
92
101
 
102
+ msgid "${option}"
103
+ msgstr ""
104
+
93
105
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
94
106
  msgstr "${pluralize(akResponse.length, 'activation key')} seront supprimés de l’affichage de contenu ${selectedCVNameForAK} dans"
95
107
 
@@ -332,6 +344,24 @@ msgstr "%{used} de %{total}"
332
344
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
333
345
  msgstr "%{view_label} n'a pas pu être promu en %{environment_label} parce que la vue du contenu et l'environnement ne sont pas dans la même organisation !"
334
346
 
347
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
348
+ msgstr ""
349
+
350
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
351
+ msgstr ""
352
+
353
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
354
+ msgstr ""
355
+
356
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
357
+ msgstr ""
358
+
359
+ 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. "
360
+ msgstr ""
361
+
362
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
363
+ msgstr ""
364
+
335
365
  msgid "(Orphaned)"
336
366
  msgstr "(Abandonné)"
337
367
 
@@ -551,11 +581,11 @@ msgstr "Ajouter les abonnements consommés par un manifeste de Red Hat Subscript
551
581
  msgid "Add subscriptions to one or more hosts"
552
582
  msgstr "Ajouter des abonnements à un ou plusieurs hôtes"
553
583
 
554
- msgid "Add to this filter using the 'Add Deb rule' button."
584
+ msgid "Add to a host collection"
555
585
  msgstr ""
556
586
 
557
- msgid "Add to this filter using the 'Add RPM rule' button."
558
- msgstr "Ajoutez à ce filtre en utilisant le bouton \"Ajouter un groupe de paquets\" (Add RPM)"
587
+ msgid "Add to this filter using the 'Add Deb rule' button."
588
+ msgstr ""
559
589
 
560
590
  msgid "Add to this filter using the 'Add filter rule' button."
561
591
  msgstr "Ajoutez à ce filtre en utilisant le bouton \"Ajouter une règle de filtre\""
@@ -614,6 +644,9 @@ msgstr ""
614
644
  msgid "All subpaths must have a slash at the end and none at the front"
615
645
  msgstr ""
616
646
 
647
+ msgid "All up to date"
648
+ msgstr ""
649
+
617
650
  msgid "All versions"
618
651
  msgstr "Toutes les versions"
619
652
 
@@ -641,6 +674,9 @@ msgstr "Inclure également la dernière version de package de mise à jour pour
641
674
  msgid "Alter a host's host collections"
642
675
  msgstr ""
643
676
 
677
+ msgid "Alternate Content Source HTTP Proxy"
678
+ msgstr ""
679
+
644
680
  msgid "Alternate Content Sources"
645
681
  msgstr ""
646
682
 
@@ -653,7 +689,10 @@ msgstr ""
653
689
  msgid "Alternate content source deleted"
654
690
  msgstr ""
655
691
 
656
- msgid "Alternate content sources"
692
+ msgid "Alternate content source edited"
693
+ msgstr ""
694
+
695
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
657
696
  msgstr ""
658
697
 
659
698
  msgid "Always Use Latest (currently %{version})"
@@ -665,7 +704,7 @@ msgstr "Toujours mettre à jour la dernière version"
665
704
  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."
666
705
  msgstr "Nombre de workers dans le pool pour l'exécution des tâches liées à l'hôte. Si la valeur est 0, la file d'attente par défaut sera utilisée à la place. Il faut redémarrer le service dynflowd/foreman-tasks."
667
706
 
668
- msgid "An alternate content source can be added by using the \"Add source\" button above."
707
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
669
708
  msgstr ""
670
709
 
671
710
  msgid "An environment is missing a prior"
@@ -702,9 +741,15 @@ msgstr "Collections Ansible"
702
741
  msgid "Applicability Batch Size"
703
742
  msgstr "Applicabilité Taille du lot"
704
743
 
744
+ msgid "Applicable"
745
+ msgstr ""
746
+
705
747
  msgid "Applicable Content Hosts"
706
748
  msgstr "Hôtes de contenu applicables"
707
749
 
750
+ msgid "Applicable errata apply to at least one package installed on the host."
751
+ msgstr ""
752
+
708
753
  msgid "Application"
709
754
  msgstr "Application"
710
755
 
@@ -881,6 +926,9 @@ msgstr "référentiels disponibles"
881
926
  msgid "Available Schema Versions"
882
927
  msgstr "Versions de schémas disponibles"
883
928
 
929
+ msgid "Back"
930
+ msgstr ""
931
+
884
932
  msgid "Backend System Status"
885
933
  msgstr "Statut du système backend"
886
934
 
@@ -947,6 +995,12 @@ msgstr "Correction de bogues"
947
995
  msgid "Bugs"
948
996
  msgstr "Bogues"
949
997
 
998
+ msgid "Bulk alternate content source delete has started."
999
+ msgstr ""
1000
+
1001
+ msgid "Bulk alternate content source refresh has started."
1002
+ msgstr ""
1003
+
950
1004
  msgid "Bulk generate applicability for host %s"
951
1005
  msgstr "La masse génère l'applicabilité pour les hôtes %s"
952
1006
 
@@ -956,9 +1010,6 @@ msgstr "La masse génère l'applicabilité pour les hôtes"
956
1010
  msgid "Bulk remove versions from a content view and reassign systems and keys"
957
1011
  msgstr ""
958
1012
 
959
- msgid "CA Cert"
960
- msgstr ""
961
-
962
1013
  msgid "CDN Configuration"
963
1014
  msgstr "Configuration CDN"
964
1015
 
@@ -1064,6 +1115,9 @@ msgstr "Impossible d'ajouter des versions composites à un autre affichage de co
1064
1115
  msgid "Cannot add default content view to composite content view"
1065
1116
  msgstr "Impossible d'ajouter un affichage du contenu par défaut à la vue du contenu composite"
1066
1117
 
1118
+ msgid "Cannot add generated content view versions to composite content view"
1119
+ msgstr ""
1120
+
1067
1121
  msgid "Cannot add repositories to a composite content view"
1068
1122
  msgstr "Impossible d'ajouter des référentiels à un affichage du contenu composite"
1069
1123
 
@@ -1205,6 +1259,9 @@ msgstr "Vérifier les services avant les actions"
1205
1259
  msgid "Checksum"
1206
1260
  msgstr "Somme de vérification"
1207
1261
 
1262
+ msgid "Checksum is a required parameter."
1263
+ msgstr ""
1264
+
1208
1265
  msgid "Checksum of file to upload"
1209
1266
  msgstr "Somme de contrôle du fichier à télécharger"
1210
1267
 
@@ -1214,6 +1271,9 @@ msgstr "Somme de contrôle du référentiel, actuellement 'sha1' & 'sha256' sont
1214
1271
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1215
1272
  msgstr "Le type de checksum ne peut pas être défini pour les référentiels yum avec une politique de téléchargement à la demande."
1216
1273
 
1274
+ msgid "Choose content credentials if required for this RHUI source."
1275
+ msgstr ""
1276
+
1217
1277
  msgid "Clear any previous registration and run subscription-manager with --force."
1218
1278
  msgstr "Effacez tout enregistrement précédent et exécutez subscription-manager avec --force."
1219
1279
 
@@ -1229,9 +1289,6 @@ msgstr "Cliquez ici pour aller à la page des tâches."
1229
1289
  msgid "Click {update} below to save changes."
1230
1290
  msgstr ""
1231
1291
 
1232
- msgid "Client key"
1233
- msgstr ""
1234
-
1235
1292
  msgid "Clone"
1236
1293
  msgstr "Cloner"
1237
1294
 
@@ -1247,6 +1304,9 @@ msgstr "Mise à jour de profil combiné"
1247
1304
  msgid "Combined Profile Update for %s"
1248
1305
  msgstr "Mise à jour de profil combiné pour %s"
1249
1306
 
1307
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1308
+ msgstr ""
1309
+
1250
1310
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1251
1311
  msgstr ""
1252
1312
 
@@ -1256,12 +1316,18 @@ msgstr ""
1256
1316
  msgid "Comma-separated list of tags to sync for a container image repository"
1257
1317
  msgstr ""
1258
1318
 
1319
+ msgid "Compare"
1320
+ msgstr ""
1321
+
1259
1322
  msgid "Component"
1260
1323
  msgstr "Composant"
1261
1324
 
1262
1325
  msgid "Component Content View"
1263
1326
  msgstr "Affichage du contenu des composants"
1264
1327
 
1328
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1329
+ msgstr ""
1330
+
1265
1331
  msgid "Components"
1266
1332
  msgstr "Composants"
1267
1333
 
@@ -1412,6 +1478,9 @@ msgstr "Version d'affichage de contenu non définie"
1412
1478
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1413
1479
  msgstr "Content View Version spécifiée dans les métadonnées - '%{name}' existe déjà. Si vous souhaitez remplacer la version existante, supprimez %{name} et réessayez. "
1414
1480
 
1481
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1482
+ msgstr ""
1483
+
1415
1484
  msgid "Content View and Environment not set for registration."
1416
1485
  msgstr "Affichage de contenu et environnement non définis pour l'enregistrement."
1417
1486
 
@@ -1424,6 +1493,9 @@ msgstr ""
1424
1493
  msgid "Content Views"
1425
1494
  msgstr "Affichages du contenu"
1426
1495
 
1496
+ msgid "Content cannot be imported into a Composite Content View. "
1497
+ msgstr ""
1498
+
1427
1499
  msgid "Content credential"
1428
1500
  msgstr ""
1429
1501
 
@@ -1448,6 +1520,9 @@ msgstr "Le contenu ne peut pas être téléchargé dans pulp"
1448
1520
  msgid "Content override search parameters"
1449
1521
  msgstr ""
1450
1522
 
1523
+ msgid "Content source"
1524
+ msgstr ""
1525
+
1451
1526
  msgid "Content source ID"
1452
1527
  msgstr "ID Source de contenu"
1453
1528
 
@@ -1514,6 +1589,9 @@ msgstr "Identifiant de l'historique d'importation de la version d’affichage de
1514
1589
  msgid "Content views"
1515
1590
  msgstr "Affichages de contenu"
1516
1591
 
1592
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1593
+ msgstr ""
1594
+
1517
1595
  msgid "Content_Host_Status"
1518
1596
  msgstr "Content_Host_Status"
1519
1597
 
@@ -1655,6 +1733,9 @@ msgstr "Le pré-environnement '%s’ est introuvable"
1655
1733
  msgid "Couldn't find product with id '%s'"
1656
1734
  msgstr "Le produit avec l'ID '%s' est introuvable"
1657
1735
 
1736
+ msgid "Couldn't find products with id '%s'"
1737
+ msgstr ""
1738
+
1658
1739
  msgid "Couldn't find repository '%s'"
1659
1740
  msgstr "Référentiel '%s' introuvable"
1660
1741
 
@@ -1724,12 +1805,12 @@ msgstr "Créer un produit"
1724
1805
  msgid "Create a sync plan"
1725
1806
  msgstr "Créer un plan de synchronisation"
1726
1807
 
1727
- msgid "Create an ACS"
1728
- msgstr ""
1729
-
1730
1808
  msgid "Create an activation key"
1731
1809
  msgstr "Créer une clé d'activation"
1732
1810
 
1811
+ 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."
1812
+ msgstr ""
1813
+
1733
1814
  msgid "Create an environment"
1734
1815
  msgstr "Créer un environnement"
1735
1816
 
@@ -1739,6 +1820,9 @@ msgstr "Créer un environnement dans une organisation"
1739
1820
  msgid "Create an upload request"
1740
1821
  msgstr "Créer une requête de téléchargement"
1741
1822
 
1823
+ msgid "Create content credentials with the generated SSL certificate and key."
1824
+ msgstr ""
1825
+
1742
1826
  msgid "Create content view"
1743
1827
  msgstr "Créer Affichage du contenu"
1744
1828
 
@@ -1778,6 +1862,9 @@ msgstr "Organisation actuelle non déterminée."
1778
1862
  msgid "Custom"
1779
1863
  msgstr ""
1780
1864
 
1865
+ msgid "Custom CDN"
1866
+ msgstr ""
1867
+
1781
1868
  msgid "Custom Content Repositories"
1782
1869
  msgstr "Référentiels au contenu personnalisé"
1783
1870
 
@@ -1793,6 +1880,9 @@ msgstr ""
1793
1880
  msgid "DEB name"
1794
1881
  msgstr ""
1795
1882
 
1883
+ msgid "DEB package updates"
1884
+ msgstr ""
1885
+
1796
1886
  msgid "Database connection"
1797
1887
  msgstr "Connexion à la base de données"
1798
1888
 
@@ -1928,6 +2018,12 @@ msgstr "Données utilisateur du système d'exploitation synchronisé par défaut
1928
2018
  msgid "Default user data for new Operating Systems created from synced content"
1929
2019
  msgstr "Données utilisateur par défaut pour les nouveaux systèmes d'exploitation créés à partir de contenu synchronisé"
1930
2020
 
2021
+ msgid "Define RHUI repository paths with guided steps."
2022
+ msgstr ""
2023
+
2024
+ msgid "Define repositories structured under a common web or filesystem path."
2025
+ msgstr ""
2026
+
1931
2027
  msgid "Delete"
1932
2028
  msgstr "Supprimer"
1933
2029
 
@@ -2066,7 +2162,7 @@ msgstr "Détruire un plan de synchronisation"
2066
2162
  msgid "Destroy an activation key"
2067
2163
  msgstr "Détruire une clé d'activation"
2068
2164
 
2069
- msgid "Destroy an alternate content source"
2165
+ msgid "Destroy an alternate content source."
2070
2166
  msgstr ""
2071
2167
 
2072
2168
  msgid "Destroy an environment"
@@ -2129,6 +2225,9 @@ msgstr "Discover"
2129
2225
  msgid "Discover Repositories"
2130
2226
  msgstr "Découvrir des référentiels"
2131
2227
 
2228
+ msgid "Distribute archived content view versions"
2229
+ msgstr ""
2230
+
2132
2231
  msgid "Do not include this array of content views"
2133
2232
  msgstr "N'inclut pas cet ensemble d'affichages de contenu"
2134
2233
 
@@ -2162,21 +2261,51 @@ msgstr "AVIS ERRATA"
2162
2261
  msgid "Edit"
2163
2262
  msgstr "Modifier"
2164
2263
 
2264
+ msgid "Edit ACS"
2265
+ msgstr ""
2266
+
2267
+ msgid "Edit ACS credentials"
2268
+ msgstr ""
2269
+
2270
+ msgid "Edit ACS details"
2271
+ msgstr ""
2272
+
2273
+ msgid "Edit ACS products"
2274
+ msgstr ""
2275
+
2276
+ msgid "Edit ACS smart proxies"
2277
+ msgstr ""
2278
+
2165
2279
  msgid "Edit RPM rule"
2166
2280
  msgstr "Ajouter une règle RPM"
2167
2281
 
2282
+ msgid "Edit URL and subpaths"
2283
+ msgstr ""
2284
+
2168
2285
  msgid "Edit content view assignment"
2169
2286
  msgstr ""
2170
2287
 
2288
+ msgid "Edit credentials"
2289
+ msgstr ""
2290
+
2291
+ msgid "Edit details"
2292
+ msgstr ""
2293
+
2171
2294
  msgid "Edit filter rule"
2172
2295
  msgstr "Modifier la règle de filtrage"
2173
2296
 
2174
2297
  msgid "Edit package filter rule"
2175
2298
  msgstr ""
2176
2299
 
2300
+ msgid "Edit products"
2301
+ msgstr ""
2302
+
2177
2303
  msgid "Edit rule"
2178
2304
  msgstr "Modifier la règle"
2179
2305
 
2306
+ msgid "Edit smart proxies"
2307
+ msgstr ""
2308
+
2180
2309
  msgid "Edit system purpose attributes"
2181
2310
  msgstr ""
2182
2311
 
@@ -2201,6 +2330,9 @@ msgstr "Définir la vue du contenu avec le dernier drapeau ou définir la versio
2201
2330
  msgid "Either set the latest content view or the content view version. Cannot set both"
2202
2331
  msgstr "Définissez soit la dernière vue du contenu, soit la version de la vue du contenu. Il n'est pas possible de définir les deux"
2203
2332
 
2333
+ msgid "Empty content view versions"
2334
+ msgstr ""
2335
+
2204
2336
  msgid "Enable"
2205
2337
  msgstr "Activer"
2206
2338
 
@@ -2219,6 +2351,9 @@ msgstr "Activer Traces"
2219
2351
  msgid "Enable a repository from the set"
2220
2352
  msgstr "Activer un référentiel à partir de l'ensemble"
2221
2353
 
2354
+ msgid "Enable repository sets"
2355
+ msgstr ""
2356
+
2222
2357
  msgid "Enable simple content access for a manifest"
2223
2358
  msgstr "Permettre un accès simple au contenu d'un manifeste"
2224
2359
 
@@ -2261,6 +2396,9 @@ msgstr ""
2261
2396
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2262
2397
  msgstr ""
2263
2398
 
2399
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2400
+ msgstr ""
2401
+
2264
2402
  msgid "Entitlements"
2265
2403
  msgstr "Droits d’accès"
2266
2404
 
@@ -2517,6 +2655,9 @@ msgstr "Filtrer les produits par abonnement"
2517
2655
  msgid "Filter products by sync plan id"
2518
2656
  msgstr "Filtrer les produits par id de plan de synchronisation"
2519
2657
 
2658
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2659
+ msgstr ""
2660
+
2520
2661
  msgid "Filter rule added"
2521
2662
  msgstr "Règle de filtre ajoutée."
2522
2663
 
@@ -2553,6 +2694,9 @@ msgstr "Filtres supprimés"
2553
2694
  msgid "Filters will appear here when the filter is created."
2554
2695
  msgstr ""
2555
2696
 
2697
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2698
+ msgstr ""
2699
+
2556
2700
  msgid "Finish"
2557
2701
  msgstr "Terminé"
2558
2702
 
@@ -2614,6 +2758,9 @@ msgstr "Avec tous les droits octroyés"
2614
2758
  msgid "GPG Key URL"
2615
2759
  msgstr "ID de la clé GPG"
2616
2760
 
2761
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2762
+ msgstr ""
2763
+
2617
2764
  msgid "Generate and Download"
2618
2765
  msgstr "Générer et télécharger"
2619
2766
 
@@ -2824,6 +2971,9 @@ msgstr "Stratégie avec l'ID %s introuvable."
2824
2971
  msgid "Hosts"
2825
2972
  msgstr "Hôtes"
2826
2973
 
2974
+ msgid "Hosts to update"
2975
+ msgstr ""
2976
+
2827
2977
  msgid "Hosts with Installable Errata"
2828
2978
  msgstr "Hôtes avec errata installables"
2829
2979
 
@@ -2902,6 +3052,9 @@ msgstr "ID du plan de sync"
2902
3052
  msgid "ID: %s doesn't exist "
2903
3053
  msgstr "ID : %s n'existe pas "
2904
3054
 
3055
+ 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."
3056
+ msgstr ""
3057
+
2905
3058
  msgid "Id of a deb package to find repositories that contain the deb"
2906
3059
  msgstr "Id d'un package deb pour trouver les référentiels qui contiennent le deb"
2907
3060
 
@@ -2917,6 +3070,9 @@ msgstr "Id d'une collection ansible pour trouver les référentiels qui contienn
2917
3070
  msgid "Id of an erratum to find repositories that contain the erratum"
2918
3071
  msgstr "id d'une erratum pour trouver les référentiels qui contiennent l'erratum"
2919
3072
 
3073
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3074
+ msgstr ""
3075
+
2920
3076
  msgid "Id of the content host"
2921
3077
  msgstr "ID de l'hôte du contenu"
2922
3078
 
@@ -2989,6 +3145,9 @@ msgstr ""
2989
3145
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2990
3146
  msgstr "Si spécifié, supprimer la première instance d'un abonnement avec la quantité et l'id correspondants"
2991
3147
 
3148
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3149
+ msgstr ""
3150
+
2992
3151
  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."
2993
3152
  msgstr ""
2994
3153
 
@@ -3001,6 +3160,9 @@ msgstr "Si cette option est activée, utilisez l'exécution à distance par l'in
3001
3160
  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."
3002
3161
  msgstr ""
3003
3162
 
3163
+ 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/...'."
3164
+ msgstr ""
3165
+
3004
3166
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3005
3167
  msgstr "Si c’est le cas, ne renvoyez que les ensembles de référentiels associés à un abonnement actif"
3006
3168
 
@@ -3034,6 +3196,9 @@ msgstr "Ignorer les erreurs du gestionnaire d'abonnements pour la commande `subs
3034
3196
  msgid "Ignore subscriptions that are unavailable to the specified host"
3035
3197
  msgstr "Ignorer les abonnements qui ne sont pas disponibles pour un hôte spécifique"
3036
3198
 
3199
+ msgid "Ignored hosts"
3200
+ msgstr ""
3201
+
3037
3202
  msgid "Immediate"
3038
3203
  msgstr "Immédiat"
3039
3204
 
@@ -3178,9 +3343,6 @@ msgstr "Indexer les flux de module"
3178
3343
  msgid "Index package groups"
3179
3344
  msgstr "Indexer les groupes de packages"
3180
3345
 
3181
- msgid "Indicate the source type."
3182
- msgstr ""
3183
-
3184
3346
  msgid "Informable Type must be one of the following [ %{list} ]"
3185
3347
  msgstr "Le type Informable doit être l'un parmi [%{list} ]"
3186
3348
 
@@ -3250,12 +3412,15 @@ msgstr ""
3250
3412
  msgid "Installable"
3251
3413
  msgstr "Installable"
3252
3414
 
3253
- msgid "Installable errata"
3415
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3254
3416
  msgstr ""
3255
3417
 
3256
3418
  msgid "Installable errata from content view"
3257
3419
  msgstr ""
3258
3420
 
3421
+ msgid "Installable updates"
3422
+ msgstr ""
3423
+
3259
3424
  msgid "Installation of errata requested: %{errata}"
3260
3425
  msgstr "Installation d'errata demandée : %{errata}"
3261
3426
 
@@ -3316,9 +3481,6 @@ msgstr "Intervalle mal défini"
3316
3481
  msgid "Invalid"
3317
3482
  msgstr "Invalide"
3318
3483
 
3319
- msgid "Invalid SSL CA certificate given for CDN"
3320
- msgstr "Certificat CA SSL donné pour CDN non valide"
3321
-
3322
3484
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3323
3485
  msgstr "Association non valable de l'identifiant de la vue du contenu. La vue du contenu doit correspondre à la version de la vue du contenu enregistrée"
3324
3486
 
@@ -3367,6 +3529,12 @@ msgstr "Params non valides fournis - content_type doit être un parmi %s"
3367
3529
  msgid "Invalid params provided - date_type must be one of %s"
3368
3530
  msgstr "Params non valides fournis - date_type doit être un parmi %s"
3369
3531
 
3532
+ msgid "Invalid params provided - with_content must be one of %s"
3533
+ msgstr ""
3534
+
3535
+ msgid "Invalid path provided. Content can be only imported from file system. "
3536
+ msgstr ""
3537
+
3370
3538
  msgid "Invalid release version: [%s]"
3371
3539
  msgstr ""
3372
3540
 
@@ -3388,6 +3556,9 @@ msgstr "Publié sur"
3388
3556
  msgid "Issued from"
3389
3557
  msgstr ""
3390
3558
 
3559
+ msgid "Items will appear here when a filter rule is added."
3560
+ msgstr ""
3561
+
3391
3562
  msgid "Job '${description}' completed"
3392
3563
  msgstr ""
3393
3564
 
@@ -3463,15 +3634,18 @@ msgstr "Étiquette du contenu"
3463
3634
  msgid "Label of the content view"
3464
3635
  msgstr ""
3465
3636
 
3466
- msgid "Last Refresh"
3637
+ msgid "Last check-in:"
3467
3638
  msgstr ""
3468
3639
 
3469
- msgid "Last check-in:"
3640
+ msgid "Last checkin"
3470
3641
  msgstr ""
3471
3642
 
3472
3643
  msgid "Last published"
3473
3644
  msgstr "Dernière publication"
3474
3645
 
3646
+ msgid "Last refresh"
3647
+ msgstr ""
3648
+
3475
3649
  msgid "Last refresh :"
3476
3650
  msgstr ""
3477
3651
 
@@ -3490,6 +3664,9 @@ msgstr "Dernière version"
3490
3664
  msgid "Learn more about adding Subscription Manifests"
3491
3665
  msgstr "En savoir plus sur l'ajout de manifestes de souscription"
3492
3666
 
3667
+ msgid "Legacy content host UI"
3668
+ msgstr ""
3669
+
3493
3670
  msgid "Less than"
3494
3671
  msgstr "Moins de"
3495
3672
 
@@ -3556,6 +3733,9 @@ msgstr "Limiter le contenu à celui qui est disponible dans la version de visual
3556
3733
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3557
3734
  msgstr "Limite le contenu à celui qui est disponible dans la version d'affichage du contenu de la clé d'activation ou dans l’hôte."
3558
3735
 
3736
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3737
+ msgstr ""
3738
+
3559
3739
  msgid "Limit to environment"
3560
3740
  msgstr "Limiter à l'environnement"
3561
3741
 
@@ -3586,6 +3766,9 @@ msgstr "Tout afficher : resource_id"
3586
3766
  msgid "List all organizations"
3587
3767
  msgstr "Répertorier toutes les organisations"
3588
3768
 
3769
+ msgid "List alternate content sources."
3770
+ msgstr ""
3771
+
3589
3772
  msgid "List an activation key's subscriptions"
3590
3773
  msgstr "Répertorier les abonnements d'une clé d'activation"
3591
3774
 
@@ -3658,9 +3841,6 @@ msgstr "Liste de produits pour un plan de sync"
3658
3841
  msgid "List of alternate content source IDs"
3659
3842
  msgstr ""
3660
3843
 
3661
- msgid "List of alternate_content_sources"
3662
- msgstr ""
3663
-
3664
3844
  msgid "List of component content view version ids for composite views"
3665
3845
  msgstr "Liste d'ids de version d'affichage de contenu de composant pour les affichages composites."
3666
3846
 
@@ -3751,6 +3931,9 @@ msgstr "Liste des référentiels d’une organisation"
3751
3931
  msgid "List of repository ids"
3752
3932
  msgstr "Liste d'ids de référentiel "
3753
3933
 
3934
+ msgid "List of resources types that will be automatically associated"
3935
+ msgstr ""
3936
+
3754
3937
  msgid "List of subscription products in a subscription"
3755
3938
  msgstr "Liste de produits d'abonnement dans un abonnement"
3756
3939
 
@@ -3955,6 +4138,9 @@ msgstr ""
3955
4138
  msgid "Multi-entitlement"
3956
4139
  msgstr "Droits d’accès multiples"
3957
4140
 
4141
+ msgid "Multiple environments are not supported."
4142
+ msgstr ""
4143
+
3958
4144
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3959
4145
  msgstr "Doit fournir au moins un des paramètres suivants : mandatory_package_names, optional_package_names, conditional_package_names, default_package_names"
3960
4146
 
@@ -3967,6 +4153,9 @@ msgstr "N/A"
3967
4153
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3968
4154
  msgstr "NOTE : Katello-agent est déprécié et sera supprimé dans %s. Pensez à utiliser l'exécution à distance à la place."
3969
4155
 
4156
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4157
+ msgstr ""
4158
+
3970
4159
  msgid ""
3971
4160
  "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"
3972
4161
  " %{repos}"
@@ -3974,6 +4163,11 @@ msgstr ""
3974
4163
  "REMARQUE : Impossible d'exporter complètement la bibliothèque de l'organisation '%{organization}' car elle contient des référentiels sans la politique de téléchargement \"immédiate\". Mettez à jour la politique de téléchargement et synchronisez les référentiels concernés pour les inclure dans l'exportation\n"
3975
4164
  " %{repos}"
3976
4165
 
4166
+ msgid ""
4167
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4168
+ " %{repos}"
4169
+ msgstr ""
4170
+
3977
4171
  msgid ""
3978
4172
  "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"
3979
4173
  " %{repos}"
@@ -3987,6 +4181,12 @@ msgstr ""
3987
4181
  msgid "Name"
3988
4182
  msgstr "Nom"
3989
4183
 
4184
+ msgid "Name and label of default content view should not be changed"
4185
+ msgstr ""
4186
+
4187
+ msgid "Name is a required parameter."
4188
+ msgstr ""
4189
+
3990
4190
  msgid "Name of new activation key"
3991
4191
  msgstr "Nom de la nouvelle clé d'activation"
3992
4192
 
@@ -4032,6 +4232,12 @@ msgstr ""
4032
4232
  msgid "Never Synced"
4033
4233
  msgstr "Jamais synchronisé"
4034
4234
 
4235
+ msgid "Never checked in"
4236
+ msgstr ""
4237
+
4238
+ msgid "Never registered"
4239
+ msgstr ""
4240
+
4035
4241
  msgid "New Errata"
4036
4242
  msgstr "Nouveaux errata"
4037
4243
 
@@ -4125,6 +4331,9 @@ msgstr "Aucun contenu n'a été fourni"
4125
4331
  msgid "No content ids provided"
4126
4332
  msgstr "Aucuns ids de contenu ne sont fournis"
4127
4333
 
4334
+ msgid "No content in selected versions."
4335
+ msgstr ""
4336
+
4128
4337
  msgid "No content view history events found."
4129
4338
  msgstr "Aucun historique d'affichage de contenu n'a été trouvé."
4130
4339
 
@@ -4176,6 +4385,9 @@ msgstr ""
4176
4385
  msgid "No host collections found."
4177
4386
  msgstr "Aucune collection d'hôtes trouvée"
4178
4387
 
4388
+ msgid "No host collections yet"
4389
+ msgstr ""
4390
+
4179
4391
  msgid "No hosts have been specified."
4180
4392
  msgstr "Aucun hôte n'a été spécifié."
4181
4393
 
@@ -4200,6 +4412,9 @@ msgstr "Aucun manifeste trouvé. Importez un manifeste avec les abonnements appr
4200
4412
  msgid "No matching "
4201
4413
  msgstr "Aucun résultat"
4202
4414
 
4415
+ msgid "No matching ${name} found."
4416
+ msgstr ""
4417
+
4203
4418
  msgid "No matching ${selectedContentType} found"
4204
4419
  msgstr "Aucun résultat ${selectedContentType} correspondant."
4205
4420
 
@@ -4290,6 +4505,9 @@ msgstr "Aucun processus ne doit être relancé"
4290
4505
  msgid "No products are enabled."
4291
4506
  msgstr "Aucun produit n'est activé."
4292
4507
 
4508
+ msgid "No profiles to show"
4509
+ msgstr ""
4510
+
4293
4511
  msgid "No pulp workers running."
4294
4512
  msgstr "Aucun worker Pulp en cours d'exécution."
4295
4513
 
@@ -4425,6 +4643,9 @@ msgstr "Objets qui montre les abonnements disponibles for, soit 'hôte' ou 'acti
4425
4643
  msgid "On Demand"
4426
4644
  msgstr "Sur demande"
4427
4645
 
4646
+ msgid "On the RHUA Instance, check the available repositories."
4647
+ msgstr ""
4648
+
4428
4649
  msgid "On-disk location for exported repositories"
4429
4650
  msgstr "Emplacement-disque des référentiels exportés"
4430
4651
 
@@ -4803,6 +5024,9 @@ msgstr "Veuillez en choisir un dans la liste ci-dessous et vous serez redirigé.
4803
5024
  msgid "Please wait while the task starts.."
4804
5025
  msgstr "Veuillez patienter pour le démarrage des tâches ...."
4805
5026
 
5027
+ msgid "Please wait..."
5028
+ msgstr ""
5029
+
4806
5030
  msgid "Policy to set for mirroring content. Must be one of %s."
4807
5031
  msgstr "Politique à définir pour le contenu de mise en miroir . Doit être un parmi %s."
4808
5032
 
@@ -4894,9 +5118,18 @@ msgstr "Produit avec ID %s non trouvé dans Candlepin. Sauter l'importation de c
4894
5118
  msgid "Product: '%{product}', Repository: '%{repository}'"
4895
5119
  msgstr "Produit: '%{product}', Repo: '%{repository}'"
4896
5120
 
5121
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5122
+ msgstr ""
5123
+
4897
5124
  msgid "Products"
4898
5125
  msgstr "Produits"
4899
5126
 
5127
+ msgid "Products updated."
5128
+ msgstr ""
5129
+
5130
+ msgid "Profiles"
5131
+ msgstr ""
5132
+
4900
5133
  msgid "Promote"
4901
5134
  msgstr "Promouvoir"
4902
5135
 
@@ -5074,6 +5307,9 @@ msgstr "RAM: %s GB"
5074
5307
  msgid "RH Repos"
5075
5308
  msgstr "RH Repos"
5076
5309
 
5310
+ msgid "RHUI"
5311
+ msgstr ""
5312
+
5077
5313
  msgid "RPM"
5078
5314
  msgstr "RPM"
5079
5315
 
@@ -5086,6 +5322,12 @@ msgstr "RPM Packages"
5086
5322
  msgid "RPM name"
5087
5323
  msgstr "Nom du RPM"
5088
5324
 
5325
+ msgid "RPM package groups"
5326
+ msgstr ""
5327
+
5328
+ msgid "RPM package updates"
5329
+ msgstr ""
5330
+
5089
5331
  msgid "RPM packages"
5090
5332
  msgstr ""
5091
5333
 
@@ -5152,6 +5394,9 @@ msgstr ""
5152
5394
  msgid "Red Hat content will be consumed from the {type}."
5153
5395
  msgstr ""
5154
5396
 
5397
+ msgid "Red Hat content will be consumed from {type}."
5398
+ msgstr ""
5399
+
5155
5400
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5156
5401
  msgstr ""
5157
5402
 
@@ -5179,7 +5424,7 @@ msgstr "Actualiser le fichier manifeste"
5179
5424
  msgid "Refresh alternate content sources"
5180
5425
  msgstr ""
5181
5426
 
5182
- msgid "Refresh an alternate content source"
5427
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5183
5428
  msgstr ""
5184
5429
 
5185
5430
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5197,6 +5442,9 @@ msgstr "Inscrire un hôte avec abonnement et informations"
5197
5442
  msgid "Register host '%s' before attaching subscriptions"
5198
5443
  msgstr "Enregistrer les hôtes '%s' avant de joindre les abonnements"
5199
5444
 
5445
+ msgid "Registered"
5446
+ msgstr ""
5447
+
5200
5448
  msgid "Registered by"
5201
5449
  msgstr ""
5202
5450
 
@@ -5323,8 +5571,8 @@ msgstr ""
5323
5571
  msgid "Remove one or more host collections from one or more hosts"
5324
5572
  msgstr "Supprimer une ou plusieurs collections d'hôtes d'un ou plusieurs hôtes"
5325
5573
 
5326
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5327
- msgstr "Supprimer une ou plusieurs souscriptions d'une allocation de souscription en amont"
5574
+ msgid "Remove one or more subscriptions from an upstream manifest"
5575
+ msgstr ""
5328
5576
 
5329
5577
  msgid "Remove package"
5330
5578
  msgstr "Supprimer le package"
@@ -5374,6 +5622,9 @@ msgstr "Suppression du groupe de packages..."
5374
5622
  msgid "Removing Package..."
5375
5623
  msgstr "Suppression du package..."
5376
5624
 
5625
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5626
+ msgstr ""
5627
+
5377
5628
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5378
5629
  msgstr "Supprimer cette version de tous les environnement n’aura pas pour effet de supprimer la version. La version sera toujours disponible pour une promotion ultérieure."
5379
5630
 
@@ -5614,9 +5865,6 @@ msgstr "Renvoie les types de contenu activés"
5614
5865
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5615
5866
  msgstr "Renvoie le contenu qui peut être ajouté et qui est actuellement ajouté à l'objet. La valeur 'content_view_filter' est prise en charge"
5616
5867
 
5617
- msgid "Review Details"
5618
- msgstr ""
5619
-
5620
5868
  msgid "Review affected environment"
5621
5869
  msgstr ""
5622
5870
 
@@ -5626,6 +5874,9 @@ msgstr ""
5626
5874
  msgid "Review details"
5627
5875
  msgstr "Détails de la revue"
5628
5876
 
5877
+ msgid "Review the information below and click "
5878
+ msgstr ""
5879
+
5629
5880
  msgid "Review your currently selected changes for "
5630
5881
  msgstr "Revoir vos changements actuellement sélectionnés pour"
5631
5882
 
@@ -5665,9 +5916,6 @@ msgstr "Identifiants de contenu CA SSL"
5665
5916
  msgid "SSL CA certificate"
5666
5917
  msgstr ""
5667
5918
 
5668
- msgid "SSL Cert"
5669
- msgstr ""
5670
-
5671
5919
  msgid "SSL client certificate"
5672
5920
  msgstr ""
5673
5921
 
@@ -5797,6 +6045,9 @@ msgstr ""
5797
6045
  msgid "Select an environment above"
5798
6046
  msgstr ""
5799
6047
 
6048
+ msgid "Select an option"
6049
+ msgstr ""
6050
+
5800
6051
  msgid "Select an organization"
5801
6052
  msgstr "Sélectionner une organisation"
5802
6053
 
@@ -5836,6 +6087,12 @@ msgstr ""
5836
6087
  msgid "Select page"
5837
6088
  msgstr "Sélectionner page"
5838
6089
 
6090
+ msgid "Select products"
6091
+ msgstr ""
6092
+
6093
+ msgid "Select products to associate to this source."
6094
+ msgstr ""
6095
+
5839
6096
  msgid "Select row"
5840
6097
  msgstr "Sélectionner une ligne"
5841
6098
 
@@ -5953,7 +6210,7 @@ msgstr "Tout afficher"
5953
6210
  msgid "Show an activation key"
5954
6211
  msgstr "Afficher une clé d'activation"
5955
6212
 
5956
- msgid "Show an alternate content source"
6213
+ msgid "Show an alternate content source."
5957
6214
  msgstr ""
5958
6215
 
5959
6216
  msgid "Show an environment"
@@ -6004,6 +6261,9 @@ msgstr "L'accès au contenu simple a été désactivé pour '%{subject}'."
6004
6261
  msgid "Simple Content Access has been enabled for '%{subject}'."
6005
6262
  msgstr "L'accès au contenu simple a été activé pour '%{subject}'."
6006
6263
 
6264
+ msgid "Simplified"
6265
+ msgstr ""
6266
+
6007
6267
  msgid "Single content view consisting of e.g. repositories"
6008
6268
  msgstr "Vue de contenu unique composée de référentiels par ex."
6009
6269
 
@@ -6040,7 +6300,7 @@ msgstr "Résoudre les dépendances RPM par défaut sur Content View publish, les
6040
6300
  msgid "Solve dependencies"
6041
6301
  msgstr "Résoudre les dépendances"
6042
6302
 
6043
- msgid "Some hosts are ignored!"
6303
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6044
6304
  msgstr ""
6045
6305
 
6046
6306
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6064,15 +6324,15 @@ msgstr "Un problème est survenu lors de l'ajout des règles de filtres! ${getRe
6064
6324
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6065
6325
  msgstr "Quelque chose s'est mal passé lors de la création du filtre !${getResponseErrorMsgs (error.response)}"
6066
6326
 
6327
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6328
+ msgstr ""
6329
+
6067
6330
  msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6068
6331
  msgstr "Un problème est survenu lors de la suppression des règles de filtres ! ${getResponseErrorMsgs(error.response)}"
6069
6332
 
6070
6333
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6071
6334
  msgstr "Un problème est survenu lors de la suppression des filtres ! ${getResponseErrorMsgs(error.response)}"
6072
6335
 
6073
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6074
- msgstr ""
6075
-
6076
6336
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
6077
6337
  msgstr "Quelque chose s'est mal passé lors de la suppression de ce filtre ! ${getResponseErrorMsgs(error.response)}"
6078
6338
 
@@ -6118,10 +6378,13 @@ msgstr ""
6118
6378
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6119
6379
  msgstr "Un problème est survenu lors de l’affichage des détails de la version ! ${getResponseErrorMsgs(error.response)}"
6120
6380
 
6381
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6382
+ msgstr ""
6383
+
6121
6384
  msgid "Something went wrong while loading the content views. See the logs for more information"
6122
6385
  msgstr ""
6123
6386
 
6124
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6387
+ msgid "Something went wrong while refreshing alternate content sources: "
6125
6388
  msgstr ""
6126
6389
 
6127
6390
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6136,6 +6399,9 @@ msgstr "Un problème est survenu lors de la récupération des groupes de réfé
6136
6399
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6137
6400
  msgstr "Un problème est survenu lors de la récupération des clés d’activation ! ${getResponseErrorMsgs(error.response)}"
6138
6401
 
6402
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6403
+ msgstr ""
6404
+
6139
6405
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6140
6406
  msgstr "Un problème est survenu lors de la récupération des composants de la vue du contenu ! ${getResponseErrorMsgs(error.response)}"
6141
6407
 
@@ -6154,9 +6420,33 @@ msgstr "Un problème est survenu lors de la récupération de l'historique de la
6154
6420
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6155
6421
  msgstr "Un problème est survenu lors de la récupération des versions de la vue du contenu ! ${getResponseErrorMsgs(error.response)}"
6156
6422
 
6423
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6424
+ msgstr ""
6425
+
6426
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6427
+ msgstr ""
6428
+
6429
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6430
+ msgstr ""
6431
+
6432
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6433
+ msgstr ""
6434
+
6157
6435
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6158
6436
  msgstr "Un problème est survenu lors de la récupération des hôtes ! ${getResponseErrorMsgs(error.response)}"
6159
6437
 
6438
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6439
+ msgstr ""
6440
+
6441
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6442
+ msgstr ""
6443
+
6444
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6445
+ msgstr ""
6446
+
6447
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6448
+ msgstr ""
6449
+
6160
6450
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6161
6451
  msgstr "Un problème est survenu lors de la récupération des types de référentiel ! ${getResponseErrorMsgs(error.response)}"
6162
6452
 
@@ -6241,9 +6531,6 @@ msgstr ""
6241
6531
  msgid "Subscription"
6242
6532
  msgstr "Abonnement"
6243
6533
 
6244
- msgid "Subscription Allocation"
6245
- msgstr "Attribution des abonnements"
6246
-
6247
6534
  msgid "Subscription Details"
6248
6535
  msgstr "Détails de l’abonnement"
6249
6536
 
@@ -6301,6 +6588,9 @@ msgstr "Fichier manifeste d'abonnement"
6301
6588
  msgid "Subscription not found"
6302
6589
  msgstr "Abonnement non trouvé"
6303
6590
 
6591
+ msgid "Subscription status"
6592
+ msgstr ""
6593
+
6304
6594
  msgid "Subscription was not persisted - %{error_message}"
6305
6595
  msgstr "L'abonnement n'a pas été maintenu - %{error_message}"
6306
6596
 
@@ -6346,6 +6636,9 @@ msgstr "%s Hôte(s) supprimés."
6346
6636
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6347
6637
  msgstr "%{count}hôte(s) de contenu a/ont été supprimé(s) de la collection d'hôtes %{host_collection}."
6348
6638
 
6639
+ msgid "Successfully synced capsule."
6640
+ msgstr ""
6641
+
6349
6642
  msgid "Successfully synchronized."
6350
6643
  msgstr "Synchronisation réussie."
6351
6644
 
@@ -6427,6 +6720,9 @@ msgstr "Sync un ou plusieurs produits"
6427
6720
  msgid "Sync plan identifier to attach"
6428
6721
  msgstr "Sync les identifiants de plan à attacher"
6429
6722
 
6723
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6724
+ msgstr ""
6725
+
6430
6726
  msgid "Sync state"
6431
6727
  msgstr "État de synchronisation"
6432
6728
 
@@ -6517,9 +6813,6 @@ msgstr "L'environnement '%s' ne doit pas contenir de changeset !"
6517
6813
  msgid "The Alternate Content Source type"
6518
6814
  msgstr ""
6519
6815
 
6520
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6521
- msgstr "L'allocation d’abonnements à condition que le manifeste importé ait été supprimé. Veuillez créer une nouvelle allocation d’abonnements et importer le nouveau manifeste."
6522
-
6523
6816
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6524
6817
  msgstr "L'URL à partir de laquelle recevoir un jeton de session, par exemple utilisé avec Automation Hub."
6525
6818
 
@@ -6571,9 +6864,6 @@ msgstr "La version exportée de la vue du contenu '%{content_view} %{current}' n
6571
6864
  msgid "The field to sort the data by. Defaults to the created date."
6572
6865
  msgstr "Le champ permettant de trier les données. Par défaut, la date de création."
6573
6866
 
6574
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6575
- msgstr ""
6576
-
6577
6867
  msgid "The following hosts have errata that apply to them: "
6578
6868
  msgstr "Les hôtes suivants contiennent des errata à appliquer :"
6579
6869
 
@@ -6602,6 +6892,9 @@ msgstr ""
6602
6892
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6603
6893
  msgstr "La liste des environnements vers lesquels promouvoir la version d'affichage de contenu spécifiée (en remplacement de l'ancienne version)."
6604
6894
 
6895
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6896
+ msgstr ""
6897
+
6605
6898
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6606
6899
  msgstr "Le manifeste importé au sein de l’ Organisation %{subject} n'est plus valable. Veuillez importer un nouveau manifeste."
6607
6900
 
@@ -6648,6 +6941,9 @@ msgstr "Le chemin %{real_path} ne semble pas être un référentiel valide. Si v
6648
6941
  msgid "The port used by Pulp Crane to provide Docker Registries"
6649
6942
  msgstr "Le port utilisé par Pulp Crane pour fournir des registres de dockers"
6650
6943
 
6944
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6945
+ msgstr ""
6946
+
6651
6947
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6652
6948
  msgstr "La promotion du %{content_view} à %{environment} a terminé. %{count} errata sont à la disposition de vos hôtes."
6653
6949
 
@@ -6693,14 +6989,20 @@ msgstr "La synchronisation de \"%s\" est terminée. Veuillez voir ci-dessous un
6693
6989
  msgid "The token key to use for authentication."
6694
6990
  msgstr "La clé de jeton à utiliser pour l'authentification."
6695
6991
 
6992
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6993
+ msgstr ""
6994
+
6995
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6996
+ msgstr ""
6997
+
6696
6998
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6697
6999
  msgstr "Le type de contenu. Les types suivants sont pris en charge : « package » (package) et « groupe de packages » (package_group)."
6698
7000
 
6699
7001
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6700
7002
  msgstr "Le type de contenu. Les types suivants sont pris en charge : « package » (package), « groupe de packages » (package_group) et « errata »."
6701
7003
 
6702
- msgid "There are no Subscription Allocations to display"
6703
- msgstr "Il n'y a pas d'Allocations d'Abonnement à afficher"
7004
+ msgid "There are no Manifests to display"
7005
+ msgstr ""
6704
7006
 
6705
7007
  msgid "There are no Subscriptions to display"
6706
7008
  msgstr "Il n'y a pas d'Abonnements à afficher"
@@ -6771,6 +7073,9 @@ msgstr "Cette action doit être prise uniquement dans des circonstances extrême
6771
7073
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6772
7074
  msgstr "Cette action utilise katello-agent, actuellement désactivé. Utilisez l'exécution à distance à la place."
6773
7075
 
7076
+ 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."
7077
+ msgstr ""
7078
+
6774
7079
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6775
7080
  msgstr "Ce certificat permet à l'utilisateur d'afficher les référentiels dans n'importe quel environnement à partir d'un navigateur."
6776
7081
 
@@ -6810,8 +7115,8 @@ msgstr "Cette fonction est désactivée parce qu'une tâche connexe manifeste es
6810
7115
  msgid "This is disabled because a manifest task is in progress"
6811
7116
  msgstr "Cette fonction est désactivée parce qu'une tâche manifeste est en cours"
6812
7117
 
6813
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6814
- msgstr "Cette fonction est désactivée car aucune connexion n'a pu être établie avec l'allocation d'abonnement en amont."
7118
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7119
+ msgstr ""
6815
7120
 
6816
7121
  msgid "This is disabled because no manifest exists"
6817
7122
  msgstr "Il est désactivé parce qu'il n'existe pas de manifeste"
@@ -6879,6 +7184,9 @@ msgstr "Horodatage"
6879
7184
  msgid "Title"
6880
7185
  msgstr "Titre"
6881
7186
 
7187
+ msgid "To get started, add this host to a host collection."
7188
+ msgstr ""
7189
+
6882
7190
  msgid "Toggling Simple Content Access will refresh your manifest."
6883
7191
  msgstr "En basculant l'accès au contenu simple, votre manifeste sera actualisé."
6884
7192
 
@@ -6921,6 +7229,9 @@ msgstr "Traces nécessitant une déconnexion ne peut pas être redémarré à di
6921
7229
  msgid "Traces will be shown here to a user with the appropriate permissions."
6922
7230
  msgstr ""
6923
7231
 
7232
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7233
+ msgstr ""
7234
+
6924
7235
  msgid "Trigger an auto-attach of subscriptions"
6925
7236
  msgstr "Déclenche Abonnements auto-attach"
6926
7237
 
@@ -6951,12 +7262,18 @@ msgstr "Type de contenu"
6951
7262
  msgid "Type of content: \"cert\", \"gpg_key\""
6952
7263
  msgstr "Type de contenu : \"cert\", \"gpg_key\""
6953
7264
 
7265
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7266
+ msgstr ""
7267
+
6954
7268
  msgid "URL"
6955
7269
  msgstr "URL"
6956
7270
 
6957
7271
  msgid "URL and paths"
6958
7272
  msgstr ""
6959
7273
 
7274
+ msgid "URL and subpaths"
7275
+ msgstr ""
7276
+
6960
7277
  msgid "URL needs to have a trailing /"
6961
7278
  msgstr "L'URL doit comporter un / à la fin"
6962
7279
 
@@ -7158,7 +7475,7 @@ msgstr "Mettre à jour un plan de synchronisation"
7158
7475
  msgid "Update an activation key"
7159
7476
  msgstr "Mettre à jour une clé d'activation"
7160
7477
 
7161
- msgid "Update an alternate content source"
7478
+ msgid "Update an alternate content source."
7162
7479
  msgstr ""
7163
7480
 
7164
7481
  msgid "Update an environment"
@@ -7365,6 +7682,12 @@ msgstr "Utilisation de l'hôte"
7365
7682
  msgid "Usage type"
7366
7683
  msgstr ""
7367
7684
 
7685
+ msgid "Use HTTP Proxies"
7686
+ msgstr ""
7687
+
7688
+ msgid "Use HTTP proxies"
7689
+ msgstr ""
7690
+
7368
7691
  msgid "Use remote execution by default"
7369
7692
  msgstr "Utiliser l'exécution à distance par défaut"
7370
7693
 
@@ -7440,6 +7763,12 @@ msgstr "Version ${versionNameToRemove} sera supprimée de tous les environnement
7440
7763
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7441
7764
  msgstr "Version ${versionNameToRemove} sera supprimée des environnement listés. Ne seront plus disponibles pour la promotion."
7442
7765
 
7766
+ msgid "Version ${versionOne}"
7767
+ msgstr ""
7768
+
7769
+ msgid "Version ${versionTwo}"
7770
+ msgstr ""
7771
+
7443
7772
  msgid "Version details updated."
7444
7773
  msgstr "Détails de la version mis à jour."
7445
7774
 
@@ -7452,6 +7781,9 @@ msgstr "Versions"
7452
7781
  msgid "Versions "
7453
7782
  msgstr ""
7454
7783
 
7784
+ msgid "Versions to compare"
7785
+ msgstr ""
7786
+
7455
7787
  msgid "Versions to exclusively include in the action"
7456
7788
  msgstr ""
7457
7789
 
@@ -7467,6 +7799,9 @@ msgstr "L'affichage %{view} n’a pas été promu à %{env}"
7467
7799
  msgid "View a report of the affected hosts"
7468
7800
  msgstr "Voir un rapport sur les hôtes concernés"
7469
7801
 
7802
+ msgid "View by"
7803
+ msgstr ""
7804
+
7470
7805
  msgid "View matching content"
7471
7806
  msgstr "Afficher le contenu correspondant"
7472
7807
 
@@ -7530,6 +7865,9 @@ msgstr "Synchronisation ou non d'une capsule externe après le téléchargement.
7530
7865
  msgid "Whether to include available content attribute in results"
7531
7866
  msgstr "Définit si on doit inclure l'attribut de contenu disponible dans les résultats"
7532
7867
 
7868
+ msgid "Whether to turn on Simple Content Access for the organization."
7869
+ msgstr ""
7870
+
7533
7871
  msgid "Workers"
7534
7872
  msgstr "Workers"
7535
7873
 
@@ -7626,6 +7964,9 @@ msgstr "Votre requête de recherche n'était pas valide. Veuillez la réviser et
7626
7964
  msgid "Your search returned no matching "
7627
7965
  msgstr "Votre recherche n’a pas été féconde"
7628
7966
 
7967
+ msgid "Your search returned no matching ${name}."
7968
+ msgstr ""
7969
+
7629
7970
  msgid "Your search returned no matching DEBs."
7630
7971
  msgstr ""
7631
7972
 
@@ -7650,6 +7991,9 @@ msgstr "Yum Metadata : %s"
7650
7991
  msgid "a content unit"
7651
7992
  msgstr "une unité de contenu"
7652
7993
 
7994
+ msgid "a custom CDN URL"
7995
+ msgstr ""
7996
+
7653
7997
  msgid "a deb package"
7654
7998
  msgstr "Package Deb"
7655
7999
 
@@ -7821,9 +8165,6 @@ msgstr "les noms de packages conditionnels à inclure dans le groupe de packages
7821
8165
  msgid "content release version"
7822
8166
  msgstr "version du contenu de version"
7823
8167
 
7824
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7825
- msgstr "type de contenu ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7826
-
7827
8168
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7828
8169
  msgstr "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7829
8170
 
@@ -8097,9 +8438,6 @@ msgstr "étiquette de l'environnement"
8097
8438
  msgid "label of the repository"
8098
8439
  msgstr "libellé du référentiel"
8099
8440
 
8100
- msgid "limit to only repositories of this type"
8101
- msgstr "limité aux référentiels de ce type uniquement"
8102
-
8103
8441
  msgid "limit to only repositories with this download policy"
8104
8442
  msgstr "limiter aux dépôts ayant cette politique de téléchargement"
8105
8443
 
@@ -8217,9 +8555,6 @@ msgstr "obtenir l'historique du fichier manifeste pour les abonnements"
8217
8555
  msgid "of environment must be unique within one organization"
8218
8556
  msgstr "de l'environnement doit être unique dans l'organisation"
8219
8557
 
8220
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8221
- msgstr "uniquement les référentiels ayant au moins un des types de contenu spécifiés ex : rpm , erratum"
8222
-
8223
8558
  msgid "only show the repositories readable by this user with this username"
8224
8559
  msgstr "afficher uniquement les dépôts lisibles par cet utilisateur avec ce nom d'utilisateur"
8225
8560
 
@@ -8403,9 +8738,6 @@ msgstr "vrai si ce référentiel, lorsqu'il est synchronisé, doit être reflét
8403
8738
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8404
8739
  msgstr ""
8405
8740
 
8406
- msgid "type of repo"
8407
- msgstr "Type de référentiel"
8408
-
8409
8741
  msgid "types of filters"
8410
8742
  msgstr "types de filtres"
8411
8743