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
@@ -52,6 +52,12 @@ msgstr " Selecione a última visualização de conteúdo ou a versão da visuali
52
52
  msgid " RPMs"
53
53
  msgstr ""
54
54
 
55
+ msgid " The base path can be a web address or a filesystem location."
56
+ msgstr ""
57
+
58
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
59
+ msgstr ""
60
+
55
61
  msgid " View task details "
56
62
  msgstr ""
57
63
 
@@ -82,12 +88,18 @@ msgstr ""
82
88
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
83
89
  msgstr ""
84
90
 
91
+ msgid " or any step on the left."
92
+ msgstr ""
93
+
85
94
  msgid " to manage and promote content views, or select a different environment."
86
95
  msgstr ""
87
96
 
88
97
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
89
98
  msgstr ""
90
99
 
100
+ msgid "${option}"
101
+ msgstr ""
102
+
91
103
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
92
104
  msgstr ""
93
105
 
@@ -330,6 +342,24 @@ msgstr "%{used} de %{total}"
330
342
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
331
343
  msgstr "Não foi possível promover %{view_label} a %{environment_label} porque a visualização de conteúdo e o ambiente não estão na mesma organização!"
332
344
 
345
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
346
+ msgstr ""
347
+
348
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
349
+ msgstr ""
350
+
351
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
352
+ msgstr ""
353
+
354
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
355
+ msgstr ""
356
+
357
+ 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. "
358
+ msgstr ""
359
+
360
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
361
+ msgstr ""
362
+
333
363
  msgid "(Orphaned)"
334
364
  msgstr "(Órfão)"
335
365
 
@@ -549,10 +579,10 @@ msgstr "Adicionar subscrições consumidas por um manifesto do Red Hat Subscript
549
579
  msgid "Add subscriptions to one or more hosts"
550
580
  msgstr "Adicionar subscrições a um ou mais hosts"
551
581
 
552
- msgid "Add to this filter using the 'Add Deb rule' button."
582
+ msgid "Add to a host collection"
553
583
  msgstr ""
554
584
 
555
- msgid "Add to this filter using the 'Add RPM rule' button."
585
+ msgid "Add to this filter using the 'Add Deb rule' button."
556
586
  msgstr ""
557
587
 
558
588
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -612,6 +642,9 @@ msgstr ""
612
642
  msgid "All subpaths must have a slash at the end and none at the front"
613
643
  msgstr ""
614
644
 
645
+ msgid "All up to date"
646
+ msgstr ""
647
+
615
648
  msgid "All versions"
616
649
  msgstr ""
617
650
 
@@ -639,6 +672,9 @@ msgstr ""
639
672
  msgid "Alter a host's host collections"
640
673
  msgstr ""
641
674
 
675
+ msgid "Alternate Content Source HTTP Proxy"
676
+ msgstr ""
677
+
642
678
  msgid "Alternate Content Sources"
643
679
  msgstr ""
644
680
 
@@ -651,7 +687,10 @@ msgstr ""
651
687
  msgid "Alternate content source deleted"
652
688
  msgstr ""
653
689
 
654
- msgid "Alternate content sources"
690
+ msgid "Alternate content source edited"
691
+ msgstr ""
692
+
693
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
655
694
  msgstr ""
656
695
 
657
696
  msgid "Always Use Latest (currently %{version})"
@@ -663,7 +702,7 @@ msgstr ""
663
702
  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."
664
703
  msgstr "Quantidade de trabalhadores no pool para lidar com a execução de tarefas relacionadas a hosts. Quando definido como 0, a fila padrão será usada em vez disso. É necessário reiniciar o serviço dynflowd/foreman-tasks."
665
704
 
666
- msgid "An alternate content source can be added by using the \"Add source\" button above."
705
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
667
706
  msgstr ""
668
707
 
669
708
  msgid "An environment is missing a prior"
@@ -702,9 +741,15 @@ msgstr ""
702
741
  msgid "Applicability Batch Size"
703
742
  msgstr "Tamanho de lote de aplicabilidade"
704
743
 
744
+ msgid "Applicable"
745
+ msgstr ""
746
+
705
747
  msgid "Applicable Content Hosts"
706
748
  msgstr "Hosts aplicáveis de conteúdo"
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 "Aplicativo"
710
755
 
@@ -881,6 +926,9 @@ msgstr "Repositórios disponíveis"
881
926
  msgid "Available Schema Versions"
882
927
  msgstr "Versões disponíveis de esquema"
883
928
 
929
+ msgid "Back"
930
+ msgstr ""
931
+
884
932
  msgid "Backend System Status"
885
933
  msgstr "Status do Sistema Backend"
886
934
 
@@ -947,6 +995,12 @@ msgstr "Bugfix"
947
995
  msgid "Bugs"
948
996
  msgstr ""
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 ""
952
1006
 
@@ -956,9 +1010,6 @@ msgstr "Aplicabilidade de geração em massa para hosts"
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 ""
964
1015
 
@@ -1064,6 +1115,9 @@ msgstr "Não é possível adicionar coleções de versão a outra coleção de v
1064
1115
  msgid "Cannot add default content view to composite content view"
