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/es/katello.po CHANGED
@@ -54,6 +54,12 @@ msgstr " Seleccione la última vista de contenido o la versión de vista de cont
54
54
  msgid " RPMs"
55
55
  msgstr ""
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 ""
59
65
 
@@ -84,12 +90,18 @@ msgstr ""
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 ""
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 ""
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 ""
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} no pudo ser promovida a %{environment_label} porque la vista de contenido y el entorno no están en la misma organización."
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 "(Huérfanos)"
337
367
 
@@ -551,10 +581,10 @@ msgstr "Añadir las suscripciones consumidas por un manifiesto de la Administrac
551
581
  msgid "Add subscriptions to one or more hosts"
552
582
  msgstr "Añadir suscripciones a uno o más hosts"
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."
587
+ msgid "Add to this filter using the 'Add Deb rule' button."
558
588
  msgstr ""
559
589
 
560
590
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -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 ""
619
652
 
@@ -641,6 +674,9 @@ msgstr ""
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 ""
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 "Cantidad de trabajadores en el grupo para manejar la ejecución de las tareas relacionadas con el host. Cuando se establece en 0, se usará la cola por defecto en su lugar. Se requiere el reinicio del servicio de 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"
@@ -704,9 +743,15 @@ msgstr ""
704
743
  msgid "Applicability Batch Size"
705
744
  msgstr "Aplicabilidad de tamaño del lote"
706
745
 
746
+ msgid "Applicable"
747
+ msgstr ""
748
+
707
749
  msgid "Applicable Content Hosts"
708
750
  msgstr "Hosts de contenido aplicables"
709
751
 
752
+ msgid "Applicable errata apply to at least one package installed on the host."
753
+ msgstr ""
754
+
710
755
  msgid "Application"
711
756
  msgstr "Aplicación"
712
757
 
@@ -883,6 +928,9 @@ msgstr "Repositorios disponibles"
883
928
  msgid "Available Schema Versions"
884
929
  msgstr "Versiones de esquema disponibles"
885
930
 
931
+ msgid "Back"
932
+ msgstr ""
933
+
886
934
  msgid "Backend System Status"
887
935
  msgstr "Estado de sistema de segundo plano"
888
936
 
@@ -949,6 +997,12 @@ msgstr "Corrección de errores"
949
997
  msgid "Bugs"
950
998
  msgstr ""
951
999
 
1000
+ msgid "Bulk alternate content source delete has started."
1001
+ msgstr ""
1002
+
1003
+ msgid "Bulk alternate content source refresh has started."
1004
+ msgstr ""
1005
+
952
1006
  msgid "Bulk generate applicability for host %s"
953
1007
  msgstr ""
954
1008
 
@@ -958,9 +1012,6 @@ msgstr "Generar a gran escala la aplicabilidad para los hosts"
958
1012
  msgid "Bulk remove versions from a content view and reassign systems and keys"
959
1013
  msgstr ""
960
1014
 
961
- msgid "CA Cert"
962
- msgstr ""
963
-
964
1015
  msgid "CDN Configuration"
965
1016
  msgstr ""
966
1017
 
@@ -1066,6 +1117,9 @@ msgstr "No se pueden agregar versiones compuestas a una vista de contenido compu
1066
1117
  msgid "Cannot add default content view to composite content view"
1067
1118
  msgstr "No se puede añadir la vista de contenido predeterminada a una vista de contenido compuesta"
1068
1119
 
1120
+ msgid "Cannot add generated content view versions to composite content view"
1121
+ msgstr ""
1122
+
1069
1123
  msgid "Cannot add repositories to a composite content view"
1070
1124
  msgstr "No se pueden añadir repositorios a una vista de contenido compuesta"
1071
1125
 
@@ -1207,6 +1261,9 @@ msgstr "Comprobar los servicios antes de las acciones"
1207
1261
  msgid "Checksum"
1208
1262
  msgstr "Suma de comprobación"
1209
1263
 
1264
+ msgid "Checksum is a required parameter."
1265
+ msgstr ""
1266
+
1210
1267
  msgid "Checksum of file to upload"
1211
1268
  msgstr "Suma de comprobación del archivo a cargar"
1212
1269
 
@@ -1216,6 +1273,9 @@ msgstr "La suma de comprobación del repositorio, actualmente se admite 'sha1' y
1216
1273
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1217
1274
  msgstr "No se puede establecer el tipo de suma de comprobación para los repositorios yum con la política de descarga bajo demanda."
1218
1275
 
1276
+ msgid "Choose content credentials if required for this RHUI source."
1277
+ msgstr ""
1278
+
1219
1279
  msgid "Clear any previous registration and run subscription-manager with --force."
1220
1280
  msgstr ""
1221
1281
 
@@ -1231,9 +1291,6 @@ msgstr "Haga clic aquí para ir a la página de tareas para la tarea."
1231
1291
  msgid "Click {update} below to save changes."
1232
1292
  msgstr ""
1233
1293
 
1234
- msgid "Client key"
1235
- msgstr ""
1236
-
1237
1294
  msgid "Clone"
1238
1295
  msgstr "Clonar"
1239
1296
 
@@ -1249,6 +1306,9 @@ msgstr "Actualización de perfil combinado"
1249
1306
  msgid "Combined Profile Update for %s"
1250
1307
  msgstr "Actualización de perfil combinado para %s"
1251
1308
 
1309
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1310
+ msgstr ""
1311
+
1252
1312
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1253
1313
  msgstr ""
1254
1314
 
@@ -1258,12 +1318,18 @@ msgstr ""
1258
1318
  msgid "Comma-separated list of tags to sync for a container image repository"
1259
1319
  msgstr ""
1260
1320
 
1321
+ msgid "Compare"
1322
+ msgstr ""
1323
+
1261
1324
  msgid "Component"
1262
1325
  msgstr "Componente"
1263
1326
 
1264
1327
  msgid "Component Content View"
1265
1328
  msgstr ""
1266
1329
 
1330
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1331
+ msgstr ""
1332
+
1267
1333
  msgid "Components"
1268
1334
  msgstr "Componentes"
1269
1335
 
