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 " 选择最新的内容视图或内容视图版本。不能同时设置
52
52
  msgid " RPMs"
53
53
  msgstr " RPM"
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 "${deleteFlow ? '删除' : 'Removing'} 版本 ${versionNameToRemove}"
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 "${pluralize(akResponse.length, 'activation key')} 将移到内容视图 ${selectedCVNameForAK} 中 "
93
105
 
@@ -329,6 +341,24 @@ msgstr "%{used}(共 %{total})"
329
341
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
330
342
  msgstr "无法将 {view_label} 提升到 %{environment_label},因为内容视图和环境不在同一机构中!"
331
343
 
344
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
345
+ msgstr ""
346
+
347
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
348
+ msgstr ""
349
+
350
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
351
+ msgstr ""
352
+
353
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
354
+ msgstr ""
355
+
356
+ 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. "
357
+ msgstr ""
358
+
359
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
360
+ msgstr ""
361
+
332
362
  msgid "(Orphaned)"
333
363
  msgstr "(孤立)"
334
364
 
@@ -548,11 +578,11 @@ msgstr "从 Red Hat Subscription Management 添加被清单消耗的订阅"
548
578
  msgid "Add subscriptions to one or more hosts"
549
579
  msgstr "将订阅添加到一个或多个主机"
550
580
 
551
- msgid "Add to this filter using the 'Add Deb rule' button."
581
+ msgid "Add to a host collection"
552
582
  msgstr ""
553
583
 
554
- msgid "Add to this filter using the 'Add RPM rule' button."
555
- msgstr "使用 'Add RPM 规则' 按钮添加到此过滤器。"
584
+ msgid "Add to this filter using the 'Add Deb rule' button."
585
+ msgstr ""
556
586
 
557
587
  msgid "Add to this filter using the 'Add filter rule' button."
558
588
  msgstr "使用 'Add filter rule' 按钮添加到这个过滤。"
@@ -611,6 +641,9 @@ msgstr ""
611
641
  msgid "All subpaths must have a slash at the end and none at the front"
612
642
  msgstr ""
613
643
 
644
+ msgid "All up to date"
645
+ msgstr ""
646
+
614
647
  msgid "All versions"
615
648
  msgstr "所有版本"
616
649
 
@@ -638,6 +671,9 @@ msgstr "还包括每个主机软件包的最新可升级软件包版本"
638
671
  msgid "Alter a host's host collections"
639
672
  msgstr ""
640
673
 
674
+ msgid "Alternate Content Source HTTP Proxy"
675
+ msgstr ""
676
+
641
677
  msgid "Alternate Content Sources"
642
678
  msgstr ""
643
679
 
@@ -650,7 +686,10 @@ msgstr ""
650
686
  msgid "Alternate content source deleted"
651
687
  msgstr ""
652
688
 
653
- msgid "Alternate content sources"
689
+ msgid "Alternate content source edited"
690
+ msgstr ""
691
+
692
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
654
693
  msgstr ""
655
694
 
656
695
  msgid "Always Use Latest (currently %{version})"
@@ -662,7 +701,7 @@ msgstr "始终更新至最新版本"
662
701
  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."
663
702
  msgstr "池中处理与主机相关的任务执行的 worker 数量。当设置为 0 时,将使用默认队列。需要重新启动 dynflowd/foreman-tasks 服务。"
664
703
 
665
- msgid "An alternate content source can be added by using the \"Add source\" button above."
704
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
666
705
  msgstr ""
667
706
 
668
707
  msgid "An environment is missing a prior"
@@ -703,9 +742,15 @@ msgstr "Ansible 集合"
703
742
  msgid "Applicability Batch Size"
704
743
  msgstr "适用批次数量"
705
744
 
745
+ msgid "Applicable"
746
+ msgstr ""
747
+
706
748
  msgid "Applicable Content Hosts"
707
749
  msgstr "适用的内容主机"
708
750
 
751
+ msgid "Applicable errata apply to at least one package installed on the host."
752
+ msgstr ""
753
+
709
754
  msgid "Application"
710
755
  msgstr "应用"
711
756
 
@@ -881,6 +926,9 @@ msgstr "可用仓库"
881
926
  msgid "Available Schema Versions"
882
927
  msgstr "可用的 Schema 版本"
883
928
 
929
+ msgid "Back"
930
+ msgstr ""
931
+
884
932
  msgid "Backend System Status"
885
933
  msgstr "后端系统状态"
886
934
 
@@ -947,6 +995,12 @@ msgstr "程序漏洞修正"
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 "为主机 %s 批量生成适用性"
952
1006
 
@@ -956,9 +1010,6 @@ msgstr "批量生成主机的适用性"
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 "CDN 配置"
964
1015
 
@@ -1064,6 +1115,9 @@ msgstr "无法将复合版本添加到另外一个复合内容视图中"
1064
1115
  msgid "Cannot add default content view to composite content view"
1065
1116
  msgstr "无法将默认内容视图添加到复合内容视图"
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 "无法将仓库添加到复合内容视图"
1069
1123
 
@@ -1205,6 +1259,9 @@ msgstr "操作前检查服务"
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"
1210
1267
 
@@ -1214,6 +1271,9 @@ msgstr "仓库的 Checksum,目前支援 'sha1' 和 'sha256'。"
1214
1271
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1215
1272
  msgstr "无法为使用按需下载策略的 yum 仓库设置 Checksum 类型。"
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 "清除之前的所有注册,并使用 --force 运行 subscription-manager。"
1219
1279
 
@@ -1229,9 +1289,6 @@ msgstr "单击此处进入任务的任务页面。"
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 "克隆"
1237
1294
 
@@ -1247,6 +1304,9 @@ msgstr "组合的配置集更新"
1247
1304
  msgid "Combined Profile Update for %s"
1248
1305
  msgstr "%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 "组件"
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 "组件"
1267
1333
 
