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
@@ -48,6 +48,12 @@ msgstr ""
48
48
  msgid " RPMs"
49
49
  msgstr ""
50
50
 
51
+ msgid " The base path can be a web address or a filesystem location."
52
+ msgstr ""
53
+
54
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
55
+ msgstr ""
56
+
51
57
  msgid " View task details "
52
58
  msgstr ""
53
59
 
@@ -78,12 +84,18 @@ msgstr ""
78
84
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
79
85
  msgstr ""
80
86
 
87
+ msgid " or any step on the left."
88
+ msgstr ""
89
+
81
90
  msgid " to manage and promote content views, or select a different environment."
82
91
  msgstr ""
83
92
 
84
93
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
85
94
  msgstr ""
86
95
 
96
+ msgid "${option}"
97
+ msgstr ""
98
+
87
99
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
88
100
  msgstr ""
89
101
 
@@ -326,6 +338,24 @@ msgstr "%{used} 之 %{total}"
326
338
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
327
339
  msgstr ""
328
340
 
341
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
342
+ msgstr ""
343
+
344
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
345
+ msgstr ""
346
+
347
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
348
+ msgstr ""
349
+
350
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
351
+ msgstr ""
352
+
353
+ 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. "
354
+ msgstr ""
355
+
356
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
357
+ msgstr ""
358
+
329
359
  msgid "(Orphaned)"
330
360
  msgstr "(已孤立)"
331
361
 
@@ -545,10 +575,10 @@ msgstr ""
545
575
  msgid "Add subscriptions to one or more hosts"
546
576
  msgstr ""
547
577
 
548
- msgid "Add to this filter using the 'Add Deb rule' button."
578
+ msgid "Add to a host collection"
549
579
  msgstr ""
550
580
 
551
- msgid "Add to this filter using the 'Add RPM rule' button."
581
+ msgid "Add to this filter using the 'Add Deb rule' button."
552
582
  msgstr ""
553
583
 
554
584
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -608,6 +638,9 @@ msgstr ""
608
638
  msgid "All subpaths must have a slash at the end and none at the front"
609
639
  msgstr ""
610
640
 
641
+ msgid "All up to date"
642
+ msgstr ""
643
+
611
644
  msgid "All versions"
612
645
  msgstr ""
613
646
 
@@ -635,6 +668,9 @@ msgstr ""
635
668
  msgid "Alter a host's host collections"
636
669
  msgstr ""
637
670
 
671
+ msgid "Alternate Content Source HTTP Proxy"
672
+ msgstr ""
673
+
638
674
  msgid "Alternate Content Sources"
639
675
  msgstr ""
640
676
 
@@ -647,7 +683,10 @@ msgstr ""
647
683
  msgid "Alternate content source deleted"
648
684
  msgstr ""
649
685
 
650
- msgid "Alternate content sources"
686
+ msgid "Alternate content source edited"
687
+ msgstr ""
688
+
689
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
651
690
  msgstr ""
652
691
 
653
692
  msgid "Always Use Latest (currently %{version})"
@@ -659,7 +698,7 @@ msgstr ""
659
698
  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."
660
699
  msgstr ""
661
700
 
662
- msgid "An alternate content source can be added by using the \"Add source\" button above."
701
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
663
702
  msgstr ""
664
703
 
665
704
  msgid "An environment is missing a prior"
@@ -698,9 +737,15 @@ msgstr ""
698
737
  msgid "Applicability Batch Size"
699
738
  msgstr ""
700
739
 
740
+ msgid "Applicable"
741
+ msgstr ""
742
+
701
743
  msgid "Applicable Content Hosts"
702
744
  msgstr ""
703
745
 
746
+ msgid "Applicable errata apply to at least one package installed on the host."
747
+ msgstr ""
748
+
704
749
  msgid "Application"
705
750
  msgstr "應用程式"
706
751
 
@@ -876,6 +921,9 @@ msgstr ""
876
921
  msgid "Available Schema Versions"
877
922
  msgstr ""
878
923
 
924
+ msgid "Back"
925
+ msgstr ""
926
+
879
927
  msgid "Backend System Status"
880
928
  msgstr "後端系統狀態"
881
929
 
@@ -942,6 +990,12 @@ msgstr "Bugfix"
942
990
  msgid "Bugs"
943
991
  msgstr ""
944
992
 
993
+ msgid "Bulk alternate content source delete has started."
994
+ msgstr ""
995
+
996
+ msgid "Bulk alternate content source refresh has started."
997
+ msgstr ""
998
+
945
999
  msgid "Bulk generate applicability for host %s"
946
1000
  msgstr ""
947
1001
 
@@ -951,9 +1005,6 @@ msgstr ""
951
1005
  msgid "Bulk remove versions from a content view and reassign systems and keys"
952
1006
  msgstr ""
953
1007
 
954
- msgid "CA Cert"
955
- msgstr ""
956
-
957
1008
  msgid "CDN Configuration"
958
1009
  msgstr ""
959
1010
 
@@ -1059,6 +1110,9 @@ msgstr "無法新增複合式版本至另一個複合式內容視域中"
1059
1110
  msgid "Cannot add default content view to composite content view"
1060
1111
  msgstr "無法新增預設內容視域至複合式內容視域中"
1061
1112
 
1113
+ msgid "Cannot add generated content view versions to composite content view"
1114
+ msgstr ""
1115
+
1062
1116
  msgid "Cannot add repositories to a composite content view"
1063
1117
  msgstr "無法新增軟體庫至複合式內容視域中"
1064
1118
 
@@ -1200,6 +1254,9 @@ msgstr ""
1200
1254
  msgid "Checksum"
1201
1255
  msgstr "Checksum"
1202
1256
 
1257
+ msgid "Checksum is a required parameter."
1258
+ msgstr ""
1259
+
1203
1260
  msgid "Checksum of file to upload"
1204
1261
  msgstr ""