@@ -1414,6 +1480,9 @@ msgstr "Versión de vista de contenido no establecida"
1414
1480
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1415
1481
  msgstr ""
1416
1482
 
1483
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1484
+ msgstr ""
1485
+
1417
1486
  msgid "Content View and Environment not set for registration."
1418
1487
  msgstr "La vista de contenido y el entorno no están configurados para el registro."
1419
1488
 
@@ -1426,6 +1495,9 @@ msgstr ""
1426
1495
  msgid "Content Views"
1427
1496
  msgstr "Vistas de contenido"
1428
1497
 
1498
+ msgid "Content cannot be imported into a Composite Content View. "
1499
+ msgstr ""
1500
+
1429
1501
  msgid "Content credential"
1430
1502
  msgstr ""
1431
1503
 
@@ -1450,6 +1522,9 @@ msgstr ""
1450
1522
  msgid "Content override search parameters"
1451
1523
  msgstr ""
1452
1524
 
1525
+ msgid "Content source"
1526
+ msgstr ""
1527
+
1453
1528
  msgid "Content source ID"
1454
1529
  msgstr "ID de fuente de contenido"
1455
1530
 
@@ -1516,6 +1591,9 @@ msgstr ""
1516
1591
  msgid "Content views"
1517
1592
  msgstr ""
1518
1593
 
1594
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1595
+ msgstr ""
1596
+
1519
1597
  msgid "Content_Host_Status"
1520
1598
  msgstr "Content_Host_Status"
1521
1599
 
@@ -1657,6 +1735,9 @@ msgstr "No se encontró el entorno anterior '%s'"
1657
1735
  msgid "Couldn't find product with id '%s'"
1658
1736
  msgstr "No se encontró el producto con ID '%s'"
1659
1737
 
1738
+ msgid "Couldn't find products with id '%s'"
1739
+ msgstr ""
1740
+
1660
1741
  msgid "Couldn't find repository '%s'"
1661
1742
  msgstr "No se encontró el repositorio '%s'"
1662
1743
 
@@ -1726,12 +1807,12 @@ msgstr "Crear un producto"
1726
1807
  msgid "Create a sync plan"
1727
1808
  msgstr "Crear un plan de sincronización"
1728
1809
 
1729
- msgid "Create an ACS"
1730
- msgstr ""
1731
-
1732
1810
  msgid "Create an activation key"
1733
1811
  msgstr "Crear una llave de activación"
1734
1812
 
1813
+ 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."
1814
+ msgstr ""
1815
+
1735
1816
  msgid "Create an environment"
1736
1817
  msgstr "Crear un entorno"
1737
1818
 
@@ -1741,6 +1822,9 @@ msgstr "Crear un entorno en una organización"
1741
1822
  msgid "Create an upload request"
1742
1823
  msgstr "Crear una solicitud de carga"
1743
1824
 
1825
+ msgid "Create content credentials with the generated SSL certificate and key."
1826
+ msgstr ""
1827
+
1744
1828
  msgid "Create content view"
1745
1829
  msgstr ""
1746
1830
 
@@ -1780,6 +1864,9 @@ msgstr "La organización actual no está establecida."
1780
1864
  msgid "Custom"
1781
1865
  msgstr ""
1782
1866
 
1867
+ msgid "Custom CDN"
1868
+ msgstr ""
1869
+
1783
1870
  msgid "Custom Content Repositories"
1784
1871
  msgstr "Personalizar repositorios de contenido"
1785
1872
 
@@ -1795,6 +1882,9 @@ msgstr ""
1795
1882
  msgid "DEB name"
1796
1883
  msgstr ""
1797
1884
 
1885
+ msgid "DEB package updates"
1886
+ msgstr ""
1887
+
1798
1888
  msgid "Database connection"
1799
1889
  msgstr "Conexión a la base de datos"
1800
1890
 
@@ -1930,6 +2020,12 @@ msgstr "Datos de usuario de SO sincronizados por defecto"
1930
2020
  msgid "Default user data for new Operating Systems created from synced content"
1931
2021
  msgstr "Datos de usuario por defecto para nuevos sistemas operativos creados a partir de contenido sincronizado"
1932
2022
 
2023
+ msgid "Define RHUI repository paths with guided steps."
2024
+ msgstr ""
2025
+
2026
+ msgid "Define repositories structured under a common web or filesystem path."
2027
+ msgstr ""
2028
+
1933
2029
  msgid "Delete"
1934
2030
  msgstr "Borrar"
1935
2031
 
@@ -2068,7 +2164,7 @@ msgstr "Destruir un plan de sincronización"
2068
2164
  msgid "Destroy an activation key"
2069
2165
  msgstr "Destruir una llave de activación"
2070
2166
 
2071
- msgid "Destroy an alternate content source"
2167
+ msgid "Destroy an alternate content source."
2072
2168
  msgstr ""
2073
2169
 
2074
2170
  msgid "Destroy an environment"
@@ -2131,6 +2227,9 @@ msgstr "Descubrir"
2131
2227
  msgid "Discover Repositories"
2132
2228
  msgstr "Detectar repositorios"
2133
2229
 
2230
+ msgid "Distribute archived content view versions"
2231
+ msgstr ""
2232
+
2134
2233
  msgid "Do not include this array of content views"
2135
2234
  msgstr "No incluir esta selección de vistas de contenido"
2136
2235
 
@@ -2164,21 +2263,51 @@ msgstr "AVISO DE ERRATAS"
2164
2263
  msgid "Edit"
2165
2264
  msgstr "Editar"
2166
2265
 
2266
+ msgid "Edit ACS"
2267
+ msgstr ""
2268
+
2269
+ msgid "Edit ACS credentials"
2270
+ msgstr ""
2271
+
2272
+ msgid "Edit ACS details"
2273
+ msgstr ""
2274
+
2275
+ msgid "Edit ACS products"
2276
+ msgstr ""
2277
+
2278
+ msgid "Edit ACS smart proxies"
2279
+ msgstr ""
2280
+
2167
2281
  msgid "Edit RPM rule"
2168
2282
  msgstr ""
2169
2283
 
2284
+ msgid "Edit URL and subpaths"
2285
+ msgstr ""
2286
+
2170
2287
  msgid "Edit content view assignment"