1065
1116
  msgstr "Não é possível adicionar visualização de conteúdo padrão a uma coleção de visualiação de conteúdo"
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 "Não fé possível adicionar repositórios a uma coleção de visualização de conteúdo "
1069
1123
 
@@ -1205,6 +1259,9 @@ msgstr "Verificar serviços antes de ações"
1205
1259
  msgid "Checksum"
1206
1260
  msgstr "Checksum"
1207
1261
 
1262
+ msgid "Checksum is a required parameter."
1263
+ msgstr ""
1264
+
1208
1265
  msgid "Checksum of file to upload"
1209
1266
  msgstr "Checksum do arquivo para carregar"
1210
1267
 
@@ -1214,6 +1271,9 @@ msgstr "Checksum do repositório, atualmente 'sha1' e 'sha256' são suportados"
1214
1271
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1215
1272
  msgstr "O tipo de checksum não pode ser definido para repositórios yum com política de download sob demanda."
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 ""
1219
1279
 
@@ -1229,9 +1289,6 @@ msgstr "Clique aqui para ir à página de tarefas da tarefa."
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 "Clonar"
1237
1294
 
@@ -1247,6 +1304,9 @@ msgstr "Atualização de perfil combinado"
1247
1304
  msgid "Combined Profile Update for %s"
1248
1305
  msgstr "Atualização de perfil combinado para %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 "Componente"
1261
1324
 
1262
1325
  msgid "Component Content View"
1263
1326
  msgstr ""
1264
1327
 
1328
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1329
+ msgstr ""
1330
+
1265
1331
  msgid "Components"
1266
1332
  msgstr "Componentes"
1267
1333
 
@@ -1412,6 +1478,9 @@ msgstr "Versão de visualização de conteúdo não definida"
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 ""
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 "O Ambiente e a Visualização de Conteúdo não foram definidos para registro. "
1417
1486
 
@@ -1424,6 +1493,9 @@ msgstr ""
1424
1493
  msgid "Content Views"
1425
1494
  msgstr "Exibições de conteúdo"
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 ""
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 da fonte de conteúdo"
1453
1528
 
@@ -1514,6 +1589,9 @@ msgstr ""
1514
1589
  msgid "Content views"
1515
1590
  msgstr ""
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 "Não foi possível encontrar ambiente anterior \"%s\""
1655
1733
  msgid "Couldn't find product with id '%s'"
1656
1734
  msgstr "Não foi possível encontrar produto com ID \"%s\""
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 "Não foi possível encontrar repositório \"%s\""
1660
1741
 
@@ -1724,12 +1805,12 @@ msgstr "Criar um produto"
1724
1805
  msgid "Create a sync plan"
1725
1806
  msgstr "Criar um plano de sinc"
1726
1807
 
1727
- msgid "Create an ACS"
1728
- msgstr ""
1729
-
1730
1808
  msgid "Create an activation key"
1731
1809
  msgstr "Criar uma chave de ativação"
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 "Criar um ambiente"
1735
1816
 
@@ -1739,6 +1820,9 @@ msgstr "Criar um ambiente em uma organização"
1739
1820
  msgid "Create an upload request"
1740
1821
  msgstr "Criar uma requisição de carregamento"
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 ""
1744
1828
 
@@ -1778,6 +1862,9 @@ msgstr "Organização atual não definida."
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 "Repositórios de Conteúdo Padronizado"
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 "Conexão do banco de dados"
1798
1888
 
@@ -1928,6 +2018,12 @@ msgstr "Dados de usuário de SO sincronizados padrão"
1928
2018
  msgid "Default user data for new Operating Systems created from synced content"
1929
2019
  msgstr "Dados de usuário padrão para novos sistemas operacionais criados a partir de conteúdo sincronizado"
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 "Excluir"
1933
2029
 
@@ -2066,7 +2162,7 @@ msgstr "Destruir um plano de sinc"
2066
2162
  msgid "Destroy an activation key"
2067
2163
  msgstr "Destruir uma chave de ativação"
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 "Descubra"
2129
2225
  msgid "Discover Repositories"
2130
2226
  msgstr "Descobrir Repositórios "
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ão inclua essa matriz de visualização de conteúdo "
2134
2233
 
@@ -2162,21 +2261,51 @@ msgstr "AVISO DE ERRATA(S)"
2162
2261
  msgid "Edit"
2163
2262
  msgstr "Editar"
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 ""
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 ""
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 ""
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 "Definir a visualização de conteúdo com o último sinalizador ou defin
2201
2330
  msgid "Either set the latest content view or the content view version. Cannot set both"
2202
2331
  msgstr "Definir a última visualização de conteúdo ou a versão da visualização de conteúdo. Não é possível definir ambas as opções"
2203
2332
 
2333
+ msgid "Empty content view versions"
2334
+ msgstr ""
2335
+
2204
2336
  msgid "Enable"
2205
2337
  msgstr "Habilitar"
2206
2338
 
@@ -2219,6 +2351,9 @@ msgstr ""
2219
2351
  msgid "Enable a repository from the set"
2220
2352
  msgstr "Ativar um repositório do conjunto "
2221
2353
 
2354
+ msgid "Enable repository sets"
2355
+ msgstr ""
2356
+
2222
2357
  msgid "Enable simple content access for a manifest"