@@ -1412,6 +1478,9 @@ msgstr "內容视图版本没有设置"
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 "元数据中指定的内容视图版本 - '%{name} ' 已经存在。如果要替换现有版本,请删除 %{name}然后再试一次。 "
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 "未设置内容视图和环境以进行注册。"
1417
1486
 
@@ -1424,6 +1493,9 @@ msgstr ""
1424
1493
  msgid "Content Views"
1425
1494
  msgstr "内容视图"
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 "没有上传到 pulp 的内容"
1448
1520
  msgid "Content override search parameters"
1449
1521
  msgstr ""
1450
1522
 
1523
+ msgid "Content source"
1524
+ msgstr ""
1525
+
1451
1526
  msgid "Content source ID"
1452
1527
  msgstr "内容源 ID"
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 "找不到前环境 '%s'"
1655
1733
  msgid "Couldn't find product with id '%s'"
1656
1734
  msgstr "没有找到带有 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 "没有找到仓库 '%s'"
1660
1741
 
@@ -1724,12 +1805,12 @@ msgstr "建立產品"
1724
1805
  msgid "Create a sync plan"
1725
1806
  msgstr "建立同步計劃"
1726
1807
 
1727
- msgid "Create an ACS"
1728
- msgstr ""
1729
-
1730
1808
  msgid "Create an activation key"
1731
1809
  msgstr "建立啟動金鑰"
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 "建立環境"
1735
1816
 
@@ -1739,6 +1820,9 @@ msgstr "在組織中建立環境"
1739
1820
  msgid "Create an upload request"
1740
1821
  msgstr "创建上传请求"
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 "当前机构未设置。"
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 "自定义内容仓库"
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 "資料庫連線"
1798
1888
 
@@ -1928,6 +2018,12 @@ msgstr "默认同步的 OS 用户数据"
1928
2018
  msgid "Default user data for new Operating Systems created from synced content"
1929
2019
  msgstr "从同步内容创建的新操作系统的默认用户数据"
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 "刪除"
1933
2029
 
@@ -2066,7 +2162,7 @@ msgstr "銷毀同步計劃"
2066
2162
  msgid "Destroy an activation key"
2067
2163
  msgstr "销毁一个激活码"
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 "发现"
2129
2225
  msgid "Discover Repositories"
2130
2226
  msgstr "发现软件仓库"
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 "不包括此内容视图数组"
2134
2233
 
@@ -2162,21 +2261,51 @@ msgstr "勘误公告"
2162
2261
  msgid "Edit"
2163
2262
  msgstr "编辑"
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 "编辑 RPM 规则"
2167
2281
 
2282
+ msgid "Edit URL and subpaths"
2283
+ msgstr ""
2284
+
2168
2285
  msgid "Edit content view assignment"
2169
2286
  msgstr ""
2170
2287
 
2288
+ msgid "Edit credentials"
2289
+ msgstr ""
2290
+
2291
+ msgid "Edit details"
2292
+ msgstr ""
2293
+
2171
2294
  msgid "Edit filter rule"
2172
2295
  msgstr "列表过滤规则"
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 "使用最新标志设置内容视图或设置内容视图版本"
2201
2330
  msgid "Either set the latest content view or the content view version. Cannot set both"
2202
2331
  msgstr "设置最新的内容视图或内容视图版本。不能同时设置"
2203
2332
 
2333
+ msgid "Empty content view versions"
2334
+ msgstr ""
2335
+
2204
2336
  msgid "Enable"
2205
2337
  msgstr "启用"
2206
2338
 
@@ -2219,6 +2351,9 @@ msgstr "启用跟踪"
2219
2351
  msgid "Enable a repository from the set"
2220
2352
  msgstr "从集合中启用存储库"
2221
2353
 
2354
+ msgid "Enable repository sets"
2355
+ msgstr ""
2356
+
2222
2357
  msgid "Enable simple content access for a manifest"
2223
2358
  msgstr "启用对一个清单的简单内容访问"
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 "权利"
2266
2404
 
@@ -2516,6 +2654,9 @@ msgstr "以訂閱來篩選產品"
2516
2654
  msgid "Filter products by sync plan id"
2517
2655
  msgstr "透過同步計畫 ID 來篩選產品"
2518
2656
 
2657
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2658
+ msgstr ""
2659
+
2519
2660
  msgid "Filter rule added"
2520
2661
  msgstr "添加的过滤规则"
2521
2662
 
@@ -2552,6 +2693,9 @@ msgstr "删除的过滤"
2552
2693
  msgid "Filters will appear here when the filter is created."
2553
2694
  msgstr ""
2554
2695
 
2696
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2697
+ msgstr ""
2698
+
2555
2699
  msgid "Finish"
2556
2700
  msgstr "完成"
2557
2701
 
@@ -2613,6 +2757,9 @@ msgstr "有完整權利"
2613
2757
  msgid "GPG Key URL"
2614
2758
  msgstr "GPG 密钥 URL"
2615
2759
 
2760
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2761
+ msgstr ""
2762
+
2616
2763
  msgid "Generate and Download"
2617
2764
  msgstr "生成并下载"
2618
2765
 
@@ -2823,6 +2970,9 @@ msgstr "没有找到带有 ID %s 的主机。"
2823
2970
  msgid "Hosts"
2824
2971
  msgstr "主机"
2825
2972
 
2973
+ msgid "Hosts to update"
2974
+ msgstr ""
2975
+
2826
2976
  msgid "Hosts with Installable Errata"
2827
2977
  msgstr "有可安装勘误的主机"
2828
2978
 
@@ -2901,6 +3051,9 @@ msgstr "同步計劃的 ID"
2901
3051
  msgid "ID: %s doesn't exist "
2902
3052
  msgstr "ID:%s 不存在 "
2903
3053
 
3054
+ 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."
3055
+ msgstr ""
3056
+
2904
3057
  msgid "Id of a deb package to find repositories that contain the deb"