2171
2288
  msgstr ""
2172
2289
 
2290
+ msgid "Edit credentials"
2291
+ msgstr ""
2292
+
2293
+ msgid "Edit details"
2294
+ msgstr ""
2295
+
2173
2296
  msgid "Edit filter rule"
2174
2297
  msgstr ""
2175
2298
 
2176
2299
  msgid "Edit package filter rule"
2177
2300
  msgstr ""
2178
2301
 
2302
+ msgid "Edit products"
2303
+ msgstr ""
2304
+
2179
2305
  msgid "Edit rule"
2180
2306
  msgstr ""
2181
2307
 
2308
+ msgid "Edit smart proxies"
2309
+ msgstr ""
2310
+
2182
2311
  msgid "Edit system purpose attributes"
2183
2312
  msgstr ""
2184
2313
 
@@ -2203,6 +2332,9 @@ msgstr "Se debe establecer la vista de contenido con la última bandera o la ver
2203
2332
  msgid "Either set the latest content view or the content view version. Cannot set both"
2204
2333
  msgstr "Configura la última vista de contenido o la versión de la vista de contenido. No se pueden establecer ambas"
2205
2334
 
2335
+ msgid "Empty content view versions"
2336
+ msgstr ""
2337
+
2206
2338
  msgid "Enable"
2207
2339
  msgstr "Habilitar"
2208
2340
 
@@ -2221,6 +2353,9 @@ msgstr ""
2221
2353
  msgid "Enable a repository from the set"
2222
2354
  msgstr "Habilitar un repositorio del conjunto"
2223
2355
 
2356
+ msgid "Enable repository sets"
2357
+ msgstr ""
2358
+
2224
2359
  msgid "Enable simple content access for a manifest"
2225
2360
  msgstr "Habilitar el acceso a un contenido simple para un manifiesto"
2226
2361
 
@@ -2263,6 +2398,9 @@ msgstr ""
2263
2398
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2264
2399
  msgstr ""
2265
2400
 
2401
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2402
+ msgstr ""
2403
+
2266
2404
  msgid "Entitlements"
2267
2405
  msgstr "Derechos"
2268
2406
 
@@ -2519,6 +2657,9 @@ msgstr "Filtrar productos por suscripción"
2519
2657
  msgid "Filter products by sync plan id"
2520
2658
  msgstr "Filtrar productos por ID del plan de sincronización"
2521
2659
 
2660
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2661
+ msgstr ""
2662
+
2522
2663
  msgid "Filter rule added"
2523
2664
  msgstr ""
2524
2665
 
@@ -2555,6 +2696,9 @@ msgstr ""
2555
2696
  msgid "Filters will appear here when the filter is created."
2556
2697
  msgstr ""
2557
2698
 
2699
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2700
+ msgstr ""
2701
+
2558
2702
  msgid "Finish"
2559
2703
  msgstr ""
2560
2704
 
@@ -2616,6 +2760,9 @@ msgstr "Plenamente autorizado"
2616
2760
  msgid "GPG Key URL"
2617
2761
  msgstr "URL de llave GPG"
2618
2762
 
2763
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2764
+ msgstr ""
2765
+
2619
2766
  msgid "Generate and Download"
2620
2767
  msgstr "Generar y descargar"
2621
2768
 
@@ -2826,6 +2973,9 @@ msgstr "No se encontró un host con el ID %s."
2826
2973
  msgid "Hosts"
2827
2974
  msgstr "Hosts"
2828
2975
 
2976
+ msgid "Hosts to update"
2977
+ msgstr ""
2978
+
2829
2979
  msgid "Hosts with Installable Errata"
2830
2980
  msgstr "Hosta con erratas instalables"
2831
2981
 
@@ -2904,6 +3054,9 @@ msgstr "ID del plan de sincronización"
2904
3054
  msgid "ID: %s doesn't exist "
2905
3055
  msgstr "ID: %s no existe "
2906
3056
 
3057
+ 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."
3058
+ msgstr ""
3059
+
2907
3060
  msgid "Id of a deb package to find repositories that contain the deb"
2908
3061
  msgstr "ID de un paquete de deb para encontrar repositorios que contengan el deb"
2909
3062
 
@@ -2919,6 +3072,9 @@ msgstr "ID de una colección de ansible para encontrar repositorios que contenga
2919
3072
  msgid "Id of an erratum to find repositories that contain the erratum"
2920
3073
  msgstr "ID de una errata para encontrar repositorios que contengan la errata"
2921
3074
 
3075
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3076
+ msgstr ""
3077
+
2922
3078
  msgid "Id of the content host"
2923
3079
  msgstr "ID del host de contenido"
2924
3080
 
@@ -2991,6 +3147,9 @@ msgstr ""
2991
3147
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2992
3148
  msgstr "Si se especifica, elimine la primera instancia de una suscripción con mismo ID y cantidad"
2993
3149
 
3150
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3151
+ msgstr ""
3152
+
2994
3153
  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."
2995
3154
  msgstr ""
2996
3155
 
@@ -3003,6 +3162,9 @@ msgstr ""
3003
3162
  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."
3004
3163
  msgstr ""
3005
3164
 
3165
+ 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/...'."
3166
+ msgstr ""
3167
+
3006
3168
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3007
3169
  msgstr "Si es verdadero, solo devuelve los conjuntos de repositorios que están asociados a una suscripción activa"
3008
3170
 
@@ -3036,6 +3198,9 @@ msgstr ""
3036
3198
  msgid "Ignore subscriptions that are unavailable to the specified host"
3037
3199
  msgstr "Ignorar suscripciones no disponibles para el host especificado"
3038
3200
 
3201
+ msgid "Ignored hosts"
3202
+ msgstr ""
3203
+
3039
3204
  msgid "Immediate"
3040
3205
  msgstr "Inmediato"
3041
3206
 
@@ -3180,9 +3345,6 @@ msgstr "Secuencias del módulo de índice"
3180
3345
  msgid "Index package groups"
3181
3346
  msgstr "Grupos de paquete del índice"
3182
3347
 
3183
- msgid "Indicate the source type."
3184
- msgstr ""
3185
-
3186
3348
  msgid "Informable Type must be one of the following [ %{list} ]"