1205
1262
 
@@ -1209,6 +1266,9 @@ msgstr ""
1209
1266
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1210
1267
  msgstr ""
1211
1268
 
1269
+ msgid "Choose content credentials if required for this RHUI source."
1270
+ msgstr ""
1271
+
1212
1272
  msgid "Clear any previous registration and run subscription-manager with --force."
1213
1273
  msgstr ""
1214
1274
 
@@ -1224,9 +1284,6 @@ msgstr ""
1224
1284
  msgid "Click {update} below to save changes."
1225
1285
  msgstr ""
1226
1286
 
1227
- msgid "Client key"
1228
- msgstr ""
1229
-
1230
1287
  msgid "Clone"
1231
1288
  msgstr "複製"
1232
1289
 
@@ -1242,6 +1299,9 @@ msgstr ""
1242
1299
  msgid "Combined Profile Update for %s"
1243
1300
  msgstr ""
1244
1301
 
1302
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1303
+ msgstr ""
1304
+
1245
1305
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1246
1306
  msgstr ""
1247
1307
 
@@ -1251,12 +1311,18 @@ msgstr ""
1251
1311
  msgid "Comma-separated list of tags to sync for a container image repository"
1252
1312
  msgstr ""
1253
1313
 
1314
+ msgid "Compare"
1315
+ msgstr ""
1316
+
1254
1317
  msgid "Component"
1255
1318
  msgstr "元件"
1256
1319
 
1257
1320
  msgid "Component Content View"
1258
1321
  msgstr ""
1259
1322
 
1323
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1324
+ msgstr ""
1325
+
1260
1326
  msgid "Components"
1261
1327
  msgstr "元件"
1262
1328
 
@@ -1407,6 +1473,9 @@ msgstr ""
1407
1473
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1408
1474
  msgstr ""
1409
1475
 
1476
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1477
+ msgstr ""
1478
+
1410
1479
  msgid "Content View and Environment not set for registration."
1411
1480
  msgstr "內容視域與環境並未設定給註冊用。"
1412
1481
 
@@ -1419,6 +1488,9 @@ msgstr ""
1419
1488
  msgid "Content Views"
1420
1489
  msgstr "內容視域"
1421
1490
 
1491
+ msgid "Content cannot be imported into a Composite Content View. "
1492
+ msgstr ""
1493
+
1422
1494
  msgid "Content credential"
1423
1495
  msgstr ""
1424
1496
 
@@ -1443,6 +1515,9 @@ msgstr ""
1443
1515
  msgid "Content override search parameters"
1444
1516
  msgstr ""
1445
1517
 
1518
+ msgid "Content source"
1519
+ msgstr ""
1520
+
1446
1521
  msgid "Content source ID"
1447
1522
  msgstr ""
1448
1523
 
@@ -1509,6 +1584,9 @@ msgstr ""
1509
1584
  msgid "Content views"
1510
1585
  msgstr ""
1511
1586
 
1587
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1588
+ msgstr ""
1589
+
1512
1590
  msgid "Content_Host_Status"
1513
1591
  msgstr ""
1514
1592
 
@@ -1650,6 +1728,9 @@ msgstr "找不到先前的環境「%s」"
1650
1728
  msgid "Couldn't find product with id '%s'"
1651
1729
  msgstr "找不到 id 為「%s」的產品"
1652
1730
 
1731
+ msgid "Couldn't find products with id '%s'"
1732
+ msgstr ""
1733
+
1653
1734
  msgid "Couldn't find repository '%s'"
1654
1735
  msgstr "找不到軟體庫「%s」"
1655
1736
 
@@ -1719,12 +1800,12 @@ msgstr "建立產品"
1719
1800
  msgid "Create a sync plan"
1720
1801
  msgstr "建立同步計劃"
1721
1802
 
1722
- msgid "Create an ACS"
1723
- msgstr ""
1724
-
1725
1803
  msgid "Create an activation key"
1726
1804
  msgstr "建立啟動金鑰"
1727
1805
 
1806
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1807
+ msgstr ""
1808
+
1728
1809
  msgid "Create an environment"
1729
1810
  msgstr "建立環境"
1730
1811
 
@@ -1734,6 +1815,9 @@ msgstr "在組織中建立環境"
1734
1815
  msgid "Create an upload request"
1735
1816
  msgstr "建立上傳請求"
1736
1817
 
1818
+ msgid "Create content credentials with the generated SSL certificate and key."
1819
+ msgstr ""
1820
+
1737
1821
  msgid "Create content view"
1738
1822
  msgstr ""
1739
1823
 
@@ -1773,6 +1857,9 @@ msgstr ""
1773
1857
  msgid "Custom"
1774
1858
  msgstr ""
1775
1859
 
1860
+ msgid "Custom CDN"
1861
+ msgstr ""
1862
+
1776
1863
  msgid "Custom Content Repositories"
1777
1864
  msgstr "自訂內容軟體庫"
1778
1865
 
@@ -1788,6 +1875,9 @@ msgstr ""
1788
1875
  msgid "DEB name"
1789
1876
  msgstr ""
1790
1877
 
1878
+ msgid "DEB package updates"
1879
+ msgstr ""
1880
+
1791
1881
  msgid "Database connection"
1792
1882
  msgstr "資料庫連線"
1793
1883
 
@@ -1923,6 +2013,12 @@ msgstr ""
1923
2013
  msgid "Default user data for new Operating Systems created from synced content"
1924
2014
  msgstr ""
1925
2015
 
2016
+ msgid "Define RHUI repository paths with guided steps."
2017
+ msgstr ""
2018
+
2019
+ msgid "Define repositories structured under a common web or filesystem path."
2020
+ msgstr ""
2021
+
1926
2022
  msgid "Delete"
1927
2023
  msgstr "刪除"
1928
2024
 