2223
2358
  msgstr "Habilitar acesso a conteúdo simples para um manifesto"
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 "Direitos"
2266
2404
 
@@ -2517,6 +2655,9 @@ msgstr "Filtrar produtos por subscrição"
2517
2655
  msgid "Filter products by sync plan id"
2518
2656
  msgstr "Filtrar produtos por id de plano de sincronização"
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 ""
2522
2663
 
@@ -2553,6 +2694,9 @@ msgstr ""
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 ""
2558
2702
 
@@ -2614,6 +2758,9 @@ msgstr "Com total direito a serviços"
2614
2758
  msgid "GPG Key URL"
2615
2759
  msgstr "URL de chave 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 "Gerar e Baixar"
2619
2766
 
@@ -2824,6 +2971,9 @@ msgstr "Host com ID %s não encontrado."
2824
2971
  msgid "Hosts"
2825
2972
  msgstr "Hosts"
2826
2973
 
2974
+ msgid "Hosts to update"
2975
+ msgstr ""
2976
+
2827
2977
  msgid "Hosts with Installable Errata"
2828
2978
  msgstr "Hosts com a Errata Instalável"
2829
2979
 
@@ -2902,6 +3052,9 @@ msgstr "ID do plano de sinc"
2902
3052
  msgid "ID: %s doesn't exist "
2903
3053
  msgstr "ID: %s não existe"
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 de um pacote deb para localizar os repositórios que contêm o deb"
2907
3060
 
@@ -2917,6 +3070,9 @@ msgstr "Id de uma coleção do ansible para localizar repositórios que contêm
2917
3070
  msgid "Id of an erratum to find repositories that contain the erratum"
2918
3071
  msgstr "Id de uma errata para localizar os repositórios que contêm a errata "
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 do host de conteúdo"
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 "Se especificado, remova a primeira instância de uma subscrição com quantidade e id correspondentes "
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 ""
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 "Se for verdadeiro, retornará apenas conjuntos de repositórios associados a uma subscrição ativa"
3006
3168
 
@@ -3034,6 +3196,9 @@ msgstr ""
3034
3196
  msgid "Ignore subscriptions that are unavailable to the specified host"
3035
3197
  msgstr "Ignorar subscrições indisponíveis para o host especificado "
3036
3198
 
3199
+ msgid "Ignored hosts"
3200
+ msgstr ""
3201
+
3037
3202
  msgid "Immediate"
3038
3203
  msgstr "Imediato(a)"
3039
3204
 
@@ -3178,9 +3343,6 @@ msgstr "Indexar fluxos do módulo"
3178
3343
  msgid "Index package groups"
3179
3344
  msgstr "Indexar grupos de pacotes "
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 "Tipo Informável deve ser um dos seguintes [ %{list} ]"
3186
3348
 
@@ -3250,12 +3412,15 @@ msgstr ""
3250
3412
  msgid "Installable"
3251
3413
  msgstr "Instalável"
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 "Instalação de errata solicitada: %{errata}"
3261
3426
 
@@ -3316,9 +3481,6 @@ msgstr "Intervalo não definido corretamente"
3316
3481
  msgid "Invalid"
3317
3482
  msgstr "Inválido"
3318
3483
 
3319
- msgid "Invalid SSL CA certificate given for CDN"
3320
- msgstr ""
3321
-
3322
3484
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3323
3485
  msgstr "Associação inválida da visualização de conteúdo. A visualização de conteúdo deve corresponder à versão da visualização de conteúdo que está sendo salva"
3324
3486
 
@@ -3367,6 +3529,12 @@ msgstr "Parâmetros fornecidos inválidos - content_type deve ser dos %s"
3367
3529
  msgid "Invalid params provided - date_type must be one of %s"
3368
3530
  msgstr "Parâmetros fornecidos inválidos - date_type deve ser dos %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 "Emitido"
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 "Rótulo do conteúdo"
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 "Última publicação"
3474
3645
 
3646
+ msgid "Last refresh"
3647
+ msgstr ""
3648
+
3475
3649
  msgid "Last refresh :"
3476
3650
  msgstr ""
3477
3651
 
@@ -3490,6 +3664,9 @@ msgstr ""
3490
3664
  msgid "Learn more about adding Subscription Manifests"
3491
3665
  msgstr "Saiba mais sobre como adicionar Manifestos de subscrição"
3492
3666
 
3667
+ msgid "Legacy content host UI"
3668
+ msgstr ""
3669
+
3493
3670
  msgid "Less than"
3494
3671
  msgstr ""
3495
3672
 
@@ -3556,6 +3733,9 @@ msgstr "Limitar o conteúdo apenas ao disponível na versão de visualização d
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 ""
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 "Limitar para ambiente"
3561
3741
 
@@ -3586,6 +3766,9 @@ msgstr "Listar todos: resource_id"
3586
3766
  msgid "List all organizations"
3587
3767
  msgstr "Listar todas as organizações"
3588
3768
 
3769
+ msgid "List alternate content sources."
3770
+ msgstr ""
3771
+
3589
3772
  msgid "List an activation key's subscriptions"
3590
3773
  msgstr "Listar as subscrições de chave de ativação"
3591
3774
 