3187
3349
  msgstr "El tipo informable debe ser uno de los siguientes [ %{list} ]"
3188
3350
 
@@ -3252,12 +3414,15 @@ msgstr ""
3252
3414
  msgid "Installable"
3253
3415
  msgstr "Instalable"
3254
3416
 
3255
- msgid "Installable errata"
3417
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3256
3418
  msgstr ""
3257
3419
 
3258
3420
  msgid "Installable errata from content view"
3259
3421
  msgstr ""
3260
3422
 
3423
+ msgid "Installable updates"
3424
+ msgstr ""
3425
+
3261
3426
  msgid "Installation of errata requested: %{errata}"
3262
3427
  msgstr "Instalación de erratas solicitada: %{errata}"
3263
3428
 
@@ -3318,9 +3483,6 @@ msgstr "El intervalo no se estableció correctamente"
3318
3483
  msgid "Invalid"
3319
3484
  msgstr "Inválido"
3320
3485
 
3321
- msgid "Invalid SSL CA certificate given for CDN"
3322
- msgstr ""
3323
-
3324
3486
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3325
3487
  msgstr "Asociación no válida de ID de vista de contenido. La vista de contenido debe coincidir con la versión de la vista de contenido que se está guardando"
3326
3488
 
@@ -3369,6 +3531,12 @@ msgstr "Parámetros proporcionados no válidos: content_type debe ser %s"
3369
3531
  msgid "Invalid params provided - date_type must be one of %s"
3370
3532
  msgstr "Los parámetros proporcionados no son válidos: date_type debe ser %s."
3371
3533
 
3534
+ msgid "Invalid params provided - with_content must be one of %s"
3535
+ msgstr ""
3536
+
3537
+ msgid "Invalid path provided. Content can be only imported from file system. "
3538
+ msgstr ""
3539
+
3372
3540
  msgid "Invalid release version: [%s]"
3373
3541
  msgstr ""
3374
3542
 
@@ -3390,6 +3558,9 @@ msgstr "Emitido"
3390
3558
  msgid "Issued from"
3391
3559
  msgstr ""
3392
3560
 
3561
+ msgid "Items will appear here when a filter rule is added."
3562
+ msgstr ""
3563
+
3393
3564
  msgid "Job '${description}' completed"
3394
3565
  msgstr ""
3395
3566
 
@@ -3465,15 +3636,18 @@ msgstr "Etiqueta del contenido"
3465
3636
  msgid "Label of the content view"
3466
3637
  msgstr ""
3467
3638
 
3468
- msgid "Last Refresh"
3639
+ msgid "Last check-in:"
3469
3640
  msgstr ""
3470
3641
 
3471
- msgid "Last check-in:"
3642
+ msgid "Last checkin"
3472
3643
  msgstr ""
3473
3644
 
3474
3645
  msgid "Last published"
3475
3646
  msgstr "Última publicación"
3476
3647
 
3648
+ msgid "Last refresh"
3649
+ msgstr ""
3650
+
3477
3651
  msgid "Last refresh :"
3478
3652
  msgstr ""
3479
3653
 
@@ -3492,6 +3666,9 @@ msgstr ""
3492
3666
  msgid "Learn more about adding Subscription Manifests"
3493
3667
  msgstr "Aprenda más sobre cómo añadir manifiestos de suscripción"
3494
3668
 
3669
+ msgid "Legacy content host UI"
3670
+ msgstr ""
3671
+
3495
3672
  msgid "Less than"
3496
3673
  msgstr ""
3497
3674
 
@@ -3558,6 +3735,9 @@ msgstr "Limitar el contenido a solo lo disponible en la versión de visualizaci
3558
3735
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3559
3736
  msgstr ""
3560
3737
 
3738
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3739
+ msgstr ""
3740
+
3561
3741
  msgid "Limit to environment"
3562
3742
  msgstr "Limitar al entorno"
3563
3743
 
@@ -3588,6 +3768,9 @@ msgstr "Listar todos los :resource_id"
3588
3768
  msgid "List all organizations"
3589
3769
  msgstr "Mostrar todas las organizaciones"
3590
3770
 
3771
+ msgid "List alternate content sources."
3772
+ msgstr ""
3773
+
3591
3774
  msgid "List an activation key's subscriptions"
3592
3775
  msgstr "Mostrar las suscripciones de una llave de activación"
3593
3776
 
@@ -3660,9 +3843,6 @@ msgstr "Lista de productos para el plan de sincronización"
3660
3843
  msgid "List of alternate content source IDs"
3661
3844
  msgstr ""
3662
3845
 
3663
- msgid "List of alternate_content_sources"
3664
- msgstr ""
3665
-
3666
3846
  msgid "List of component content view version ids for composite views"
3667
3847
  msgstr "Lista de ID de versión de la vista de contenido del componente para las vistas compuestas"
3668
3848
 
@@ -3753,6 +3933,9 @@ msgstr "Lista de repositorios en una organización"
3753
3933
  msgid "List of repository ids"
3754
3934
  msgstr "lista de ID de repositorio"
3755
3935
 
3936
+ msgid "List of resources types that will be automatically associated"
3937
+ msgstr ""
3938
+
3756
3939
  msgid "List of subscription products in a subscription"
3757
3940
  msgstr "Lista de productos de suscripción en una suscripción"
3758
3941
 
@@ -3957,6 +4140,9 @@ msgstr ""
3957
4140
  msgid "Multi-entitlement"
3958
4141
  msgstr "Multiderecho"
3959
4142
 
4143
+ msgid "Multiple environments are not supported."
4144
+ msgstr ""
4145
+
3960
4146
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3961
4147
  msgstr "Debe proporcionar al menos uno de los parámetros mandatory_package_names, optional_package_names, conditional_package_names, default_package_names"
3962
4148
 
@@ -3969,11 +4155,19 @@ msgstr "ND"
3969
4155
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3970
4156
  msgstr ""
3971
4157
 
4158
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4159
+ msgstr ""
4160
+
3972
4161
  msgid ""
3973
4162
  "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"
3974
4163
  " %{repos}"