2905
3058
  msgstr "用来查找包括 deb 的仓库的 deb 软件包 ID"
2906
3059
 
@@ -2916,6 +3069,9 @@ msgstr "用来查找包括 ansible 集合的仓库的 ansible 集合 ID"
2916
3069
  msgid "Id of an erratum to find repositories that contain the erratum"
2917
3070
  msgstr "勘误ID,以查找包含该勘误的仓库"
2918
3071
 
3072
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3073
+ msgstr ""
3074
+
2919
3075
  msgid "Id of the content host"
2920
3076
  msgstr "内容主机 ID"
2921
3077
 
@@ -2988,6 +3144,9 @@ msgstr ""
2988
3144
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2989
3145
  msgstr "指定後,使用相符的 ID 與數量,移除訂閱服務的第一個項目"
2990
3146
 
3147
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3148
+ msgstr ""
3149
+
2991
3150
  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."
2992
3151
  msgstr ""
2993
3152
 
@@ -3000,6 +3159,9 @@ msgstr "如果这个被启用,使用远程执行替代 katello-agent 来进行
3000
3159
  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."
3001
3160
  msgstr ""
3002
3161
 
3162
+ 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/...'."
3163
+ msgstr ""
3164
+
3003
3165
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3004
3166
  msgstr "如果为 true,则仅返回与有效订阅关联的仓库集"
3005
3167
 
@@ -3033,6 +3195,9 @@ msgstr "忽略 'subscription-manager register' 命令的 subscription-manager
3033
3195
  msgid "Ignore subscriptions that are unavailable to the specified host"
3034
3196
  msgstr "忽略對於特定主機不可用的訂閱服務"
3035
3197
 
3198
+ msgid "Ignored hosts"
3199
+ msgstr ""
3200
+
3036
3201
  msgid "Immediate"
3037
3202
  msgstr "立即"
3038
3203
 
@@ -3177,9 +3342,6 @@ msgstr "索引模块流"
3177
3342
  msgid "Index package groups"
3178
3343
  msgstr "為套件群組製作索引"
3179
3344
 
3180
- msgid "Indicate the source type."
3181
- msgstr ""
3182
-
3183
3345
  msgid "Informable Type must be one of the following [ %{list} ]"
3184
3346
  msgstr "信息类型需要是 [ %{list} ] 之一"
3185
3347
 
@@ -3249,12 +3411,15 @@ msgstr ""
3249
3411
  msgid "Installable"
3250
3412
  msgstr "可安装"
3251
3413
 
3252
- msgid "Installable errata"
3414
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3253
3415
  msgstr ""
3254
3416
 
3255
3417
  msgid "Installable errata from content view"
3256
3418
  msgstr ""
3257
3419
 
3420
+ msgid "Installable updates"
3421
+ msgstr ""
3422
+
3258
3423
  msgid "Installation of errata requested: %{errata}"
3259
3424
  msgstr "要求安装的勘误:%{errata}"
3260
3425
 
@@ -3315,9 +3480,6 @@ msgstr "间隔设置不正确"
3315
3480
  msgid "Invalid"
3316
3481
  msgstr "无效"
3317
3482
 
3318
- msgid "Invalid SSL CA certificate given for CDN"
3319
- msgstr "为 CDN 指定无效的 SSL CA 证书"
3320
-
3321
3483
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3322
3484
  msgstr "内容视图 ID 的关联无效。内容视图必须与要保存的内容视图版本匹配"
3323
3485
 
@@ -3366,6 +3528,12 @@ msgstr "提供了无效的参数 - content_type 必須是 %s 之一"
3366
3528
  msgid "Invalid params provided - date_type must be one of %s"
3367
3529
  msgstr "提供了无效参数 - date_type 必须是 %s 之一"
3368
3530
 
3531
+ msgid "Invalid params provided - with_content must be one of %s"
3532
+ msgstr ""
3533
+
3534
+ msgid "Invalid path provided. Content can be only imported from file system. "
3535
+ msgstr ""
3536
+
3369
3537
  msgid "Invalid release version: [%s]"
3370
3538
  msgstr ""
3371
3539
 
@@ -3387,6 +3555,9 @@ msgstr "发布"
3387
3555
  msgid "Issued from"
3388
3556
  msgstr ""
3389
3557
 
3558
+ msgid "Items will appear here when a filter rule is added."
3559
+ msgstr ""
3560
+
3390
3561
  msgid "Job '${description}' completed"
3391
3562
  msgstr ""
3392
3563
 
@@ -3462,15 +3633,18 @@ msgstr "内容标签"
3462
3633
  msgid "Label of the content view"
3463
3634
  msgstr ""
3464
3635
 
3465
- msgid "Last Refresh"
3636
+ msgid "Last check-in:"
3466
3637
  msgstr ""
3467
3638
 
3468
- msgid "Last check-in:"
3639
+ msgid "Last checkin"
3469
3640
  msgstr ""
3470
3641
 
3471
3642
  msgid "Last published"
3472
3643
  msgstr "最新发布的"
3473
3644
 
3645
+ msgid "Last refresh"
3646
+ msgstr ""
3647
+
3474
3648
  msgid "Last refresh :"
3475
3649
  msgstr ""
3476
3650
 
@@ -3489,6 +3663,9 @@ msgstr "最新版本"
3489
3663
  msgid "Learn more about adding Subscription Manifests"
3490
3664
  msgstr "了解有关添加订阅清单的更多信息"
3491
3665
 
3666
+ msgid "Legacy content host UI"
3667
+ msgstr ""
3668
+
3492
3669
  msgid "Less than"
3493
3670
  msgstr "小于"
3494
3671
 
@@ -3555,6 +3732,9 @@ msgstr "将内容限制为主机内容视图版本中的可用内容"
3555
3732
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3556
3733
  msgstr "将内容限制为仅在主机或激活码的内容视图版本中,以及生命周期环境中可用的内容。"