@@ -2061,7 +2157,7 @@ msgstr "銷毀同步計劃"
2061
2157
  msgid "Destroy an activation key"
2062
2158
  msgstr "銷毀啟動金鑰"
2063
2159
 
2064
- msgid "Destroy an alternate content source"
2160
+ msgid "Destroy an alternate content source."
2065
2161
  msgstr ""
2066
2162
 
2067
2163
  msgid "Destroy an environment"
@@ -2124,6 +2220,9 @@ msgstr "尋找"
2124
2220
  msgid "Discover Repositories"
2125
2221
  msgstr "尋找軟體庫"
2126
2222
 
2223
+ msgid "Distribute archived content view versions"
2224
+ msgstr ""
2225
+
2127
2226
  msgid "Do not include this array of content views"
2128
2227
  msgstr "不包含此內容視域集"
2129
2228
 
@@ -2157,21 +2256,51 @@ msgstr "勘誤諮詢"
2157
2256
  msgid "Edit"
2158
2257
  msgstr "編輯"
2159
2258
 
2259
+ msgid "Edit ACS"
2260
+ msgstr ""
2261
+
2262
+ msgid "Edit ACS credentials"
2263
+ msgstr ""
2264
+
2265
+ msgid "Edit ACS details"
2266
+ msgstr ""
2267
+
2268
+ msgid "Edit ACS products"
2269
+ msgstr ""
2270
+
2271
+ msgid "Edit ACS smart proxies"
2272
+ msgstr ""
2273
+
2160
2274
  msgid "Edit RPM rule"
2161
2275
  msgstr ""
2162
2276
 
2277
+ msgid "Edit URL and subpaths"
2278
+ msgstr ""
2279
+
2163
2280
  msgid "Edit content view assignment"
2164
2281
  msgstr ""
2165
2282
 
2283
+ msgid "Edit credentials"
2284
+ msgstr ""
2285
+
2286
+ msgid "Edit details"
2287
+ msgstr ""
2288
+
2166
2289
  msgid "Edit filter rule"
2167
2290
  msgstr ""
2168
2291
 
2169
2292
  msgid "Edit package filter rule"
2170
2293
  msgstr ""
2171
2294
 
2295
+ msgid "Edit products"
2296
+ msgstr ""
2297
+
2172
2298
  msgid "Edit rule"
2173
2299
  msgstr ""
2174
2300
 
2301
+ msgid "Edit smart proxies"
2302
+ msgstr ""
2303
+
2175
2304
  msgid "Edit system purpose attributes"
2176
2305
  msgstr ""
2177
2306
 
@@ -2196,6 +2325,9 @@ msgstr ""
2196
2325
  msgid "Either set the latest content view or the content view version. Cannot set both"
2197
2326
  msgstr ""
2198
2327
 
2328
+ msgid "Empty content view versions"
2329
+ msgstr ""
2330
+
2199
2331
  msgid "Enable"
2200
2332
  msgstr "啟用"
2201
2333
 
@@ -2214,6 +2346,9 @@ msgstr ""
2214
2346
  msgid "Enable a repository from the set"
2215
2347
  msgstr "啟用一個軟體庫"
2216
2348
 
2349
+ msgid "Enable repository sets"
2350
+ msgstr ""
2351
+
2217
2352
  msgid "Enable simple content access for a manifest"
2218
2353
  msgstr ""
2219
2354
 
@@ -2256,6 +2391,9 @@ msgstr ""
2256
2391
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2257
2392
  msgstr ""
2258
2393
 
2394
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2395
+ msgstr ""
2396
+
2259
2397
  msgid "Entitlements"
2260
2398
  msgstr ""
2261
2399
 
@@ -2511,6 +2649,9 @@ msgstr "以訂閱來篩選產品"
2511
2649
  msgid "Filter products by sync plan id"
2512
2650
  msgstr "透過同步計畫 ID 來篩選產品"
2513
2651
 
2652
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2653
+ msgstr ""
2654
+
2514
2655
  msgid "Filter rule added"
2515
2656
  msgstr ""
2516
2657
 
@@ -2547,6 +2688,9 @@ msgstr ""
2547
2688
  msgid "Filters will appear here when the filter is created."
2548
2689
  msgstr ""
2549
2690
 
2691
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2692
+ msgstr ""
2693
+
2550
2694
  msgid "Finish"
2551
2695
  msgstr ""
2552
2696
 
@@ -2606,6 +2750,9 @@ msgstr "有完整權利"
2606
2750
  msgid "GPG Key URL"
2607
2751
  msgstr "GPG 金鑰的網址"
2608
2752
 
2753
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2754
+ msgstr ""
2755
+
2609
2756
  msgid "Generate and Download"
2610
2757
  msgstr "產生與下載"
2611
2758
 
@@ -2816,6 +2963,9 @@ msgstr ""
2816
2963
  msgid "Hosts"
2817
2964
  msgstr "主機"
2818
2965
 
2966
+ msgid "Hosts to update"
2967
+ msgstr ""
2968
+
2819
2969
  msgid "Hosts with Installable Errata"
2820
2970
  msgstr "主機與可安裝的勘誤"
2821
2971
 
@@ -2894,6 +3044,9 @@ msgstr "同步計劃的 ID"
2894
3044
  msgid "ID: %s doesn't exist "
2895
3045
  msgstr "ID:%s 不存在"
2896
3046
 
3047
+ 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."
3048
+ msgstr ""
3049
+
2897
3050
  msgid "Id of a deb package to find repositories that contain the deb"
2898
3051
  msgstr ""
2899
3052
 
@@ -2909,6 +3062,9 @@ msgstr ""
2909
3062
  msgid "Id of an erratum to find repositories that contain the erratum"
2910
3063
  msgstr "勘誤 ID,用來尋找包含勘誤的軟體庫"
2911
3064
 
3065
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3066
+ msgstr ""
3067
+
2912
3068
  msgid "Id of the content host"