@@ -3658,9 +3841,6 @@ msgstr "Lista de produtos para plano de sincronização"
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 "Lista de ids de versão de visualização de conteúdo de componente para coleções de visualização"
3666
3846
 
@@ -3751,6 +3931,9 @@ msgstr "Lista de repositórios em uma organização"
3751
3931
  msgid "List of repository ids"
3752
3932
  msgstr "LIsta de ids de repositório"
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 "Lista de produtos de subscrição em uma subscrição "
3756
3939
 
@@ -3955,6 +4138,9 @@ msgstr ""
3955
4138
  msgid "Multi-entitlement"
3956
4139
  msgstr "Direitos múltiplos"
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 "Deve fornecer pelo menos um dos parâmetros mandatory_package_names, optional_package_names, conditional_package_names, default_package_names"
3960
4146
 
@@ -3967,11 +4153,19 @@ msgstr "NA"
3967
4153
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3968
4154
  msgstr ""
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}"
3973
4162
  msgstr ""
3974
4163
 
4164
+ msgid ""
4165
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4166
+ " %{repos}"
4167
+ msgstr ""
4168
+
3975
4169
  msgid ""
3976
4170
  "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"
3977
4171
  " %{repos}"
@@ -3983,6 +4177,12 @@ msgstr ""
3983
4177
  msgid "Name"
3984
4178
  msgstr "Nome"
3985
4179
 
4180
+ msgid "Name and label of default content view should not be changed"
4181
+ msgstr ""
4182
+
4183
+ msgid "Name is a required parameter."
4184
+ msgstr ""
4185
+
3986
4186
  msgid "Name of new activation key"
3987
4187
  msgstr "Nome da nova chave de ativação"
3988
4188
 
@@ -4028,6 +4228,12 @@ msgstr ""
4028
4228
  msgid "Never Synced"
4029
4229
  msgstr "Nunca Sincronizado"
4030
4230
 
4231
+ msgid "Never checked in"
4232
+ msgstr ""
4233
+
4234
+ msgid "Never registered"
4235
+ msgstr ""
4236
+
4031
4237
  msgid "New Errata"
4032
4238
  msgstr "Nova Errata"
4033
4239
 
@@ -4121,6 +4327,9 @@ msgstr "Não foi fornecido nenhum conteúdo."
4121
4327
  msgid "No content ids provided"
4122
4328
  msgstr "Nenhuma id de conteúdo fornecida "
4123
4329
 
4330
+ msgid "No content in selected versions."
4331
+ msgstr ""
4332
+
4124
4333
  msgid "No content view history events found."
4125
4334
  msgstr "Nenhum evento de histórico de visualização de conteúdo foi encontrado."
4126
4335
 
@@ -4172,6 +4381,9 @@ msgstr ""
4172
4381
  msgid "No host collections found."
4173
4382
  msgstr "Nenhuma coleção de host foi encontrada"
4174
4383
 
4384
+ msgid "No host collections yet"
4385
+ msgstr ""
4386
+
4175
4387
  msgid "No hosts have been specified."
4176
4388
  msgstr "Não foram especificados hosts."
4177
4389
 
@@ -4196,6 +4408,9 @@ msgstr ""
4196
4408
  msgid "No matching "
4197
4409
  msgstr ""
4198
4410
 
4411
+ msgid "No matching ${name} found."
4412
+ msgstr ""
4413
+
4199
4414
  msgid "No matching ${selectedContentType} found"
4200
4415
  msgstr ""
4201
4416
 
@@ -4286,6 +4501,9 @@ msgstr "Nenhum processo precisa ser reiniciado"
4286
4501
  msgid "No products are enabled."
4287
4502
  msgstr "Nenhum produto está habilitado."
4288
4503
 
4504
+ msgid "No profiles to show"
4505
+ msgstr ""
4506
+
4289
4507
  msgid "No pulp workers running."
4290
4508
  msgstr "Nenhum trabalhador do pulp em execução. "
4291
4509
 
@@ -4421,6 +4639,9 @@ msgstr "Objeto para exibir subscrições disponíveis tanto para 'host' quanto p
4421
4639
  msgid "On Demand"
4422
4640
  msgstr "Sob demanda"
4423
4641
 
4642
+ msgid "On the RHUA Instance, check the available repositories."
4643
+ msgstr ""
4644
+
4424
4645
  msgid "On-disk location for exported repositories"
4425
4646
  msgstr "Localização no disco para repositórios exportados "
4426
4647
 
@@ -4799,6 +5020,9 @@ msgstr "Selecione uma opção na lista abaixo e você será redirecionado."
4799
5020
  msgid "Please wait while the task starts.."
4800
5021
  msgstr ""
4801
5022
 
5023
+ msgid "Please wait..."
5024
+ msgstr ""
5025
+
4802
5026
  msgid "Policy to set for mirroring content. Must be one of %s."
4803
5027
  msgstr ""
4804
5028
 
@@ -4890,9 +5114,18 @@ msgstr "Produto com a ID %s não encontrado em Candlepin. Ignorando a importaç
4890
5114
  msgid "Product: '%{product}', Repository: '%{repository}'"
4891
5115
  msgstr ""
4892
5116
 