3557
3734
 
3735
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3736
+ msgstr ""
3737
+
3558
3738
  msgid "Limit to environment"
3559
3739
  msgstr "限制到环境"
3560
3740
 
@@ -3585,6 +3765,9 @@ msgstr "列出所有 :resource_id"
3585
3765
  msgid "List all organizations"
3586
3766
  msgstr "列出所有机构"
3587
3767
 
3768
+ msgid "List alternate content sources."
3769
+ msgstr ""
3770
+
3588
3771
  msgid "List an activation key's subscriptions"
3589
3772
  msgstr "列出激活码的订阅"
3590
3773
 
@@ -3657,9 +3840,6 @@ msgstr "同步计划的产品列表"
3657
3840
  msgid "List of alternate content source IDs"
3658
3841
  msgstr ""
3659
3842
 
3660
- msgid "List of alternate_content_sources"
3661
- msgstr ""
3662
-
3663
3843
  msgid "List of component content view version ids for composite views"
3664
3844
  msgstr "复合视图的组件内容视图版本 ID 列表"
3665
3845
 
@@ -3750,6 +3930,9 @@ msgstr "机构中的仓库列表"
3750
3930
  msgid "List of repository ids"
3751
3931
  msgstr "軟體庫 ID 清單"
3752
3932
 
3933
+ msgid "List of resources types that will be automatically associated"
3934
+ msgstr ""
3935
+
3753
3936
  msgid "List of subscription products in a subscription"
3754
3937
  msgstr "訂閱中的訂閱產品清單"
3755
3938
 
@@ -3954,6 +4137,9 @@ msgstr ""
3954
4137
  msgid "Multi-entitlement"
3955
4138
  msgstr "多权利"
3956
4139
 
4140
+ msgid "Multiple environments are not supported."
4141
+ msgstr ""
4142
+
3957
4143
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3958
4144
  msgstr "必须最少提供 mandatory_package_names、optional_package_names、conditional_package_names、 default_package_names 参数中的一个"
3959
4145
 
@@ -3966,6 +4152,9 @@ msgstr "不适用"
3966
4152
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3967
4153
  msgstr "注:Katello-agent 已弃用并将在 %s 中删除。考虑迁移到远程执行。"
3968
4154
 
4155
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4156
+ msgstr ""
4157
+
3969
4158
  msgid ""
3970
4159
  "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"
3971
4160
  " %{repos}"
@@ -3973,6 +4162,11 @@ msgstr ""
3973
4162
  "注意:无法完全导出“%{organization}”机构的库,因为它包含没有“立即”下载策略的仓库。更新下载策略并同步受影响的仓库,以将其包括在导出中。\n"
3974
4163
  " %{repos}"
3975
4164
 
4165
+ msgid ""
4166
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4167
+ " %{repos}"
4168
+ msgstr ""
4169
+
3976
4170
  msgid ""
3977
4171
  "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"
3978
4172
  " %{repos}"
@@ -3986,6 +4180,12 @@ msgstr ""
3986
4180
  msgid "Name"
3987
4181
  msgstr "名称"
3988
4182
 
4183
+ msgid "Name and label of default content view should not be changed"
4184
+ msgstr ""
4185
+
4186
+ msgid "Name is a required parameter."
4187
+ msgstr ""
4188
+
3989
4189
  msgid "Name of new activation key"
3990
4190
  msgstr "新啟動金鑰的名稱"
3991
4191
 
@@ -4031,6 +4231,12 @@ msgstr ""
4031
4231
  msgid "Never Synced"
4032
4232
  msgstr "從未同步"
4033
4233
 
4234
+ msgid "Never checked in"
4235
+ msgstr ""
4236
+
4237
+ msgid "Never registered"
4238
+ msgstr ""
4239
+
4034
4240
  msgid "New Errata"
4035
4241
  msgstr "新勘誤"
4036
4242
 
@@ -4124,6 +4330,9 @@ msgstr "未提供內容。"
4124
4330
  msgid "No content ids provided"
4125
4331
  msgstr "未提供內容 ID"
4126
4332
 
4333
+ msgid "No content in selected versions."
4334
+ msgstr ""
4335
+
4127
4336
  msgid "No content view history events found."
4128
4337
  msgstr "找不到内容视图历史记录事件。"
4129
4338
 
@@ -4175,6 +4384,9 @@ msgstr ""
4175
4384
  msgid "No host collections found."
4176
4385
  msgstr "找不到主机集合。"
4177
4386
 
4387
+ msgid "No host collections yet"
4388
+ msgstr ""
4389
+
4178
4390
  msgid "No hosts have been specified."
4179
4391
  msgstr "没有指定主机。"
4180
4392
 
@@ -4199,6 +4411,9 @@ msgstr "没有找到清单。导入内容之前导入带有适当订阅的清单
4199
4411
  msgid "No matching "
4200
4412
  msgstr "未匹配 "
4201
4413
 
4414
+ msgid "No matching ${name} found."
4415
+ msgstr ""
4416
+
4202
4417
  msgid "No matching ${selectedContentType} found"
4203
4418
  msgstr "没有找到匹配的 ${selectedContentType}。"
4204
4419
 
@@ -4289,6 +4504,9 @@ msgstr "没有需要重新启动的进程"
4289
4504
  msgid "No products are enabled."
4290
4505
  msgstr "没有启用任何产品。"
4291
4506
 
4507
+ msgid "No profiles to show"
4508
+ msgstr ""
4509
+
4292
4510
  msgid "No pulp workers running."
4293
4511
  msgstr "沒有 pulp 工作者執行中。"
4294
4512
 
@@ -4424,6 +4642,9 @@ msgstr "显示可用于“主机”或“ activation_key”的订阅的对象"
4424
4642
  msgid "On Demand"