2913
3069
  msgstr "內容主機的 ID"
2914
3070
 
@@ -2981,6 +3137,9 @@ msgstr ""
2981
3137
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2982
3138
  msgstr "指定後,使用相符的 ID 與數量,移除訂閱服務的第一個項目"
2983
3139
 
3140
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3141
+ msgstr ""
3142
+
2984
3143
  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."
2985
3144
  msgstr ""
2986
3145
 
@@ -2993,6 +3152,9 @@ msgstr ""
2993
3152
  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."
2994
3153
  msgstr ""
2995
3154
 
3155
+ 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/...'."
3156
+ msgstr ""
3157
+
2996
3158
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2997
3159
  msgstr ""
2998
3160
 
@@ -3026,6 +3188,9 @@ msgstr ""
3026
3188
  msgid "Ignore subscriptions that are unavailable to the specified host"
3027
3189
  msgstr "忽略對於特定主機不可用的訂閱服務"
3028
3190
 
3191
+ msgid "Ignored hosts"
3192
+ msgstr ""
3193
+
3029
3194
  msgid "Immediate"
3030
3195
  msgstr "立即"
3031
3196
 
@@ -3170,9 +3335,6 @@ msgstr ""
3170
3335
  msgid "Index package groups"
3171
3336
  msgstr "為套件群組製作索引"
3172
3337
 
3173
- msgid "Indicate the source type."
3174
- msgstr ""
3175
-
3176
3338
  msgid "Informable Type must be one of the following [ %{list} ]"
3177
3339
  msgstr "Informable Type 必須是以下 [ %{list} ] 其中之一"
3178
3340
 
@@ -3242,12 +3404,15 @@ msgstr ""
3242
3404
  msgid "Installable"
3243
3405
  msgstr "可安裝"
3244
3406
 
3245
- msgid "Installable errata"
3407
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3246
3408
  msgstr ""
3247
3409
 
3248
3410
  msgid "Installable errata from content view"
3249
3411
  msgstr ""
3250
3412
 
3413
+ msgid "Installable updates"
3414
+ msgstr ""
3415
+
3251
3416
  msgid "Installation of errata requested: %{errata}"
3252
3417
  msgstr ""
3253
3418
 
@@ -3308,9 +3473,6 @@ msgstr ""
3308
3473
  msgid "Invalid"
3309
3474
  msgstr "無效"
3310
3475
 
3311
- msgid "Invalid SSL CA certificate given for CDN"
3312
- msgstr ""
3313
-
3314
3476
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3315
3477
  msgstr ""
3316
3478
 
@@ -3359,6 +3521,12 @@ msgstr "提供了無效的參數 - content_type 必須是 %s 之一"
3359
3521
  msgid "Invalid params provided - date_type must be one of %s"
3360
3522
  msgstr "提供了無效的參數 - date_type 必須是 %s 之一"
3361
3523
 
3524
+ msgid "Invalid params provided - with_content must be one of %s"
3525
+ msgstr ""
3526
+
3527
+ msgid "Invalid path provided. Content can be only imported from file system. "
3528
+ msgstr ""
3529
+
3362
3530
  msgid "Invalid release version: [%s]"
3363
3531
  msgstr ""
3364
3532
 
@@ -3380,6 +3548,9 @@ msgstr "已簽發"
3380
3548
  msgid "Issued from"
3381
3549
  msgstr ""
3382
3550
 
3551
+ msgid "Items will appear here when a filter rule is added."
3552
+ msgstr ""
3553
+
3383
3554
  msgid "Job '${description}' completed"
3384
3555
  msgstr ""
3385
3556
 
@@ -3455,15 +3626,18 @@ msgstr "內容的標籤"
3455
3626
  msgid "Label of the content view"
3456
3627
  msgstr ""
3457
3628
 
3458
- msgid "Last Refresh"
3629
+ msgid "Last check-in:"
3459
3630
  msgstr ""
3460
3631
 
3461
- msgid "Last check-in:"
3632
+ msgid "Last checkin"
3462
3633
  msgstr ""
3463
3634
 
3464
3635
  msgid "Last published"
3465
3636
  msgstr ""
3466
3637
 
3638
+ msgid "Last refresh"
3639
+ msgstr ""
3640
+
3467
3641
  msgid "Last refresh :"
3468
3642
  msgstr ""
3469
3643
 
@@ -3482,6 +3656,9 @@ msgstr ""
3482
3656
  msgid "Learn more about adding Subscription Manifests"
3483
3657
  msgstr ""
3484
3658
 
3659
+ msgid "Legacy content host UI"
3660
+ msgstr ""
3661
+
3485
3662
  msgid "Less than"
3486
3663
  msgstr ""
3487
3664
 
@@ -3548,6 +3725,9 @@ msgstr ""
3548
3725
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3549
3726
  msgstr ""
3550
3727
 
3728
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3729
+ msgstr ""
3730
+
3551
3731
  msgid "Limit to environment"
3552
3732
  msgstr ""
3553
3733
 
@@ -3578,6 +3758,9 @@ msgstr "列出所有 :resource_id"
3578
3758
  msgid "List all organizations"
3579
3759
  msgstr "列出所有組織"
3580
3760
 
3761
+ msgid "List alternate content sources."
3762
+ msgstr ""
3763
+
3581
3764
  msgid "List an activation key's subscriptions"
3582
3765
  msgstr "列出啟動金鑰的訂閱"
3583
3766
 
@@ -3650,9 +3833,6 @@ msgstr "同步計畫的產品清單"
3650
3833
  msgid "List of alternate content source IDs"
3651
3834
  msgstr ""
3652
3835
 
3653
- msgid "List of alternate_content_sources"
3654
- msgstr ""
3655
-
3656
3836
  msgid "List of component content view version ids for composite views"
3657
3837
  msgstr "複合式視域的元件內容視域版本 ID 之清單"