3975
4164
  msgstr ""
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}"
@@ -3985,6 +4179,12 @@ msgstr ""
3985
4179
  msgid "Name"
3986
4180
  msgstr "Nombre"
3987
4181
 
4182
+ msgid "Name and label of default content view should not be changed"
4183
+ msgstr ""
4184
+
4185
+ msgid "Name is a required parameter."
4186
+ msgstr ""
4187
+
3988
4188
  msgid "Name of new activation key"
3989
4189
  msgstr "Nombre de la nueva llave de activación"
3990
4190
 
@@ -4030,6 +4230,12 @@ msgstr ""
4030
4230
  msgid "Never Synced"
4031
4231
  msgstr "Nunca sincronizado"
4032
4232
 
4233
+ msgid "Never checked in"
4234
+ msgstr ""
4235
+
4236
+ msgid "Never registered"
4237
+ msgstr ""
4238
+
4033
4239
  msgid "New Errata"
4034
4240
  msgstr "Nuevas erratas"
4035
4241
 
@@ -4123,6 +4329,9 @@ msgstr "No ha sido aprobado ningún contenido."
4123
4329
  msgid "No content ids provided"
4124
4330
  msgstr "No se proporcionaron ID de contenido."
4125
4331
 
4332
+ msgid "No content in selected versions."
4333
+ msgstr ""
4334
+
4126
4335
  msgid "No content view history events found."
4127
4336
  msgstr "No se han encontrado eventos de historial de la vista de contenido."
4128
4337
 
@@ -4174,6 +4383,9 @@ msgstr ""
4174
4383
  msgid "No host collections found."
4175
4384
  msgstr "No se han encontrado recopilaciones de hosts."
4176
4385
 
4386
+ msgid "No host collections yet"
4387
+ msgstr ""
4388
+
4177
4389
  msgid "No hosts have been specified."
4178
4390
  msgstr "No se han especificado hosts."
4179
4391
 
@@ -4198,6 +4410,9 @@ msgstr ""
4198
4410
  msgid "No matching "
4199
4411
  msgstr ""
4200
4412
 
4413
+ msgid "No matching ${name} found."
4414
+ msgstr ""
4415
+
4201
4416
  msgid "No matching ${selectedContentType} found"
4202
4417
  msgstr ""
4203
4418
 
@@ -4288,6 +4503,9 @@ msgstr "No es necesario reiniciar ningún proceso"
4288
4503
  msgid "No products are enabled."
4289
4504
  msgstr "No hay productos habilitados."
4290
4505
 
4506
+ msgid "No profiles to show"
4507
+ msgstr ""
4508
+
4291
4509
  msgid "No pulp workers running."
4292
4510
  msgstr "No hay trabajadores Pulp en ejecución."
4293
4511
 
@@ -4423,6 +4641,9 @@ msgstr "Objeto para mostrar suscripciones disponibles para 'host' o 'activation_
4423
4641
  msgid "On Demand"
4424
4642
  msgstr "Bajo pedido"
4425
4643
 
4644
+ msgid "On the RHUA Instance, check the available repositories."
4645
+ msgstr ""
4646
+
4426
4647
  msgid "On-disk location for exported repositories"
4427
4648
  msgstr "Ubicación en disco para repositorios exportados"
4428
4649
 
@@ -4801,6 +5022,9 @@ msgstr "Seleccione uno de la lista de abajo y será redirigido."
4801
5022
  msgid "Please wait while the task starts.."
4802
5023
  msgstr ""
4803
5024
 
5025
+ msgid "Please wait..."
5026
+ msgstr ""
5027
+
4804
5028
  msgid "Policy to set for mirroring content. Must be one of %s."
4805
5029
  msgstr ""
4806
5030
 
@@ -4892,9 +5116,18 @@ msgstr "Producto con ID %s no encontrado en Candlepin. Saltando la importación
4892
5116
  msgid "Product: '%{product}', Repository: '%{repository}'"
4893
5117
  msgstr ""
4894
5118
 
5119
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5120
+ msgstr ""
5121
+
4895
5122
  msgid "Products"
4896
5123
  msgstr "Productos"
4897
5124
 
5125
+ msgid "Products updated."
5126
+ msgstr ""
5127
+
5128
+ msgid "Profiles"
5129
+ msgstr ""
5130
+
4898
5131
  msgid "Promote"
4899
5132
  msgstr "Promover"
4900
5133
 
@@ -5072,6 +5305,9 @@ msgstr "RAM: %s GB"
5072
5305
  msgid "RH Repos"
5073
5306
  msgstr "RH Repos"
5074
5307
 
5308
+ msgid "RHUI"
5309
+ msgstr ""
5310
+
5075
5311
  msgid "RPM"
5076
5312
  msgstr "RPM"
5077
5313
 
@@ -5084,6 +5320,12 @@ msgstr ""
5084
5320
  msgid "RPM name"
5085
5321
  msgstr ""
5086
5322
 
5323
+ msgid "RPM package groups"
5324
+ msgstr ""
5325
+
5326
+ msgid "RPM package updates"
5327
+ msgstr ""
5328
+
5087
5329
  msgid "RPM packages"
5088
5330
  msgstr ""
5089
5331
 
@@ -5150,6 +5392,9 @@ msgstr ""
5150
5392
  msgid "Red Hat content will be consumed from the {type}."
5151
5393
  msgstr ""
5152
5394
 
5395
+ msgid "Red Hat content will be consumed from {type}."
5396
+ msgstr ""
5397
+
5153
5398
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5154
5399
  msgstr ""
5155
5400
 
@@ -5177,7 +5422,7 @@ msgstr "Recargar manifiesto"
5177
5422
  msgid "Refresh alternate content sources"
5178
5423
  msgstr ""
5179
5424
 
5180
- msgid "Refresh an alternate content source"
5425
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5181
5426
  msgstr ""
5182
5427
 
5183
5428
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5195,6 +5440,9 @@ msgstr "Registrar un host con suscripción e información"
5195
5440
  msgid "Register host '%s' before attaching subscriptions"
5196
5441
  msgstr "Registrar el host '%s' antes de adjuntar las suscripciones"
5197
5442
 
5443
+ msgid "Registered"
5444
+ msgstr ""
5445
+
5198
5446
  msgid "Registered by"