4425
4643
  msgstr "按需"
4426
4644
 
4645
+ msgid "On the RHUA Instance, check the available repositories."
4646
+ msgstr ""
4647
+
4427
4648
  msgid "On-disk location for exported repositories"
4428
4649
  msgstr "导入仓库的磁盘位置"
4429
4650
 
@@ -4802,6 +5023,9 @@ msgstr "请从下面的列表中选择一个,您将被重定向。"
4802
5023
  msgid "Please wait while the task starts.."
4803
5024
  msgstr "请等待任务启动.."
4804
5025
 
5026
+ msgid "Please wait..."
5027
+ msgstr ""
5028
+
4805
5029
  msgid "Policy to set for mirroring content. Must be one of %s."
4806
5030
  msgstr "为镜像内容设置的策略。必须是 %s 之一。"
4807
5031
 
@@ -4893,9 +5117,18 @@ msgstr "在 Candlepin 中找不到 ID 为 %s 的产品。跳过内容导入。"
4893
5117
  msgid "Product: '%{product}', Repository: '%{repository}'"
4894
5118
  msgstr "产品:'%{product}',参考:'%{repository}'"
4895
5119
 
5120
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5121
+ msgstr ""
5122
+
4896
5123
  msgid "Products"
4897
5124
  msgstr "产品"
4898
5125
 
5126
+ msgid "Products updated."
5127
+ msgstr ""
5128
+
5129
+ msgid "Profiles"
5130
+ msgstr ""
5131
+
4899
5132
  msgid "Promote"
4900
5133
  msgstr "升级"
4901
5134
 
@@ -5073,6 +5306,9 @@ msgstr "RAM: %s GB"
5073
5306
  msgid "RH Repos"
5074
5307
  msgstr "RH 仓库"
5075
5308
 
5309
+ msgid "RHUI"
5310
+ msgstr ""
5311
+
5076
5312
  msgid "RPM"
5077
5313
  msgstr "RPM"
5078
5314
 
@@ -5085,6 +5321,12 @@ msgstr "RPM 软件包"
5085
5321
  msgid "RPM name"
5086
5322
  msgstr "RPM名称"
5087
5323
 
5324
+ msgid "RPM package groups"
5325
+ msgstr ""
5326
+
5327
+ msgid "RPM package updates"
5328
+ msgstr ""
5329
+
5088
5330
  msgid "RPM packages"
5089
5331
  msgstr ""
5090
5332
 
@@ -5151,6 +5393,9 @@ msgstr ""
5151
5393
  msgid "Red Hat content will be consumed from the {type}."
5152
5394
  msgstr ""
5153
5395
 
5396
+ msgid "Red Hat content will be consumed from {type}."
5397
+ msgstr ""
5398
+
5154
5399
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5155
5400
  msgstr ""
5156
5401
 
@@ -5178,7 +5423,7 @@ msgstr "刷新清单"
5178
5423
  msgid "Refresh alternate content sources"
5179
5424
  msgstr ""
5180
5425
 
5181
- msgid "Refresh an alternate content source"
5426
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5182
5427
  msgstr ""
5183
5428
 
5184
5429
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5196,6 +5441,9 @@ msgstr "注册具有订阅和信息的主机"
5196
5441
  msgid "Register host '%s' before attaching subscriptions"
5197
5442
  msgstr "在附加订阅之前注册主机 '%s'"
5198
5443
 
5444
+ msgid "Registered"
5445
+ msgstr ""
5446
+
5199
5447
  msgid "Registered by"
5200
5448
  msgstr ""
5201
5449
 
@@ -5322,8 +5570,8 @@ msgstr ""
5322
5570
  msgid "Remove one or more host collections from one or more hosts"
5323
5571
  msgstr "从一个或多个主机中删除一个或多个主机集合"
5324
5572
 
5325
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5326
- msgstr "从上游订阅分配中删除一个或多个订阅"
5573
+ msgid "Remove one or more subscriptions from an upstream manifest"
5574
+ msgstr ""
5327
5575
 
5328
5576
  msgid "Remove package"
5329
5577
  msgstr "删除软件包"
@@ -5373,6 +5621,9 @@ msgstr "正在删除软件包组..."
5373
5621
  msgid "Removing Package..."
5374
5622
  msgstr "正在删除软件包..."
5375
5623
 
5624
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5625
+ msgstr ""
5626
+
5376
5627
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5377
5628
  msgstr "从所有环境中移出此版本不会删除此版本。版本仍可用于以后的提升。"
5378
5629
 
@@ -5613,9 +5864,6 @@ msgstr "返回启用的内容类型"
5613
5864
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5614
5865
  msgstr "返回可以添加及当前被添加的内容。支持值“ content_view_filter”"
5615
5866
 
5616
- msgid "Review Details"
5617
- msgstr ""
5618
-
5619
5867
  msgid "Review affected environment"
5620
5868
  msgstr ""
5621
5869
 
@@ -5625,6 +5873,9 @@ msgstr ""
5625
5873
  msgid "Review details"
5626
5874
  msgstr "审阅详情"
5627
5875
 
5876
+ msgid "Review the information below and click "
5877
+ msgstr ""
5878
+
5628
5879
  msgid "Review your currently selected changes for "
5629
5880
  msgstr "查看您当前选择的更改 "
5630
5881
 
@@ -5664,9 +5915,6 @@ msgstr "SSL CA 内容凭证"
5664
5915
  msgid "SSL CA certificate"
5665
5916
  msgstr ""
5666
5917
 
5667
- msgid "SSL Cert"
5668
- msgstr ""
5669
-
5670
5918
  msgid "SSL client certificate"
5671
5919
  msgstr ""
5672
5920
 
@@ -5796,6 +6044,9 @@ msgstr ""
5796
6044
  msgid "Select an environment above"
5797
6045
  msgstr ""
5798
6046
 