3658
3838
 
@@ -3743,6 +3923,9 @@ msgstr ""
3743
3923
  msgid "List of repository ids"
3744
3924
  msgstr "軟體庫 ID 清單"
3745
3925
 
3926
+ msgid "List of resources types that will be automatically associated"
3927
+ msgstr ""
3928
+
3746
3929
  msgid "List of subscription products in a subscription"
3747
3930
  msgstr "訂閱中的訂閱產品清單"
3748
3931
 
@@ -3947,6 +4130,9 @@ msgstr ""
3947
4130
  msgid "Multi-entitlement"
3948
4131
  msgstr "多重權利"
3949
4132
 
4133
+ msgid "Multiple environments are not supported."
4134
+ msgstr ""
4135
+
3950
4136
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3951
4137
  msgstr ""
3952
4138
 
@@ -3959,11 +4145,19 @@ msgstr "NA"
3959
4145
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3960
4146
  msgstr ""
3961
4147
 
4148
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4149
+ msgstr ""
4150
+
3962
4151
  msgid ""
3963
4152
  "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"
3964
4153
  " %{repos}"
3965
4154
  msgstr ""
3966
4155
 
4156
+ msgid ""
4157
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4158
+ " %{repos}"
4159
+ msgstr ""
4160
+
3967
4161
  msgid ""
3968
4162
  "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"
3969
4163
  " %{repos}"
@@ -3975,6 +4169,12 @@ msgstr ""
3975
4169
  msgid "Name"
3976
4170
  msgstr "名稱"
3977
4171
 
4172
+ msgid "Name and label of default content view should not be changed"
4173
+ msgstr ""
4174
+
4175
+ msgid "Name is a required parameter."
4176
+ msgstr ""
4177
+
3978
4178
  msgid "Name of new activation key"
3979
4179
  msgstr "新啟動金鑰的名稱"
3980
4180
 
@@ -4020,6 +4220,12 @@ msgstr ""
4020
4220
  msgid "Never Synced"
4021
4221
  msgstr "從未同步"
4022
4222
 
4223
+ msgid "Never checked in"
4224
+ msgstr ""
4225
+
4226
+ msgid "Never registered"
4227
+ msgstr ""
4228
+
4023
4229
  msgid "New Errata"
4024
4230
  msgstr "新勘誤"
4025
4231
 
@@ -4113,6 +4319,9 @@ msgstr "未提供內容。"
4113
4319
  msgid "No content ids provided"
4114
4320
  msgstr "未提供內容 ID"
4115
4321
 
4322
+ msgid "No content in selected versions."
4323
+ msgstr ""
4324
+
4116
4325
  msgid "No content view history events found."
4117
4326
  msgstr "找不到內容視域的歷史事件。"
4118
4327
 
@@ -4164,6 +4373,9 @@ msgstr ""
4164
4373
  msgid "No host collections found."
4165
4374
  msgstr "找不到主機集項目。"
4166
4375
 
4376
+ msgid "No host collections yet"
4377
+ msgstr ""
4378
+
4167
4379
  msgid "No hosts have been specified."
4168
4380
  msgstr "未指定主機。"
4169
4381
 
@@ -4188,6 +4400,9 @@ msgstr ""
4188
4400
  msgid "No matching "
4189
4401
  msgstr ""
4190
4402
 
4403
+ msgid "No matching ${name} found."
4404
+ msgstr ""
4405
+
4191
4406
  msgid "No matching ${selectedContentType} found"
4192
4407
  msgstr ""
4193
4408
 
@@ -4278,6 +4493,9 @@ msgstr ""
4278
4493
  msgid "No products are enabled."
4279
4494
  msgstr ""
4280
4495
 
4496
+ msgid "No profiles to show"
4497
+ msgstr ""
4498
+
4281
4499
  msgid "No pulp workers running."
4282
4500
  msgstr "沒有 pulp 工作者執行中。"
4283
4501
 
@@ -4413,6 +4631,9 @@ msgstr "顯示訂閱服務的可用物件,值可以是「host」或「activati
4413
4631
  msgid "On Demand"
4414
4632
  msgstr "視需求"
4415
4633
 
4634
+ msgid "On the RHUA Instance, check the available repositories."
4635
+ msgstr ""
4636
+
4416
4637
  msgid "On-disk location for exported repositories"
4417
4638
  msgstr "匯入軟體庫的磁碟位置"
4418
4639
 
@@ -4791,6 +5012,9 @@ msgstr "請從下方清單中選擇一項,而您將會被重新導向。"
4791
5012
  msgid "Please wait while the task starts.."
4792
5013
  msgstr ""
4793
5014
 
5015
+ msgid "Please wait..."
5016
+ msgstr ""
5017
+
4794
5018
  msgid "Policy to set for mirroring content. Must be one of %s."
4795
5019
  msgstr ""
4796
5020
 
@@ -4880,9 +5104,18 @@ msgstr ""
4880
5104
  msgid "Product: '%{product}', Repository: '%{repository}'"
4881
5105
  msgstr ""
4882
5106
 
5107
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5108
+ msgstr ""
5109
+
4883
5110
  msgid "Products"
4884
5111
  msgstr "產品"
4885
5112
 
5113
+ msgid "Products updated."
5114
+ msgstr ""
5115
+
5116
+ msgid "Profiles"
5117
+ msgstr ""
5118
+
4886
5119
  msgid "Promote"
4887
5120
  msgstr "Promote"
4888
5121
 
@@ -5060,6 +5293,9 @@ msgstr "記憶體:%s GB"
5060
5293
  msgid "RH Repos"
5061
5294
  msgstr ""
5062
5295
 
5296
+ msgid "RHUI"
5297
+ msgstr ""
5298
+
5063
5299
  msgid "RPM"
5064
5300
  msgstr "RPM"
5065
5301
 
@@ -5072,6 +5308,12 @@ msgstr ""
5072
5308
  msgid "RPM name"