5199
5447
  msgstr ""
5200
5448
 
@@ -5321,8 +5569,8 @@ msgstr ""
5321
5569
  msgid "Remove one or more host collections from one or more hosts"
5322
5570
  msgstr "Eliminar una o más colecciones de uno o más hosts de uno o más hosts"
5323
5571
 
5324
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5325
- msgstr "Eliminar una o más suscripciones de una asignación de suscripción de canal ascendente"
5572
+ msgid "Remove one or more subscriptions from an upstream manifest"
5573
+ msgstr ""
5326
5574
 
5327
5575
  msgid "Remove package"
5328
5576
  msgstr "Eliminar paquete"
@@ -5372,6 +5620,9 @@ msgstr "Retirando grupo de paquetes..."
5372
5620
  msgid "Removing Package..."
5373
5621
  msgstr "Retirando paquetes..."
5374
5622
 
5623
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5624
+ msgstr ""
5625
+
5375
5626
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5376
5627
  msgstr ""
5377
5628
 
@@ -5612,9 +5863,6 @@ msgstr ""
5612
5863
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5613
5864
  msgstr ""
5614
5865
 
5615
- msgid "Review Details"
5616
- msgstr ""
5617
-
5618
5866
  msgid "Review affected environment"
5619
5867
  msgstr ""
5620
5868
 
@@ -5624,6 +5872,9 @@ msgstr ""
5624
5872
  msgid "Review details"
5625
5873
  msgstr ""
5626
5874
 
5875
+ msgid "Review the information below and click "
5876
+ msgstr ""
5877
+
5627
5878
  msgid "Review your currently selected changes for "
5628
5879
  msgstr ""
5629
5880
 
@@ -5663,9 +5914,6 @@ msgstr ""
5663
5914
  msgid "SSL CA certificate"
5664
5915
  msgstr ""
5665
5916
 
5666
- msgid "SSL Cert"
5667
- msgstr ""
5668
-
5669
5917
  msgid "SSL client certificate"
5670
5918
  msgstr ""
5671
5919
 
@@ -5795,6 +6043,9 @@ msgstr ""
5795
6043
  msgid "Select an environment above"
5796
6044
  msgstr ""
5797
6045
 
6046
+ msgid "Select an option"
6047
+ msgstr ""
6048
+
5798
6049
  msgid "Select an organization"
5799
6050
  msgstr "Seleccionar una organización"
5800
6051
 
@@ -5834,6 +6085,12 @@ msgstr ""
5834
6085
  msgid "Select page"
5835
6086
  msgstr ""
5836
6087
 
6088
+ msgid "Select products"
6089
+ msgstr ""
6090
+
6091
+ msgid "Select products to associate to this source."
6092
+ msgstr ""
6093
+
5837
6094
  msgid "Select row"
5838
6095
  msgstr "Seleccionar fila"
5839
6096
 
@@ -5951,7 +6208,7 @@ msgstr ""
5951
6208
  msgid "Show an activation key"
5952
6209
  msgstr "Mostrar una llave de activación"
5953
6210
 
5954
- msgid "Show an alternate content source"
6211
+ msgid "Show an alternate content source."
5955
6212
  msgstr ""
5956
6213
 
5957
6214
  msgid "Show an environment"
@@ -6002,6 +6259,9 @@ msgstr ""
6002
6259
  msgid "Simple Content Access has been enabled for '%{subject}'."
6003
6260
  msgstr ""
6004
6261
 
6262
+ msgid "Simplified"
6263
+ msgstr ""
6264
+
6005
6265
  msgid "Single content view consisting of e.g. repositories"
6006
6266
  msgstr ""
6007
6267
 
@@ -6038,7 +6298,7 @@ msgstr "Resolver las dependencias RPM por defecto en la vista de contenido de pu
6038
6298
  msgid "Solve dependencies"
6039
6299
  msgstr "Resolver dependencias"
6040
6300
 
6041
- msgid "Some hosts are ignored!"
6301
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6042
6302
  msgstr ""
6043
6303
 
6044
6304
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6062,13 +6322,13 @@ msgstr ""
6062
6322
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6063
6323
  msgstr ""
6064
6324
 
6065
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6325
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6066
6326
  msgstr ""
6067
6327
 
6068
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6328
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6069
6329
  msgstr ""
6070
6330
 
6071
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6331
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6072
6332
  msgstr ""
6073
6333
 
6074
6334
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6116,10 +6376,13 @@ msgstr ""
6116
6376
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6117
6377
  msgstr ""
6118
6378
 
6379
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6380
+ msgstr ""
6381
+
6119
6382
  msgid "Something went wrong while loading the content views. See the logs for more information"
6120
6383
  msgstr ""
6121
6384
 
6122
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6385
+ msgid "Something went wrong while refreshing alternate content sources: "
6123
6386
  msgstr ""
6124
6387
 
6125
6388
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6134,6 +6397,9 @@ msgstr ""
6134
6397
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6135
6398
  msgstr ""
6136
6399
 
6400
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6401
+ msgstr ""
6402
+
6137
6403
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6138
6404
  msgstr ""
6139
6405
 
@@ -6152,9 +6418,33 @@ msgstr ""
6152
6418
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6153
6419
  msgstr ""
6154
6420
 
6421
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6422
+ msgstr ""
6423
+
6424
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6425
+ msgstr ""
6426
+
6427
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6428
+ msgstr ""
6429
+
6430
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6431
+ msgstr ""
6432
+
6155
6433
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6156
6434
  msgstr ""
6157
6435
 
6436
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6437
+ msgstr ""
6438
+
6439
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6440
+ msgstr ""
6441
+
6442
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6443
+ msgstr ""
6444
+
6445
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6446
+ msgstr ""
6447
+
6158
6448
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6159
6449
  msgstr ""
6160
6450
 
@@ -6239,9 +6529,6 @@ msgstr ""
6239
6529
  msgid "Subscription"
6240
6530
  msgstr "Suscripción"
6241
6531
 
6242
- msgid "Subscription Allocation"
6243
- msgstr "Asignación de suscripción"
6244
-
6245
6532
  msgid "Subscription Details"