6047
+ msgid "Select an option"
6048
+ msgstr ""
6049
+
5799
6050
  msgid "Select an organization"
5800
6051
  msgstr "选择一个机构"
5801
6052
 
@@ -5835,6 +6086,12 @@ msgstr ""
5835
6086
  msgid "Select page"
5836
6087
  msgstr "选择页"
5837
6088
 
6089
+ msgid "Select products"
6090
+ msgstr ""
6091
+
6092
+ msgid "Select products to associate to this source."
6093
+ msgstr ""
6094
+
5838
6095
  msgid "Select row"
5839
6096
  msgstr "选择行"
5840
6097
 
@@ -5952,7 +6209,7 @@ msgstr "显示所有"
5952
6209
  msgid "Show an activation key"
5953
6210
  msgstr "顯示啟動金鑰"
5954
6211
 
5955
- msgid "Show an alternate content source"
6212
+ msgid "Show an alternate content source."
5956
6213
  msgstr ""
5957
6214
 
5958
6215
  msgid "Show an environment"
@@ -6003,6 +6260,9 @@ msgstr "为 '%{subject}' 禁用了简单内容访问。"
6003
6260
  msgid "Simple Content Access has been enabled for '%{subject}'."
6004
6261
  msgstr "已为 '%{subject}' 启用了简单内容访问。"
6005
6262
 
6263
+ msgid "Simplified"
6264
+ msgstr ""
6265
+
6006
6266
  msgid "Single content view consisting of e.g. repositories"
6007
6267
  msgstr "包含例如仓库的单一内容视图"
6008
6268
 
@@ -6039,7 +6299,7 @@ msgstr "在内容视图发布中默认解决 RPM 的依赖关系,默认为 fal
6039
6299
  msgid "Solve dependencies"
6040
6300
  msgstr "解决依赖关系"
6041
6301
 
6042
- msgid "Some hosts are ignored!"
6302
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6043
6303
  msgstr ""
6044
6304
 
6045
6305
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6063,15 +6323,15 @@ msgstr "添加过滤规则时出现问题!${getResponseErrorMsgs(error.respons
6063
6323
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6064
6324
  msgstr "创建过滤器时出现问题!${getResponseErrorMsgs(error.response)}"
6065
6325
 
6326
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6327
+ msgstr ""
6328
+
6066
6329
  msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6067
6330
  msgstr "删除过滤规则时出错!${getResponseErrorMsgs(error.response)}"
6068
6331
 
6069
6332
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6070
6333
  msgstr "删除过滤器时出错!${getResponseErrorMsgs(error.response)}"
6071
6334
 
6072
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6073
- msgstr ""
6074
-
6075
6335
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
6076
6336
  msgstr "删除此过滤器时出错!${getResponseErrorMsgs(error.response)}"
6077
6337
 
@@ -6117,10 +6377,13 @@ msgstr ""
6117
6377
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6118
6378
  msgstr "获取版本详情时出现错误。${getResponseErrorMsgs(error.response)}"
6119
6379
 
6380
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6381
+ msgstr ""
6382
+
6120
6383
  msgid "Something went wrong while loading the content views. See the logs for more information"
6121
6384
  msgstr ""
6122
6385
 
6123
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6386
+ msgid "Something went wrong while refreshing alternate content sources: "
6124
6387
  msgstr ""
6125
6388
 
6126
6389
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6135,6 +6398,9 @@ msgstr "获取软件包组时出错!${getResponseErrorMsgs(error.response)}"
6135
6398
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6136
6399
  msgstr "获取激活码时出错! ${getResponseErrorMsgs(error.response)}"
6137
6400
 
6401
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6402
+ msgstr ""
6403
+
6138
6404
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6139
6405
  msgstr "获取内容视图组件时出错! ${getResponseErrorMsgs(error.response)}"
6140
6406
 
@@ -6153,9 +6419,33 @@ msgstr "获取内容视图历史记录时出错! ${getResponseErrorMsgs(error.
6153
6419
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6154
6420
  msgstr "获取内容视图版本时出错! ${getResponseErrorMsgs(error.response)}"
6155
6421
 
6422
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6423
+ msgstr ""
6424
+
6425
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6426
+ msgstr ""
6427
+
6428
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6429
+ msgstr ""
6430
+
6431
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6432
+ msgstr ""
6433
+
6156
6434
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6157
6435
  msgstr "获取主机时出错!${getResponseErrorMsgs(error.response)}"
6158
6436
 
6437
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6438
+ msgstr ""
6439
+
6440
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6441
+ msgstr ""
6442
+
6443
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6444
+ msgstr ""
6445
+
6446
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6447
+ msgstr ""
6448
+
6159
6449
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6160
6450
  msgstr "获取仓库类型时出错!${getResponseErrorMsgs(error.response)}"
6161
6451
 
@@ -6240,9 +6530,6 @@ msgstr ""
6240
6530
  msgid "Subscription"
6241
6531
  msgstr "订阅"
6242
6532
 
6243
- msgid "Subscription Allocation"
6244
- msgstr "订阅分配"
6245
-
6246
6533
  msgid "Subscription Details"
6247
6534
  msgstr "订阅详情"
6248
6535
 
@@ -6300,6 +6587,9 @@ msgstr "订阅清单文件"
6300
6587
  msgid "Subscription not found"
6301
6588
  msgstr "没有找到订阅"
6302
6589
 
6590
+ msgid "Subscription status"
6591
+ msgstr ""
6592
+
6303
6593
  msgid "Subscription was not persisted - %{error_message}"
6304
6594
  msgstr "订阅没有持久性 - %{error_message}"
6305
6595
 
@@ -6345,6 +6635,9 @@ msgstr "成功删除 %s 主机。"
6345
6635
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6346
6636
  msgstr "已成功从主机集 %{host_collection} 中删除 %{count} 个内容主机。"
6347
6637
 