5073
5309
  msgstr ""
5074
5310
 
5311
+ msgid "RPM package groups"
5312
+ msgstr ""
5313
+
5314
+ msgid "RPM package updates"
5315
+ msgstr ""
5316
+
5075
5317
  msgid "RPM packages"
5076
5318
  msgstr ""
5077
5319
 
@@ -5138,6 +5380,9 @@ msgstr ""
5138
5380
  msgid "Red Hat content will be consumed from the {type}."
5139
5381
  msgstr ""
5140
5382
 
5383
+ msgid "Red Hat content will be consumed from {type}."
5384
+ msgstr ""
5385
+
5141
5386
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5142
5387
  msgstr ""
5143
5388
 
@@ -5165,7 +5410,7 @@ msgstr "更新清單"
5165
5410
  msgid "Refresh alternate content sources"
5166
5411
  msgstr ""
5167
5412
 
5168
- msgid "Refresh an alternate content source"
5413
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5169
5414
  msgstr ""
5170
5415
 
5171
5416
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5183,6 +5428,9 @@ msgstr ""
5183
5428
  msgid "Register host '%s' before attaching subscriptions"
5184
5429
  msgstr ""
5185
5430
 
5431
+ msgid "Registered"
5432
+ msgstr ""
5433
+
5186
5434
  msgid "Registered by"
5187
5435
  msgstr ""
5188
5436
 
@@ -5309,7 +5557,7 @@ msgstr ""
5309
5557
  msgid "Remove one or more host collections from one or more hosts"
5310
5558
  msgstr "從一或多台主機刪除一或多個主機集項目"
5311
5559
 
5312
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5560
+ msgid "Remove one or more subscriptions from an upstream manifest"
5313
5561
  msgstr ""
5314
5562
 
5315
5563
  msgid "Remove package"
@@ -5360,6 +5608,9 @@ msgstr "正在移除套件群組..."
5360
5608
  msgid "Removing Package..."
5361
5609
  msgstr "正在移除套件..."
5362
5610
 
5611
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5612
+ msgstr ""
5613
+
5363
5614
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5364
5615
  msgstr ""
5365
5616
 
@@ -5600,9 +5851,6 @@ msgstr ""
5600
5851
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5601
5852
  msgstr ""
5602
5853
 
5603
- msgid "Review Details"
5604
- msgstr ""
5605
-
5606
5854
  msgid "Review affected environment"
5607
5855
  msgstr ""
5608
5856
 
@@ -5612,6 +5860,9 @@ msgstr ""
5612
5860
  msgid "Review details"
5613
5861
  msgstr ""
5614
5862
 
5863
+ msgid "Review the information below and click "
5864
+ msgstr ""
5865
+
5615
5866
  msgid "Review your currently selected changes for "
5616
5867
  msgstr ""
5617
5868
 
@@ -5651,9 +5902,6 @@ msgstr ""
5651
5902
  msgid "SSL CA certificate"
5652
5903
  msgstr ""
5653
5904
 
5654
- msgid "SSL Cert"
5655
- msgstr ""
5656
-
5657
5905
  msgid "SSL client certificate"
5658
5906
  msgstr ""
5659
5907
 
@@ -5783,6 +6031,9 @@ msgstr ""
5783
6031
  msgid "Select an environment above"
5784
6032
  msgstr ""
5785
6033
 
6034
+ msgid "Select an option"
6035
+ msgstr ""
6036
+
5786
6037
  msgid "Select an organization"
5787
6038
  msgstr ""
5788
6039
 
@@ -5822,6 +6073,12 @@ msgstr ""
5822
6073
  msgid "Select page"
5823
6074
  msgstr ""
5824
6075
 
6076
+ msgid "Select products"
6077
+ msgstr ""
6078
+
6079
+ msgid "Select products to associate to this source."
6080
+ msgstr ""
6081
+
5825
6082
  msgid "Select row"
5826
6083
  msgstr ""
5827
6084
 
@@ -5939,7 +6196,7 @@ msgstr ""
5939
6196
  msgid "Show an activation key"
5940
6197
  msgstr "顯示啟動金鑰"
5941
6198
 
5942
- msgid "Show an alternate content source"
6199
+ msgid "Show an alternate content source."
5943
6200
  msgstr ""
5944
6201
 
5945
6202
  msgid "Show an environment"
@@ -5990,6 +6247,9 @@ msgstr ""
5990
6247
  msgid "Simple Content Access has been enabled for '%{subject}'."
5991
6248
  msgstr ""
5992
6249
 
6250
+ msgid "Simplified"
6251
+ msgstr ""
6252
+
5993
6253
  msgid "Single content view consisting of e.g. repositories"
5994
6254
  msgstr ""
5995
6255
 
@@ -6026,7 +6286,7 @@ msgstr ""
6026
6286
  msgid "Solve dependencies"
6027
6287
  msgstr ""
6028
6288
 
6029
- msgid "Some hosts are ignored!"
6289
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6030
6290
  msgstr ""
6031
6291
 
6032
6292
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6050,13 +6310,13 @@ msgstr ""
6050
6310
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6051
6311
  msgstr ""
6052
6312
 
6053
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6313
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6054
6314
  msgstr ""
6055
6315
 
6056
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6316
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6057
6317
  msgstr ""
6058
6318
 
6059
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6319
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6060
6320
  msgstr ""
6061
6321
 
6062
6322
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6104,10 +6364,13 @@ msgstr ""
6104
6364
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6105
6365
  msgstr ""
6106
6366
 
6367
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6368
+ msgstr ""
6369
+
6107
6370
  msgid "Something went wrong while loading the content views. See the logs for more information"
6108
6371
  msgstr ""
6109
6372
 
6110
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6373
+ msgid "Something went wrong while refreshing alternate content sources: "
6111
6374
  msgstr ""