5117
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5118
+ msgstr ""
5119
+
4893
5120
  msgid "Products"
4894
5121
  msgstr "Produtos"
4895
5122
 
5123
+ msgid "Products updated."
5124
+ msgstr ""
5125
+
5126
+ msgid "Profiles"
5127
+ msgstr ""
5128
+
4896
5129
  msgid "Promote"
4897
5130
  msgstr "Promover"
4898
5131
 
@@ -5070,6 +5303,9 @@ msgstr "RAM: %s GB"
5070
5303
  msgid "RH Repos"
5071
5304
  msgstr "Repositórios RH"
5072
5305
 
5306
+ msgid "RHUI"
5307
+ msgstr ""
5308
+
5073
5309
  msgid "RPM"
5074
5310
  msgstr "RPM"
5075
5311
 
@@ -5082,6 +5318,12 @@ msgstr ""
5082
5318
  msgid "RPM name"
5083
5319
  msgstr ""
5084
5320
 
5321
+ msgid "RPM package groups"
5322
+ msgstr ""
5323
+
5324
+ msgid "RPM package updates"
5325
+ msgstr ""
5326
+
5085
5327
  msgid "RPM packages"
5086
5328
  msgstr ""
5087
5329
 
@@ -5148,6 +5390,9 @@ msgstr ""
5148
5390
  msgid "Red Hat content will be consumed from the {type}."
5149
5391
  msgstr ""
5150
5392
 
5393
+ msgid "Red Hat content will be consumed from {type}."
5394
+ msgstr ""
5395
+
5151
5396
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5152
5397
  msgstr ""
5153
5398
 
@@ -5175,7 +5420,7 @@ msgstr "Atualizar Manifesto"
5175
5420
  msgid "Refresh alternate content sources"
5176
5421
  msgstr ""
5177
5422
 
5178
- msgid "Refresh an alternate content source"
5423
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5179
5424
  msgstr ""
5180
5425
 
5181
5426
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5193,6 +5438,9 @@ msgstr "Registrar um host com subscrição e informações"
5193
5438
  msgid "Register host '%s' before attaching subscriptions"
5194
5439
  msgstr "Registrar host '%s' antes de vincular as subscrições"
5195
5440
 
5441
+ msgid "Registered"
5442
+ msgstr ""
5443
+
5196
5444
  msgid "Registered by"
5197
5445
  msgstr ""
5198
5446
 
@@ -5319,8 +5567,8 @@ msgstr ""
5319
5567
  msgid "Remove one or more host collections from one or more hosts"
5320
5568
  msgstr "Remover uma ou mais coleções de um ou mais hosts"
5321
5569
 
5322
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5323
- msgstr "Remover uma ou mais subscrições de uma alocação de subscrição upstream"
5570
+ msgid "Remove one or more subscriptions from an upstream manifest"
5571
+ msgstr ""
5324
5572
 
5325
5573
  msgid "Remove package"
5326
5574
  msgstr "Remover Pacote"
@@ -5370,6 +5618,9 @@ msgstr "Removendo Grupo de Pacote..."
5370
5618
  msgid "Removing Package..."
5371
5619
  msgstr "Removendo Pacote..."
5372
5620
 
5621
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5622
+ msgstr ""
5623
+
5373
5624
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5374
5625
  msgstr ""
5375
5626
 
@@ -5610,9 +5861,6 @@ msgstr ""
5610
5861
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5611
5862
  msgstr ""
5612
5863
 
5613
- msgid "Review Details"
5614
- msgstr ""
5615
-
5616
5864
  msgid "Review affected environment"
5617
5865
  msgstr ""
5618
5866
 
@@ -5622,6 +5870,9 @@ msgstr ""
5622
5870
  msgid "Review details"
5623
5871
  msgstr ""
5624
5872
 
5873
+ msgid "Review the information below and click "
5874
+ msgstr ""
5875
+
5625
5876
  msgid "Review your currently selected changes for "
5626
5877
  msgstr ""
5627
5878
 
@@ -5661,9 +5912,6 @@ msgstr ""
5661
5912
  msgid "SSL CA certificate"
5662
5913
  msgstr ""
5663
5914
 
5664
- msgid "SSL Cert"
5665
- msgstr ""
5666
-
5667
5915
  msgid "SSL client certificate"
5668
5916
  msgstr ""
5669
5917
 
@@ -5793,6 +6041,9 @@ msgstr ""
5793
6041
  msgid "Select an environment above"
5794
6042
  msgstr ""
5795
6043
 
6044
+ msgid "Select an option"
6045
+ msgstr ""
6046
+
5796
6047
  msgid "Select an organization"
5797
6048
  msgstr "Selecionar uma organização"
5798
6049
 
@@ -5832,6 +6083,12 @@ msgstr ""
5832
6083
  msgid "Select page"
5833
6084
  msgstr ""
5834
6085
 
6086
+ msgid "Select products"
6087
+ msgstr ""
6088
+
6089
+ msgid "Select products to associate to this source."
6090
+ msgstr ""
6091
+
5835
6092
  msgid "Select row"
5836
6093
  msgstr "Selecionar linha"
5837
6094
 
@@ -5949,7 +6206,7 @@ msgstr ""
5949
6206
  msgid "Show an activation key"