6638
+ msgid "Successfully synced capsule."
6639
+ msgstr ""
6640
+
6348
6641
  msgid "Successfully synchronized."
6349
6642
  msgstr "同步成功。"
6350
6643
 
@@ -6426,6 +6719,9 @@ msgstr "同步一个或多个产品"
6426
6719
  msgid "Sync plan identifier to attach"
6427
6720
  msgstr "同步计划标识符以附加"
6428
6721
 
6722
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6723
+ msgstr ""
6724
+
6429
6725
  msgid "Sync state"
6430
6726
  msgstr "同步状态"
6431
6727
 
@@ -6516,9 +6812,6 @@ msgstr "'%s' 环境不能包括 changeset!"
6516
6812
  msgid "The Alternate Content Source type"
6517
6813
  msgstr ""
6518
6814
 
6519
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6520
- msgstr "提供导入清单的订阅分配已被删除。请创建新的订阅分配并导入新清单。"
6521
-
6522
6815
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6523
6816
  msgstr "从其中接收会话令牌的 URL,如与 Automation Hub 一起使用。"
6524
6817
 
@@ -6570,9 +6863,6 @@ msgstr "导出的内容视图版本 '%{content_view} %{current}' 无法从版本
6570
6863
  msgid "The field to sort the data by. Defaults to the created date."
6571
6864
  msgstr "数据排序依据的字段。默认为创建日期。"
6572
6865
 
6573
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6574
- msgstr ""
6575
-
6576
6866
  msgid "The following hosts have errata that apply to them: "
6577
6867
  msgstr "以下主机有应用到它们的勘误:"
6578
6868
 
@@ -6599,6 +6889,9 @@ msgstr ""
6599
6889
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6600
6890
  msgstr "将特定内容视图版本升级到的环境列表(以替换较旧的版本)。"
6601
6891
 
6892
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6893
+ msgstr ""
6894
+
6602
6895
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6603
6896
  msgstr "在机构 %{subject} 中导入的清单不再有效。请导入一个新的清单。"
6604
6897
 
@@ -6643,6 +6936,9 @@ msgstr "路径 %{real_path} 似乎不是有效的仓库。如果您认为这
6643
6936
  msgid "The port used by Pulp Crane to provide Docker Registries"
6644
6937
  msgstr "Pulp Crane 用于提供 Docker registry 的端口"
6645
6938
 
6939
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6940
+ msgstr ""
6941
+
6646
6942
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6647
6943
  msgstr "提升%{content_view}至%{environment}已经完成。%{count} 个勘误表可用于您的主机。"
6648
6944
 
@@ -6688,14 +6984,20 @@ msgstr "同步 \"%s\" 已完成。以下是新勘误的摘要。"
6688
6984
  msgid "The token key to use for authentication."
6689
6985
  msgstr "用于身份验证的令牌密钥。"
6690
6986
 
6987
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6988
+ msgstr ""
6989
+
6990
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6991
+ msgstr ""
6992
+
6691
6993
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6692
6994
  msgstr "内容类型。支持以下类型:'package' 和 'package_group。"
6693
6995
 
6694
6996
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6695
6997
  msgstr "内容类型。支持以下类型:“ package”,“ package_group”和“ errata”。"
6696
6998
 
6697
- msgid "There are no Subscription Allocations to display"
6698
- msgstr "没有要显示的订阅分配"
6999
+ msgid "There are no Manifests to display"
7000
+ msgstr ""
6699
7001
 
6700
7002
  msgid "There are no Subscriptions to display"
6701
7003
  msgstr "没有可显示的订阅"
@@ -6766,6 +7068,9 @@ msgstr "只有在极端情况下或进行调试时才应采取此操作。"
6766
7068
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6767
7069
  msgstr "此操作使用 katello-agent,当前已禁用。改为使用远程执行。"
6768
7070
 
7071
+ 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."
7072
+ msgstr ""
7073
+
6769
7074
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6770
7075
  msgstr "此憑證能讓使用者透過瀏覽器檢視任何環境中的軟體庫。"
6771
7076
 
@@ -6805,8 +7110,8 @@ msgstr "由于清单相关的任务正在进行中,因此此功能被禁用。
6805
7110
  msgid "This is disabled because a manifest task is in progress"
6806
7111
  msgstr "由于清单任务正在进行中,因此已禁用"
6807
7112
 
6808
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6809
- msgstr "由于无法与上游订阅分配建立任何连接,因此禁用了此功能。"
7113
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7114
+ msgstr ""
6810
7115
 
6811
7116
  msgid "This is disabled because no manifest exists"
6812
7117
  msgstr "这是禁用的,因为不存在清单"
@@ -6874,6 +7179,9 @@ msgstr "时间戳"
6874
7179
  msgid "Title"
6875
7180
  msgstr "提示"
6876
7181
 
7182
+ msgid "To get started, add this host to a host collection."
7183
+ msgstr ""
7184
+
6877
7185
  msgid "Toggling Simple Content Access will refresh your manifest."
6878
7186
  msgstr "切换简单内容访问将刷新您的清单。"
6879
7187
 
@@ -6916,6 +7224,9 @@ msgstr "需要登出的跟踪无法远程重启"
6916
7224
  msgid "Traces will be shown here to a user with the appropriate permissions."
6917
7225
  msgstr ""
6918
7226
 
7227
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7228
+ msgstr ""
7229
+
6919
7230
  msgid "Trigger an auto-attach of subscriptions"
6920
7231
  msgstr "触发订阅的自动附加"
6921
7232
 
@@ -6946,12 +7257,18 @@ msgstr "内容类型"
6946
7257
  msgid "Type of content: \"cert\", \"gpg_key\""
6947
7258
  msgstr "内容类型:\"cert\",\"gpg_key\""
6948
7259
 
7260
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7261
+ msgstr ""
7262
+
6949
7263
  msgid "URL"
6950
7264
  msgstr "URL"