6112
6375
 
6113
6376
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6122,6 +6385,9 @@ msgstr ""
6122
6385
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6123
6386
  msgstr ""
6124
6387
 
6388
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6389
+ msgstr ""
6390
+
6125
6391
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6126
6392
  msgstr ""
6127
6393
 
@@ -6140,9 +6406,33 @@ msgstr ""
6140
6406
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6141
6407
  msgstr ""
6142
6408
 
6409
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6410
+ msgstr ""
6411
+
6412
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6413
+ msgstr ""
6414
+
6415
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6416
+ msgstr ""
6417
+
6418
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6419
+ msgstr ""
6420
+
6143
6421
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6144
6422
  msgstr ""
6145
6423
 
6424
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6425
+ msgstr ""
6426
+
6427
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6428
+ msgstr ""
6429
+
6430
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6431
+ msgstr ""
6432
+
6433
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6434
+ msgstr ""
6435
+
6146
6436
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6147
6437
  msgstr ""
6148
6438
 
@@ -6227,9 +6517,6 @@ msgstr ""
6227
6517
  msgid "Subscription"
6228
6518
  msgstr "訂閱"
6229
6519
 
6230
- msgid "Subscription Allocation"
6231
- msgstr ""
6232
-
6233
6520
  msgid "Subscription Details"
6234
6521
  msgstr "訂閱詳細資訊"
6235
6522
 
@@ -6287,6 +6574,9 @@ msgstr "訂閱清單檔案"
6287
6574
  msgid "Subscription not found"
6288
6575
  msgstr ""
6289
6576
 
6577
+ msgid "Subscription status"
6578
+ msgstr ""
6579
+
6290
6580
  msgid "Subscription was not persisted - %{error_message}"
6291
6581
  msgstr ""
6292
6582
 
@@ -6332,6 +6622,9 @@ msgstr "已成功移除 %s 台主機。"
6332
6622
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6333
6623
  msgstr "已成功移除 %{count} 台內容主機,從主機集項目 %{host_collection}。"
6334
6624
 
6625
+ msgid "Successfully synced capsule."
6626
+ msgstr ""
6627
+
6335
6628
  msgid "Successfully synchronized."
6336
6629
  msgstr ""
6337
6630
 
@@ -6413,6 +6706,9 @@ msgstr "同步一或多項產品"
6413
6706
  msgid "Sync plan identifier to attach"
6414
6707
  msgstr "同步要連接的計畫識別子"
6415
6708
 
6709
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6710
+ msgstr ""
6711
+
6416
6712
  msgid "Sync state"
6417
6713
  msgstr ""
6418
6714
 
@@ -6503,9 +6799,6 @@ msgstr "'%s' 環境不可包含變更集!"
6503
6799
  msgid "The Alternate Content Source type"
6504
6800
  msgstr ""
6505
6801
 
6506
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6507
- msgstr ""
6508
-
6509
6802
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6510
6803
  msgstr ""
6511
6804
 
@@ -6557,9 +6850,6 @@ msgstr ""
6557
6850
  msgid "The field to sort the data by. Defaults to the created date."
6558
6851
  msgstr ""
6559
6852
 
6560
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6561
- msgstr ""
6562
-
6563
6853
  msgid "The following hosts have errata that apply to them: "
6564
6854
  msgstr "下列主機含有套用至它們的勘誤:"
6565
6855
 
@@ -6586,6 +6876,9 @@ msgstr ""
6586
6876
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6587
6877
  msgstr ""
6588
6878
 
6879
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6880
+ msgstr ""
6881
+
6589
6882
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6590
6883
  msgstr ""
6591
6884
 
@@ -6630,6 +6923,9 @@ msgstr ""
6630
6923
  msgid "The port used by Pulp Crane to provide Docker Registries"
6631
6924
  msgstr ""
6632
6925
 
6926
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6927
+ msgstr ""
6928
+
6633
6929
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6634
6930
  msgstr "推送 %{content_view} 至 %{environment} 的程序已完成。您的主機可使用 %{count} 個勘誤。"
6635
6931
 
@@ -6675,13 +6971,19 @@ msgstr "「%s」的同步已完成。以下為新勘誤的摘要。"
6675
6971
  msgid "The token key to use for authentication."
6676
6972
  msgstr ""
6677
6973
 
6974
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6975
+ msgstr ""
6976
+
6977
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6978
+ msgstr ""
6979
+
6678
6980
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6679
6981
  msgstr "內容的類型。支援以下類型:「package」(套件)與「package_group」(套件群組)。"
6680
6982
 
6681
6983
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6682
6984
  msgstr "內容的類型。支援以下類型;「package」(套件)、「package_group」(套件群組)與「errata」(勘誤)。"
6683
6985
 
6684
- msgid "There are no Subscription Allocations to display"
6986
+ msgid "There are no Manifests to display"
6685
6987
  msgstr ""
6686
6988
 
6687
6989
  msgid "There are no Subscriptions to display"
@@ -6753,6 +7055,9 @@ msgstr ""
6753
7055
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6754
7056
  msgstr ""
6755
7057
 
7058
+ 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."
7059
+ msgstr ""
7060
+
6756
7061
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6757
7062
  msgstr "此憑證能讓使用者透過瀏覽器檢視任何環境中的軟體庫。"
6758
7063
 
@@ -6792,7 +7097,7 @@ msgstr ""
6792
7097
  msgid "This is disabled because a manifest task is in progress"
6793
7098
  msgstr ""
6794
7099
 
6795
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7100
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6796
7101
  msgstr ""
6797
7102
 
6798
7103
  msgid "This is disabled because no manifest exists"
@@ -6861,6 +7166,9 @@ msgstr ""
6861
7166
  msgid "Title"
6862
7167
  msgstr "提示"
6863
7168
 
7169
+ msgid "To get started, add this host to a host collection."
7170
+ msgstr ""
7171
+
6864
7172
  msgid "Toggling Simple Content Access will refresh your manifest."