5950
6207
  msgstr "Exibir uma chave de ativação"
5951
6208
 
5952
- msgid "Show an alternate content source"
6209
+ msgid "Show an alternate content source."
5953
6210
  msgstr ""
5954
6211
 
5955
6212
  msgid "Show an environment"
@@ -6000,6 +6257,9 @@ msgstr ""
6000
6257
  msgid "Simple Content Access has been enabled for '%{subject}'."
6001
6258
  msgstr ""
6002
6259
 
6260
+ msgid "Simplified"
6261
+ msgstr ""
6262
+
6003
6263
  msgid "Single content view consisting of e.g. repositories"
6004
6264
  msgstr ""
6005
6265
 
@@ -6036,7 +6296,7 @@ msgstr "Solucionar dependências de RPM por padrão na publicação de Visualiza
6036
6296
  msgid "Solve dependencies"
6037
6297
  msgstr "Solucionar dependências"
6038
6298
 
6039
- msgid "Some hosts are ignored!"
6299
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6040
6300
  msgstr ""
6041
6301
 
6042
6302
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6060,13 +6320,13 @@ msgstr ""
6060
6320
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6061
6321
  msgstr ""
6062
6322
 
6063
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6323
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6064
6324
  msgstr ""
6065
6325
 
6066
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6326
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6067
6327
  msgstr ""
6068
6328
 
6069
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6329
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6070
6330
  msgstr ""
6071
6331
 
6072
6332
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6114,10 +6374,13 @@ msgstr ""
6114
6374
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6115
6375
  msgstr ""
6116
6376
 
6377
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6378
+ msgstr ""
6379
+
6117
6380
  msgid "Something went wrong while loading the content views. See the logs for more information"
6118
6381
  msgstr ""
6119
6382
 
6120
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6383
+ msgid "Something went wrong while refreshing alternate content sources: "
6121
6384
  msgstr ""
6122
6385
 
6123
6386
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6132,6 +6395,9 @@ msgstr ""
6132
6395
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6133
6396
  msgstr ""
6134
6397
 
6398
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6399
+ msgstr ""
6400
+
6135
6401
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6136
6402
  msgstr ""
6137
6403
 
@@ -6150,9 +6416,33 @@ msgstr ""
6150
6416
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6151
6417
  msgstr ""
6152
6418
 
6419
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6420
+ msgstr ""
6421
+
6422
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6423
+ msgstr ""
6424
+
6425
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6426
+ msgstr ""
6427
+
6428
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6429
+ msgstr ""
6430
+
6153
6431
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6154
6432
  msgstr ""
6155
6433
 
6434
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6435
+ msgstr ""
6436
+
6437
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6438
+ msgstr ""
6439
+
6440
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6441
+ msgstr ""
6442
+
6443
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6444
+ msgstr ""
6445
+
6156
6446
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6157
6447
  msgstr ""
6158
6448
 
@@ -6237,9 +6527,6 @@ msgstr ""
6237
6527
  msgid "Subscription"
6238
6528
  msgstr "Subscrição"
6239
6529
 
6240
- msgid "Subscription Allocation"
6241
- msgstr "Alocação de subscrição"
6242
-
6243
6530
  msgid "Subscription Details"
6244
6531
  msgstr "Detalhes de subscrição"
6245
6532
 
@@ -6297,6 +6584,9 @@ msgstr "Arquivo de manifesto de subscrição"
6297
6584
  msgid "Subscription not found"
6298
6585
  msgstr "Subscrição não encontrada"
6299
6586
 
6587
+ msgid "Subscription status"
6588
+ msgstr ""
6589
+
6300
6590
  msgid "Subscription was not persisted - %{error_message}"
6301
6591
  msgstr "A subscrição não era persistente - %{error_message}"
6302
6592
 
@@ -6342,6 +6632,9 @@ msgstr "%s Host(s) removido(s) com êxito."
6342
6632
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6343
6633
  msgstr "Removido com sucesso %{count} host de conteúdo(s) para coleção de host %{host_collection}."
6344
6634
 
6635
+ msgid "Successfully synced capsule."
6636
+ msgstr ""
6637
+
6345
6638
  msgid "Successfully synchronized."
6346
6639
  msgstr "Sincronizado com êxito."
6347
6640
 
@@ -6423,6 +6716,9 @@ msgstr "Sincronizar um ou mais produtos "
6423
6716
  msgid "Sync plan identifier to attach"
6424
6717
  msgstr "Identificador de plano de sinc a ser anexado"
6425
6718
 
6719
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6720
+ msgstr ""
6721
+
6426
6722
  msgid "Sync state"
6427
6723
  msgstr ""
6428
6724
 
@@ -6513,9 +6809,6 @@ msgstr "O ambiente \\\"%s\\\" não pode conter um changeset!"
6513
6809
  msgid "The Alternate Content Source type"
6514
6810
  msgstr ""
6515
6811
 
6516
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6517
- msgstr "A Alocação de subscrição desde que o manifesto importado tenha sido removido. Crie uma nova Alocação de subscriçãos e importe o novo manifesto."
6518
-
6519
6812
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6520
6813
  msgstr ""
6521
6814
 