6951
7265
 
6952
7266
  msgid "URL and paths"
6953
7267
  msgstr ""
6954
7268
 
7269
+ msgid "URL and subpaths"
7270
+ msgstr ""
7271
+
6955
7272
  msgid "URL needs to have a trailing /"
6956
7273
  msgstr "URL 需要一个末尾的 /"
6957
7274
 
@@ -7153,7 +7470,7 @@ msgstr "更新同步計畫"
7153
7470
  msgid "Update an activation key"
7154
7471
  msgstr "更新一个激活码"
7155
7472
 
7156
- msgid "Update an alternate content source"
7473
+ msgid "Update an alternate content source."
7157
7474
  msgstr ""
7158
7475
 
7159
7476
  msgid "Update an environment"
@@ -7360,6 +7677,12 @@ msgstr "主机使用"
7360
7677
  msgid "Usage type"
7361
7678
  msgstr ""
7362
7679
 
7680
+ msgid "Use HTTP Proxies"
7681
+ msgstr ""
7682
+
7683
+ msgid "Use HTTP proxies"
7684
+ msgstr ""
7685
+
7363
7686
  msgid "Use remote execution by default"
7364
7687
  msgstr "默认情况下使用远程执行"
7365
7688
 
@@ -7435,6 +7758,12 @@ msgstr "版本 ${versionNameToRemove} 将从所有环境中删除。它将不再
7435
7758
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7436
7759
  msgstr "版本 ${versionNameToRemove} 将从列出的环境中删除。它将不再可用于提升。"
7437
7760
 
7761
+ msgid "Version ${versionOne}"
7762
+ msgstr ""
7763
+
7764
+ msgid "Version ${versionTwo}"
7765
+ msgstr ""
7766
+
7438
7767
  msgid "Version details updated."
7439
7768
  msgstr "更新的版本详情"
7440
7769
 
@@ -7447,6 +7776,9 @@ msgstr "版本"
7447
7776
  msgid "Versions "
7448
7777
  msgstr ""
7449
7778
 
7779
+ msgid "Versions to compare"
7780
+ msgstr ""
7781
+
7450
7782
  msgid "Versions to exclusively include in the action"
7451
7783
  msgstr ""
7452
7784
 
@@ -7462,6 +7794,9 @@ msgstr "视图 %{view} 已被提升为 %{env}"
7462
7794
  msgid "View a report of the affected hosts"
7463
7795
  msgstr "查看受影响主机的报告"
7464
7796
 
7797
+ msgid "View by"
7798
+ msgstr ""
7799
+
7465
7800
  msgid "View matching content"
7466
7801
  msgstr "显示匹配内容"
7467
7802
 
@@ -7525,6 +7860,9 @@ msgstr "上传后是否同步外部 capsule。默认值:true"
7525
7860
  msgid "Whether to include available content attribute in results"
7526
7861
  msgstr "是否在结果中包括可用的内容属性"
7527
7862
 
7863
+ msgid "Whether to turn on Simple Content Access for the organization."
7864
+ msgstr ""
7865
+
7528
7866
  msgid "Workers"
7529
7867
  msgstr "工作节点"
7530
7868
 
@@ -7621,6 +7959,9 @@ msgstr "您的搜索查询无效。请对其进行修改,然后重试。完整
7621
7959
  msgid "Your search returned no matching "
7622
7960
  msgstr "您的搜索没有返回匹配"
7623
7961
 
7962
+ msgid "Your search returned no matching ${name}."
7963
+ msgstr ""
7964
+
7624
7965
  msgid "Your search returned no matching DEBs."
7625
7966
  msgstr ""
7626
7967
 
@@ -7645,6 +7986,9 @@ msgstr "Yum 元数据:%s"
7645
7986
  msgid "a content unit"
7646
7987
  msgstr "一个内容单元"
7647
7988
 
7989
+ msgid "a custom CDN URL"
7990
+ msgstr ""
7991
+
7648
7992
  msgid "a deb package"
7649
7993
  msgstr "一个 deb 软件包"
7650
7994
 
@@ -7816,9 +8160,6 @@ msgstr "要包含在软件包组中的条件软件包名称"
7816
8160
  msgid "content release version"
7817
8161
  msgstr "内容发行版本"
7818
8162
 
7819
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7820
- msgstr "内容类型('deb'、'docker_manifest'、'file'、'ostree'、'rpm'、'srpm')"
7821
-
7822
8163
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7823
8164
  msgstr "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7824
8165
 
@@ -8092,9 +8433,6 @@ msgstr "環境的標籤"
8092
8433
  msgid "label of the repository"
8093
8434
  msgstr "仓库标签"
8094
8435
 
8095
- msgid "limit to only repositories of this type"
8096
- msgstr "仅限此类型的仓库"
8097
-
8098
8436
  msgid "limit to only repositories with this download policy"
8099
8437
  msgstr "限制为仅具有此下载策略的仓库"
8100
8438
 
@@ -8212,9 +8550,6 @@ msgstr "取得給訂閱服務使用的清單歷史"
8212
8550
  msgid "of environment must be unique within one organization"
8213
8551
  msgstr "一个组织内环境必须是唯一的"
8214
8552
 
8215
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8216
- msgstr "仅具有至少一种指定内容类型的仓库,例如:rpm,erratum"
8217
-
8218
8553
  msgid "only show the repositories readable by this user with this username"
8219
8554
  msgstr "仅显示带有此用户名的用户可读的软件仓库"
8220
8555
 
@@ -8398,9 +8733,6 @@ msgstr "如果此仓库在同步时必须从源镜像并且删除过时的 rpm
8398
8733
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8399
8734
  msgstr ""
8400
8735
 
8401
- msgid "type of repo"
8402
- msgstr "仓库类型"
8403
-
8404
8736
  msgid "types of filters"
8405
8737
  msgstr "过滤器类型"
8406
8738