6246
6533
  msgstr "Detalles de suscripción"
6247
6534
 
@@ -6299,6 +6586,9 @@ msgstr "Archivo del manifiesto de suscripción"
6299
6586
  msgid "Subscription not found"
6300
6587
  msgstr "No se ha encontrado la suscripción"
6301
6588
 
6589
+ msgid "Subscription status"
6590
+ msgstr ""
6591
+
6302
6592
  msgid "Subscription was not persisted - %{error_message}"
6303
6593
  msgstr "La suscripción no persistió - %{error_message}"
6304
6594
 
@@ -6344,6 +6634,9 @@ msgstr "Se eliminaron %s hosts correctamente."
6344
6634
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6345
6635
  msgstr "Se han eliminado correctamente %{count} hosts de contenido de la recopilación de hosts %{host_collection}."
6346
6636
 
6637
+ msgid "Successfully synced capsule."
6638
+ msgstr ""
6639
+
6347
6640
  msgid "Successfully synchronized."
6348
6641
  msgstr "Sincronizado con éxito."
6349
6642
 
@@ -6425,6 +6718,9 @@ msgstr "Sincronizar uno o más productos"
6425
6718
  msgid "Sync plan identifier to attach"
6426
6719
  msgstr "Identificador del plan de sincronización para vincular"
6427
6720
 
6721
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6722
+ msgstr ""
6723
+
6428
6724
  msgid "Sync state"
6429
6725
  msgstr ""
6430
6726
 
@@ -6515,9 +6811,6 @@ msgstr "¡El entorno '%s' no puede contener un changeset!"
6515
6811
  msgid "The Alternate Content Source type"
6516
6812
  msgstr ""
6517
6813
 
6518
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6519
- msgstr "Se ha eliminado la asignación de suscripción que proporcionaba el manifiesto importado. Cree una nueva asignación de suscripción e importe el nuevo manifiesto."
6520
-
6521
6814
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6522
6815
  msgstr ""
6523
6816
 
@@ -6569,9 +6862,6 @@ msgstr ""
6569
6862
  msgid "The field to sort the data by. Defaults to the created date."
6570
6863
  msgstr "El campo para ordenar los datos. Se ajusta por defecto a la fecha de creación."
6571
6864
 
6572
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6573
- msgstr ""
6574
-
6575
6865
  msgid "The following hosts have errata that apply to them: "
6576
6866
  msgstr "Los siguientes hosts tienen erratas que aplican a ellos:"
6577
6867
 
@@ -6598,6 +6888,9 @@ msgstr ""
6598
6888
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6599
6889
  msgstr "La lista de entornos para promover la versión de vista de contenido especificada (remplaza la versión anterior)"
6600
6890
 
6891
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6892
+ msgstr ""
6893
+
6601
6894
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6602
6895
  msgstr "El manifiesto importado dentro de la Organización %{subject} ya no es válido. Importe un nuevo manifiesto."
6603
6896
 
@@ -6642,6 +6935,9 @@ msgstr "La ruta %{real_path} no parece ser un repositorio válido. Si cree que e
6642
6935
  msgid "The port used by Pulp Crane to provide Docker Registries"
6643
6936
  msgstr "El puerto utilizado por Pulp Crane para proporcionar los registros de Docker"
6644
6937
 
6938
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6939
+ msgstr ""
6940
+
6645
6941
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6646
6942
  msgstr "La promoción de %{content_view} para %{environment} se ha completado. %{count} erratas están disponibles para sus hosts."
6647
6943
 
@@ -6687,14 +6983,20 @@ msgstr "La sincronización de \"%s\" ha completado. Abajo encuentra un resumen
6687
6983
  msgid "The token key to use for authentication."
6688
6984
  msgstr ""
6689
6985
 
6986
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6987
+ msgstr ""
6988
+
6989
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6990
+ msgstr ""
6991
+
6690
6992
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6691
6993
  msgstr "El tipo de contenido. Se admiten los siguientes tipos: 'package' y 'package_group."
6692
6994
 
6693
6995
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6694
6996
  msgstr "El tipo de contenido. Se admiten los siguientes tipos: 'package' y 'package_group' y 'errata'."
6695
6997
 
6696
- msgid "There are no Subscription Allocations to display"
6697
- msgstr "No hay asignaciones de suscripciones para mostrar"
6998
+ msgid "There are no Manifests to display"
6999
+ msgstr ""
6698
7000
 
6699
7001
  msgid "There are no Subscriptions to display"
6700
7002
  msgstr "No hay suscripciones para mostrar"
@@ -6765,6 +7067,9 @@ msgstr "Esta acción debería implementarse únicamente en circunstancias extrem
6765
7067
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6766
7068
  msgstr ""
6767
7069
 
7070
+ 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."
7071
+ msgstr ""
7072
+
6768
7073
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6769
7074
  msgstr "Este certificado permite al usuario ver los repositorios en cualquier entorno desde un navegador."
6770
7075
 
@@ -6804,8 +7109,8 @@ msgstr "Esto está desactivado porque una tarea del manifiesto está en progreso
6804
7109
  msgid "This is disabled because a manifest task is in progress"
6805
7110
  msgstr "Esto está desactivado porque una tarea del manifiesto está en progreso"
6806
7111
 
6807
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6808
- msgstr "Esto está desactivado porque no se pudo hacer ninguna conexión con la asignación de suscripción de canal ascendente."
7112
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7113
+ msgstr ""
6809
7114
 
6810
7115
  msgid "This is disabled because no manifest exists"
6811
7116
  msgstr "Esto está desactivado porque no existe ningún manifiesto"
@@ -6873,6 +7178,9 @@ msgstr "Sello de tiempo"
6873
7178
  msgid "Title"
6874
7179
  msgstr "Título"
6875
7180
 
7181
+ msgid "To get started, add this host to a host collection."
7182
+ msgstr ""
7183
+
6876
7184
  msgid "Toggling Simple Content Access will refresh your manifest."
6877
7185
  msgstr "Si se cambia el acceso a los contenidos simples, se actualizará el manifiesto."
6878
7186
 
@@ -6915,6 +7223,9 @@ msgstr ""
6915
7223
  msgid "Traces will be shown here to a user with the appropriate permissions."