@@ -6567,9 +6860,6 @@ msgstr ""
6567
6860
  msgid "The field to sort the data by. Defaults to the created date."
6568
6861
  msgstr "O campo com base no qual os dados são classificados. O padrão é a data de criação."
6569
6862
 
6570
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6571
- msgstr ""
6572
-
6573
6863
  msgid "The following hosts have errata that apply to them: "
6574
6864
  msgstr "Os hosts a seguir possuem errata que se aplicam à eles:"
6575
6865
 
@@ -6596,6 +6886,9 @@ msgstr ""
6596
6886
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6597
6887
  msgstr "A lista de ambientes para promover a Versão de Visualização de conteúdo especificado (substituindo a versão mais antiga)"
6598
6888
 
6889
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6890
+ msgstr ""
6891
+
6599
6892
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6600
6893
  msgstr "O manifesto importado na Organização %{subject} não é mais válido. Importe um novo manifesto."
6601
6894
 
@@ -6640,6 +6933,9 @@ msgstr "O caminho %{real_path} não parece ser um repositório válido. Se você
6640
6933
  msgid "The port used by Pulp Crane to provide Docker Registries"
6641
6934
  msgstr "A porta utilizada pelo Pulp Crane para fornecer Registros do Docker"
6642
6935
 
6936
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6937
+ msgstr ""
6938
+
6643
6939
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6644
6940
  msgstr "A promoção do %{content_view} para %{environment} foi concluída. As erratas %{count} estão disponíveis em seus hosts."
6645
6941
 
@@ -6685,14 +6981,20 @@ msgstr "A sincronização de \"%s\" foi concluída. Abaixo está um resumo da no
6685
6981
  msgid "The token key to use for authentication."
6686
6982
  msgstr ""
6687
6983
 
6984
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6985
+ msgstr ""
6986
+
6987
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6988
+ msgstr ""
6989
+
6688
6990
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6689
6991
  msgstr "O tipo de conteúdo. Os tipos a seguir são suportados: 'package' and 'package_group."
6690
6992
 
6691
6993
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6692
6994
  msgstr "O tipo de conteúdo. Os tipos a seguir são suportados: 'package', 'package_group' and 'errata'."
6693
6995
 
6694
- msgid "There are no Subscription Allocations to display"
6695
- msgstr "Não há Alocações de subscrições para exibir"
6996
+ msgid "There are no Manifests to display"
6997
+ msgstr ""
6696
6998
 
6697
6999
  msgid "There are no Subscriptions to display"
6698
7000
  msgstr "Não há Subscrições para exibir"
@@ -6763,6 +7065,9 @@ msgstr "Esta ação deve ser realizada em circunstâncias extremas ou com o obje
6763
7065
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6764
7066
  msgstr ""
6765
7067
 
7068
+ 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."
7069
+ msgstr ""
7070
+
6766
7071
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6767
7072
  msgstr "Este certificado de depuração permite que o usuário visualize os repositórios em qualquer ambiente do navegador."
6768
7073
 
@@ -6802,8 +7107,8 @@ msgstr "Isto está desabilitado porque uma tarefa relacionada ao manifesto está
6802
7107
  msgid "This is disabled because a manifest task is in progress"
6803
7108
  msgstr "Isto está desabilitado porque uma tarefa do manifesto está em andamento"
6804
7109
 
6805
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6806
- msgstr "Isto está desabilitado porque não foi possível fazer nenhuma conexão com a Alocação de subscrição upstream."
7110
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7111
+ msgstr ""
6807
7112
 
6808
7113
  msgid "This is disabled because no manifest exists"
6809
7114
  msgstr "Isto está desabilitado porque não há manifestos"
@@ -6871,6 +7176,9 @@ msgstr "Carimbo de data/hora"
6871
7176
  msgid "Title"
6872
7177
  msgstr "Título"
6873
7178
 
7179
+ msgid "To get started, add this host to a host collection."
7180
+ msgstr ""
7181
+
6874
7182
  msgid "Toggling Simple Content Access will refresh your manifest."
6875
7183
  msgstr "Ativar o Acesso a conteúdo simples atualizará seu manifesto."
6876
7184
 
@@ -6913,6 +7221,9 @@ msgstr ""
6913
7221
  msgid "Traces will be shown here to a user with the appropriate permissions."
6914
7222
  msgstr ""
6915
7223
 
7224
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7225
+ msgstr ""
7226
+
6916
7227
  msgid "Trigger an auto-attach of subscriptions"
6917
7228
  msgstr "Provoca uma anexação automática das subscrições "
6918
7229
 
@@ -6943,12 +7254,18 @@ msgstr ""
6943
7254
  msgid "Type of content: \"cert\", \"gpg_key\""
6944
7255
  msgstr ""
6945
7256
 
7257
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7258
+ msgstr ""
7259
+
6946
7260
  msgid "URL"
6947
7261
  msgstr "URL"
6948
7262
 
6949
7263
  msgid "URL and paths"
6950
7264
  msgstr ""
6951
7265
 
7266
+ msgid "URL and subpaths"
7267
+ msgstr ""
7268
+
6952
7269
  msgid "URL needs to have a trailing /"
6953
7270
  msgstr ""
6954
7271
 