6865
7173
  msgstr ""
6866
7174
 
@@ -6903,6 +7211,9 @@ msgstr ""
6903
7211
  msgid "Traces will be shown here to a user with the appropriate permissions."
6904
7212
  msgstr ""
6905
7213
 
7214
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7215
+ msgstr ""
7216
+
6906
7217
  msgid "Trigger an auto-attach of subscriptions"
6907
7218
  msgstr "觸發自動連接訂閱服務"
6908
7219
 
@@ -6933,12 +7244,18 @@ msgstr ""
6933
7244
  msgid "Type of content: \"cert\", \"gpg_key\""
6934
7245
  msgstr ""
6935
7246
 
7247
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7248
+ msgstr ""
7249
+
6936
7250
  msgid "URL"
6937
7251
  msgstr "URL"
6938
7252
 
6939
7253
  msgid "URL and paths"
6940
7254
  msgstr ""
6941
7255
 
7256
+ msgid "URL and subpaths"
7257
+ msgstr ""
7258
+
6942
7259
  msgid "URL needs to have a trailing /"
6943
7260
  msgstr ""
6944
7261
 
@@ -7140,7 +7457,7 @@ msgstr "更新同步計畫"
7140
7457
  msgid "Update an activation key"
7141
7458
  msgstr "更新啟動金鑰"
7142
7459
 
7143
- msgid "Update an alternate content source"
7460
+ msgid "Update an alternate content source."
7144
7461
  msgstr ""
7145
7462
 
7146
7463
  msgid "Update an environment"
@@ -7347,6 +7664,12 @@ msgstr ""
7347
7664
  msgid "Usage type"
7348
7665
  msgstr ""
7349
7666
 
7667
+ msgid "Use HTTP Proxies"
7668
+ msgstr ""
7669
+
7670
+ msgid "Use HTTP proxies"
7671
+ msgstr ""
7672
+
7350
7673
  msgid "Use remote execution by default"
7351
7674
  msgstr ""
7352
7675
 
@@ -7422,6 +7745,12 @@ msgstr ""
7422
7745
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7423
7746
  msgstr ""
7424
7747
 
7748
+ msgid "Version ${versionOne}"
7749
+ msgstr ""
7750
+
7751
+ msgid "Version ${versionTwo}"
7752
+ msgstr ""
7753
+
7425
7754
  msgid "Version details updated."
7426
7755
  msgstr ""
7427
7756
 
@@ -7434,6 +7763,9 @@ msgstr "版本"
7434
7763
  msgid "Versions "
7435
7764
  msgstr ""
7436
7765
 
7766
+ msgid "Versions to compare"
7767
+ msgstr ""
7768
+
7437
7769
  msgid "Versions to exclusively include in the action"
7438
7770
  msgstr ""
7439
7771
 
@@ -7449,6 +7781,9 @@ msgstr "檢視 %{view} 並未被推送到 %{env}"
7449
7781
  msgid "View a report of the affected hosts"
7450
7782
  msgstr ""
7451
7783
 
7784
+ msgid "View by"
7785
+ msgstr ""
7786
+
7452
7787
  msgid "View matching content"
7453
7788
  msgstr ""
7454
7789
 
@@ -7512,6 +7847,9 @@ msgstr ""
7512
7847
  msgid "Whether to include available content attribute in results"
7513
7848
  msgstr "是否要在結果中包括可用的內容屬性"
7514
7849
 
7850
+ msgid "Whether to turn on Simple Content Access for the organization."
7851
+ msgstr ""
7852
+
7515
7853
  msgid "Workers"
7516
7854
  msgstr "工作者"
7517
7855
 
@@ -7608,6 +7946,9 @@ msgstr ""
7608
7946
  msgid "Your search returned no matching "
7609
7947
  msgstr ""
7610
7948
 
7949
+ msgid "Your search returned no matching ${name}."
7950
+ msgstr ""
7951
+
7611
7952
  msgid "Your search returned no matching DEBs."
7612
7953
  msgstr ""
7613
7954
 
@@ -7632,6 +7973,9 @@ msgstr "Yum Metadata:%s"
7632
7973
  msgid "a content unit"
7633
7974
  msgstr ""
7634
7975
 
7976
+ msgid "a custom CDN URL"
7977
+ msgstr ""
7978
+
7635
7979
  msgid "a deb package"
7636
7980
  msgstr ""
7637
7981
 
@@ -7803,9 +8147,6 @@ msgstr ""
7803
8147
  msgid "content release version"
7804
8148
  msgstr "內容發行版本"
7805
8149
 
7806
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7807
- msgstr ""
7808
-
7809
8150
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7810
8151
  msgstr ""
7811
8152
 
@@ -8079,9 +8420,6 @@ msgstr "環境的標籤"
8079
8420
  msgid "label of the repository"
8080
8421
  msgstr ""
8081
8422
 
8082
- msgid "limit to only repositories of this type"
8083
- msgstr ""
8084
-
8085
8423
  msgid "limit to only repositories with this download policy"
8086
8424
  msgstr ""
8087
8425
 
@@ -8199,9 +8537,6 @@ msgstr "取得給訂閱服務使用的清單歷史"
8199
8537
  msgid "of environment must be unique within one organization"
8200
8538
  msgstr "一個組織中的環境名稱必須是獨特的"
8201
8539
 
8202
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8203
- msgstr ""
8204
-
8205
8540
  msgid "only show the repositories readable by this user with this username"
8206
8541
  msgstr ""
8207
8542
 
@@ -8385,9 +8720,6 @@ msgstr ""
8385
8720
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8386
8721
  msgstr ""
8387
8722
 
8388
- msgid "type of repo"
8389
- msgstr ""
8390
-
8391
8723
  msgid "types of filters"
8392
8724
  msgstr ""
8393
8725