6916
7224
  msgstr ""
6917
7225
 
7226
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7227
+ msgstr ""
7228
+
6918
7229
  msgid "Trigger an auto-attach of subscriptions"
6919
7230
  msgstr "Activar la inclusión automática de suscripciones"
6920
7231
 
@@ -6945,12 +7256,18 @@ msgstr ""
6945
7256
  msgid "Type of content: \"cert\", \"gpg_key\""
6946
7257
  msgstr ""
6947
7258
 
7259
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7260
+ msgstr ""
7261
+
6948
7262
  msgid "URL"
6949
7263
  msgstr "URL"
6950
7264
 
6951
7265
  msgid "URL and paths"
6952
7266
  msgstr ""
6953
7267
 
7268
+ msgid "URL and subpaths"
7269
+ msgstr ""
7270
+
6954
7271
  msgid "URL needs to have a trailing /"
6955
7272
  msgstr ""
6956
7273
 
@@ -7152,7 +7469,7 @@ msgstr "Actualizar un plan de sincronización"
7152
7469
  msgid "Update an activation key"
7153
7470
  msgstr "Actualizar una llave de activación"
7154
7471
 
7155
- msgid "Update an alternate content source"
7472
+ msgid "Update an alternate content source."
7156
7473
  msgstr ""
7157
7474
 
7158
7475
  msgid "Update an environment"
@@ -7359,6 +7676,12 @@ msgstr ""
7359
7676
  msgid "Usage type"
7360
7677
  msgstr ""
7361
7678
 
7679
+ msgid "Use HTTP Proxies"
7680
+ msgstr ""
7681
+
7682
+ msgid "Use HTTP proxies"
7683
+ msgstr ""
7684
+
7362
7685
  msgid "Use remote execution by default"
7363
7686
  msgstr "Usar la ejecución remota por defecto"
7364
7687
 
@@ -7434,6 +7757,12 @@ msgstr ""
7434
7757
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7435
7758
  msgstr ""
7436
7759
 
7760
+ msgid "Version ${versionOne}"
7761
+ msgstr ""
7762
+
7763
+ msgid "Version ${versionTwo}"
7764
+ msgstr ""
7765
+
7437
7766
  msgid "Version details updated."
7438
7767
  msgstr ""
7439
7768
 
@@ -7446,6 +7775,9 @@ msgstr "Versiones"
7446
7775
  msgid "Versions "
7447
7776
  msgstr ""
7448
7777
 
7778
+ msgid "Versions to compare"
7779
+ msgstr ""
7780
+
7449
7781
  msgid "Versions to exclusively include in the action"
7450
7782
  msgstr ""
7451
7783
 
@@ -7461,6 +7793,9 @@ msgstr "La vista %{view} no ha sido promovida a %{env}"
7461
7793
  msgid "View a report of the affected hosts"
7462
7794
  msgstr "Ver un informe de los hosts afectados"
7463
7795
 
7796
+ msgid "View by"
7797
+ msgstr ""
7798
+
7464
7799
  msgid "View matching content"
7465
7800
  msgstr ""
7466
7801
 
@@ -7524,6 +7859,9 @@ msgstr "Si se sincroniza o no una cápsula externa después de la carga. Por def
7524
7859
  msgid "Whether to include available content attribute in results"
7525
7860
  msgstr "Si se debe incluir el atributo de contenido disponible en los resultados"
7526
7861
 
7862
+ msgid "Whether to turn on Simple Content Access for the organization."
7863
+ msgstr ""
7864
+
7527
7865
  msgid "Workers"
7528
7866
  msgstr "Trabajadores"
7529
7867
 
@@ -7620,6 +7958,9 @@ msgstr "Su búsqueda no fue válida.Revísela e inténtelo de nuevo. El error co
7620
7958
  msgid "Your search returned no matching "
7621
7959
  msgstr ""
7622
7960
 
7961
+ msgid "Your search returned no matching ${name}."
7962
+ msgstr ""
7963
+
7623
7964
  msgid "Your search returned no matching DEBs."
7624
7965
  msgstr ""
7625
7966
 
@@ -7644,6 +7985,9 @@ msgstr "Metadatos de Yum: %s"
7644
7985
  msgid "a content unit"
7645
7986
  msgstr ""
7646
7987
 
7988
+ msgid "a custom CDN URL"
7989
+ msgstr ""
7990
+
7647
7991
  msgid "a deb package"
7648
7992
  msgstr ""
7649
7993
 
@@ -7815,9 +8159,6 @@ msgstr "nombres de paquetes condicionales a incluir en el grupo de paquetes"
7815
8159
  msgid "content release version"
7816
8160
  msgstr "versión de lanzamiento de contenido"
7817
8161
 
7818
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7819
- msgstr ""
7820
-
7821
8162
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7822
8163
  msgstr ""
7823
8164
 
@@ -8091,9 +8432,6 @@ msgstr "etiqueta del entorno"
8091
8432
  msgid "label of the repository"
8092
8433
  msgstr "etiqueta del repositorio"
8093
8434
 
8094
- msgid "limit to only repositories of this type"
8095
- msgstr "limitarse solo a los repositorios de este tipo"
8096
-
8097
8435
  msgid "limit to only repositories with this download policy"
8098
8436
  msgstr ""
8099
8437
 
@@ -8211,9 +8549,6 @@ msgstr "obtener historial de manifiestos para las suscripciones"
8211
8549
  msgid "of environment must be unique within one organization"
8212
8550
  msgstr "del entorno debe ser único dentro de una organización"
8213
8551
 
8214
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8215
- msgstr "solo los repositorios que tengan al menos un tipo de contenido especificado, por ejemplo: rpm, erratas"
8216
-
8217
8552
  msgid "only show the repositories readable by this user with this username"
8218
8553
  msgstr ""
8219
8554
 
@@ -8397,9 +8732,6 @@ msgstr ""
8397
8732
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8398
8733
  msgstr ""
8399
8734
 
8400
- msgid "type of repo"
8401
- msgstr "tipo de repositorio"
8402
-
8403
8735
  msgid "types of filters"
8404
8736
  msgstr "tipos de filtros"
8405
8737