@@ -7150,7 +7467,7 @@ msgstr "Atualizar um plano de sinc"
7150
7467
  msgid "Update an activation key"
7151
7468
  msgstr "Atualizar uma chave de ativação"
7152
7469
 
7153
- msgid "Update an alternate content source"
7470
+ msgid "Update an alternate content source."
7154
7471
  msgstr ""
7155
7472
 
7156
7473
  msgid "Update an environment"
@@ -7357,6 +7674,12 @@ msgstr ""
7357
7674
  msgid "Usage type"
7358
7675
  msgstr ""
7359
7676
 
7677
+ msgid "Use HTTP Proxies"
7678
+ msgstr ""
7679
+
7680
+ msgid "Use HTTP proxies"
7681
+ msgstr ""
7682
+
7360
7683
  msgid "Use remote execution by default"
7361
7684
  msgstr "Usar execução remota por padrão"
7362
7685
 
@@ -7432,6 +7755,12 @@ msgstr ""
7432
7755
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7433
7756
  msgstr ""
7434
7757
 
7758
+ msgid "Version ${versionOne}"
7759
+ msgstr ""
7760
+
7761
+ msgid "Version ${versionTwo}"
7762
+ msgstr ""
7763
+
7435
7764
  msgid "Version details updated."
7436
7765
  msgstr ""
7437
7766
 
@@ -7444,6 +7773,9 @@ msgstr "Versões"
7444
7773
  msgid "Versions "
7445
7774
  msgstr ""
7446
7775
 
7776
+ msgid "Versions to compare"
7777
+ msgstr ""
7778
+
7447
7779
  msgid "Versions to exclusively include in the action"
7448
7780
  msgstr ""
7449
7781
 
@@ -7459,6 +7791,9 @@ msgstr "Visualização %{view} não foi promovida para %{env}"
7459
7791
  msgid "View a report of the affected hosts"
7460
7792
  msgstr "Exibir um relatório dos hosts afetados"
7461
7793
 
7794
+ msgid "View by"
7795
+ msgstr ""
7796
+
7462
7797
  msgid "View matching content"
7463
7798
  msgstr ""
7464
7799
 
@@ -7522,6 +7857,9 @@ msgstr "Se uma cápsula externa deve ou não ser sincronizada após o upload. Pa
7522
7857
  msgid "Whether to include available content attribute in results"
7523
7858
  msgstr "Se deve incluir ou não atributos de conteúdo disponível nos resultados"
7524
7859
 
7860
+ msgid "Whether to turn on Simple Content Access for the organization."
7861
+ msgstr ""
7862
+
7525
7863
  msgid "Workers"
7526
7864
  msgstr "Trabalhadores"
7527
7865
 
@@ -7618,6 +7956,9 @@ msgstr "Sua consulta de pesquisa era inválida. Revise-a e tente novamente. O er
7618
7956
  msgid "Your search returned no matching "
7619
7957
  msgstr ""
7620
7958
 
7959
+ msgid "Your search returned no matching ${name}."
7960
+ msgstr ""
7961
+
7621
7962
  msgid "Your search returned no matching DEBs."
7622
7963
  msgstr ""
7623
7964
 
@@ -7642,6 +7983,9 @@ msgstr "Metadados Yum: %s"
7642
7983
  msgid "a content unit"
7643
7984
  msgstr ""
7644
7985
 
7986
+ msgid "a custom CDN URL"
7987
+ msgstr ""
7988
+
7645
7989
  msgid "a deb package"
7646
7990
  msgstr ""
7647
7991
 
@@ -7813,9 +8157,6 @@ msgstr "nomes de pacotes condicionais para incluir no grupo de pacotes"
7813
8157
  msgid "content release version"
7814
8158
  msgstr "versão do lançamento de conteúdo"
7815
8159
 
7816
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7817
- msgstr ""
7818
-
7819
8160
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7820
8161
  msgstr ""
7821
8162
 
@@ -8089,9 +8430,6 @@ msgstr "rotular o ambiente"
8089
8430
  msgid "label of the repository"
8090
8431
  msgstr "rótulo do repositório"
8091
8432
 
8092
- msgid "limit to only repositories of this type"
8093
- msgstr "limitar a apenas repositórios deste tipo"
8094
-
8095
8433
  msgid "limit to only repositories with this download policy"
8096
8434
  msgstr ""
8097
8435
 
@@ -8209,9 +8547,6 @@ msgstr "obter histórico do manifesto para subscrições"
8209
8547
  msgid "of environment must be unique within one organization"
8210
8548
  msgstr "do ambiente deve ser único dentro de uma organização"
8211
8549
 
8212
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8213
- msgstr "apenas repositórios com pelo menos um do tipo de conteúdo especificado, por exemplo, rpm , erratum"
8214
-
8215
8550
  msgid "only show the repositories readable by this user with this username"
8216
8551
  msgstr ""
8217
8552
 
@@ -8395,9 +8730,6 @@ msgstr ""
8395
8730
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8396
8731
  msgstr ""
8397
8732
 
8398
- msgid "type of repo"
8399
- msgstr "tipo de repositório"
8400
-
8401
8733
  msgid "types of filters"
8402
8734
  msgstr "tipos de filtros"
8403
8735