katello 4.5.1 → 4.6.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 (440) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +7 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +52 -22
  5. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  6. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  9. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  10. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  11. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  12. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +8 -1
  13. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
  14. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +8 -0
  15. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  16. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  17. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  18. data/app/lib/actions/katello/alternate_content_source/create.rb +11 -5
  19. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  20. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  21. data/app/lib/actions/katello/alternate_content_source/update.rb +57 -13
  22. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  23. data/app/lib/actions/katello/organization/manifest_refresh.rb +8 -4
  24. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  25. data/app/lib/actions/katello/repository/create.rb +9 -0
  26. data/app/lib/actions/katello/repository/destroy.rb +21 -0
  27. data/app/lib/actions/katello/repository/errata_mail.rb +3 -3
  28. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  29. data/app/lib/actions/katello/repository/update.rb +33 -0
  30. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  31. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  32. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  33. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  34. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  35. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  36. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  37. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  38. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  39. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  40. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  41. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +2 -2
  42. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +18 -0
  43. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  44. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  45. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  46. data/app/lib/katello/errors.rb +1 -1
  47. data/app/lib/katello/resources/candlepin/owner.rb +9 -2
  48. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  49. data/app/models/katello/alternate_content_source.rb +39 -8
  50. data/app/models/katello/alternate_content_source_product.rb +13 -0
  51. data/app/models/katello/concerns/host_managed_extensions.rb +12 -2
  52. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  53. data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -6
  54. data/app/models/katello/content_view.rb +4 -0
  55. data/app/models/katello/content_view_deb_filter.rb +51 -0
  56. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  57. data/app/models/katello/content_view_filter.rb +10 -3
  58. data/app/models/katello/glue/candlepin/owner.rb +0 -1
  59. data/app/models/katello/installed_package.rb +1 -0
  60. data/app/models/katello/product.rb +3 -0
  61. data/app/models/katello/repository.rb +2 -0
  62. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  63. data/app/services/cert/certs.rb +8 -16
  64. data/app/services/katello/content_unit_indexer.rb +2 -1
  65. data/app/services/katello/organization_creator.rb +4 -4
  66. data/app/services/katello/pulp/server.rb +2 -2
  67. data/app/services/katello/pulp3/alternate_content_source.rb +22 -4
  68. data/app/services/katello/pulp3/api/apt.rb +12 -0
  69. data/app/services/katello/pulp3/erratum.rb +1 -4
  70. data/app/services/katello/pulp3/repository/apt.rb +186 -2
  71. data/app/services/katello/pulp3/repository.rb +4 -3
  72. data/app/services/katello/pulp3/service_common.rb +1 -1
  73. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  74. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  75. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +18 -3
  76. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  77. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  78. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  79. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  80. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  81. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  82. data/app/views/katello/layouts/react.html.erb +1 -1
  83. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  84. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  85. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  86. data/ca/redhat-uep.pem +18 -23
  87. data/config/katello.yaml.example +0 -2
  88. data/config/routes/api/v2.rb +2 -0
  89. data/config/routes/overrides.rb +1 -0
  90. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  91. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  92. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  93. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  94. data/db/seeds.d/102-organizations.rb +1 -1
  95. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  96. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  97. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  99. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  100. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  101. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  102. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +4 -5
  104. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  105. data/lib/katello/engine.rb +1 -2
  106. data/lib/katello/permission_creator.rb +2 -2
  107. data/lib/katello/permissions/host_permissions.rb +1 -0
  108. data/lib/katello/plugin.rb +6 -12
  109. data/lib/katello/version.rb +1 -1
  110. data/locale/action_names.rb +49 -46
  111. data/locale/bn/katello.po +361 -53
  112. data/{webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss → locale/bn/katello.po.time_stamp} +0 -0
  113. data/locale/cs/katello.po +361 -53
  114. data/locale/cs/katello.po.time_stamp +0 -0
  115. data/locale/de/katello.po +366 -58
  116. data/locale/de/katello.po.time_stamp +0 -0
  117. data/locale/en/katello.po +361 -53
  118. data/locale/en/katello.po.time_stamp +0 -0
  119. data/locale/es/katello.po +364 -56
  120. data/locale/es/katello.po.time_stamp +0 -0
  121. data/locale/fr/katello.po +376 -68
  122. data/locale/fr/katello.po.time_stamp +0 -0
  123. data/locale/gu/katello.po +361 -53
  124. data/locale/gu/katello.po.time_stamp +0 -0
  125. data/locale/hi/katello.po +361 -53
  126. data/locale/hi/katello.po.time_stamp +0 -0
  127. data/locale/it/katello.po +361 -53
  128. data/locale/it/katello.po.time_stamp +0 -0
  129. data/locale/ja/katello.po +374 -66
  130. data/locale/ja/katello.po.time_stamp +0 -0
  131. data/locale/katello.pot +1626 -1079
  132. data/locale/kn/katello.po +361 -53
  133. data/locale/kn/katello.po.time_stamp +0 -0
  134. data/locale/ko/katello.po +361 -53
  135. data/locale/ko/katello.po.time_stamp +0 -0
  136. data/locale/mr/katello.po +361 -53
  137. data/locale/mr/katello.po.time_stamp +0 -0
  138. data/locale/or/katello.po +361 -53
  139. data/locale/or/katello.po.time_stamp +0 -0
  140. data/locale/pa/katello.po +361 -53
  141. data/locale/pa/katello.po.time_stamp +0 -0
  142. data/locale/pt/katello.po +361 -53
  143. data/locale/pt/katello.po.time_stamp +0 -0
  144. data/locale/pt_BR/katello.po +364 -56
  145. data/locale/pt_BR/katello.po.time_stamp +0 -0
  146. data/locale/ru/katello.po +361 -53
  147. data/locale/ru/katello.po.time_stamp +0 -0
  148. data/locale/ta/katello.po +361 -53
  149. data/locale/ta/katello.po.time_stamp +0 -0
  150. data/locale/te/katello.po +361 -53
  151. data/locale/te/katello.po.time_stamp +0 -0
  152. data/locale/zh_CN/katello.po +374 -66
  153. data/locale/zh_CN/katello.po.time_stamp +0 -0
  154. data/locale/zh_TW/katello.po +361 -53
  155. data/locale/zh_TW/katello.po.time_stamp +0 -0
  156. data/package.json +0 -3
  157. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -16
  158. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  159. data/webpack/components/Errata/index.js +18 -3
  160. data/webpack/components/Loading.js +1 -1
  161. data/webpack/components/RoutedTabs/index.js +1 -17
  162. data/webpack/components/Search/Search.js +0 -1
  163. data/webpack/components/Search/__tests__/search.test.js +1 -2
  164. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  165. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  166. data/webpack/components/Table/EmptyStateMessage.js +77 -2
  167. data/webpack/components/Table/MainTable.js +46 -4
  168. data/webpack/components/Table/TableHooks.js +9 -6
  169. data/webpack/components/Table/TableWrapper.js +14 -8
  170. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  171. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  172. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  173. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +2 -1
  174. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +9 -4
  175. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  176. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +173 -0
  177. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  178. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  179. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +301 -0
  180. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  181. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +108 -0
  182. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  183. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +12 -12
  184. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +100 -0
  185. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +26 -4
  186. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  187. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  188. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  189. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +8 -12
  190. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -2
  191. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +5 -0
  192. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +57 -7
  193. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +2 -0
  194. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  195. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +4 -1
  196. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -10
  197. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  198. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  199. data/webpack/containers/Application/config.js +5 -10
  200. data/webpack/global_index.js +19 -7
  201. data/webpack/global_test_setup.js +14 -2
  202. data/webpack/ouia_id_check.js +95 -0
  203. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -0
  204. data/webpack/redux/reducers/index.js +2 -4
  205. data/webpack/scenes/AlternateContentSources/ACSActions.js +36 -3
  206. data/webpack/scenes/AlternateContentSources/ACSConstants.js +3 -0
  207. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -6
  208. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +73 -42
  209. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +26 -10
  210. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  211. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +59 -45
  212. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +2 -1
  213. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +0 -1
  214. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +35 -19
  215. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +120 -13
  216. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  217. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +459 -0
  218. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +354 -0
  219. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +104 -0
  220. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +120 -0
  221. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +118 -0
  222. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +118 -0
  223. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +242 -0
  224. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +106 -0
  225. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  226. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  227. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  228. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +215 -87
  229. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  230. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +1 -2
  231. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -2
  232. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -4
  233. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -2
  234. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -0
  235. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -2
  236. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +113 -0
  237. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +89 -0
  238. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +32 -9
  239. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  240. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +39 -27
  241. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +236 -0
  242. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +1 -0
  243. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  244. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -0
  245. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  246. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +17 -4
  247. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  248. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +34 -22
  249. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  250. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -2
  251. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  252. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +56 -3
  253. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +62 -8
  254. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +1 -5
  255. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -2
  256. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +32 -2
  257. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +1 -2
  258. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +1 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  260. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  261. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  262. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  263. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -1
  264. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -2
  265. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  266. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +143 -0
  267. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +51 -0
  268. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +314 -0
  269. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +186 -0
  270. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +74 -0
  271. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  272. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +657 -0
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  279. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  280. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  283. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  284. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  285. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  287. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  288. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  289. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  290. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  291. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  292. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +102 -36
  293. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -2
  294. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +4 -2
  295. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +1 -2
  296. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  297. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  298. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +96 -81
  299. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -2
  300. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  301. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  302. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +0 -30
  303. data/webpack/test-utils/nockWrapper.js +7 -0
  304. metadata +100 -145
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  321. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  322. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  323. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  324. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  325. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  326. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  327. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  328. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  329. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  330. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  331. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  332. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  333. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  334. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  335. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  336. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  337. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  338. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  339. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  340. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  341. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  342. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  343. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  344. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  345. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  346. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  347. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  348. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  349. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  350. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  351. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  352. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  353. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  354. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  355. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  356. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  357. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  358. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  359. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  360. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  361. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  362. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  363. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  364. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  365. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  366. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  367. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  368. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  369. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  370. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  371. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  372. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  373. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  374. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  375. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  376. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  377. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  378. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  379. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  380. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  381. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  382. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  383. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  384. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  385. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  386. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  387. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  388. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  389. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  390. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  391. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  392. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  393. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  394. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  395. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  396. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  397. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  398. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  399. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  400. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  401. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  402. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  403. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  404. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  405. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  406. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  407. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  408. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  409. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  410. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  411. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  412. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  413. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  414. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  415. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  416. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  417. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  418. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  419. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  420. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  421. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  422. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  423. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  424. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  425. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  426. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  427. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  428. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  429. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  430. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  431. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  432. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  433. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  434. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  435. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  436. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  437. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  438. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  439. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  440. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
@@ -39,6 +39,9 @@ msgstr ""
39
39
  msgid " Content view updated"
40
40
  msgstr ""
41
41
 
42
+ msgid " DEBs"
43
+ msgstr ""
44
+
42
45
  msgid " Either select the latest content view or the content view version. Cannot set both."
43
46
  msgstr ""
44
47
 
@@ -60,10 +63,10 @@ msgstr ""
60
63
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
61
64
  msgstr ""
62
65
 
63
- msgid " content view is used in listed component content views. For more information, "
66
+ msgid " content view is used in listed composite content views."
64
67
  msgstr ""
65
68
 
66
- msgid " content view is used in listed composite content views."
69
+ msgid " content view is used in listed content views. For more information, "
67
70
  msgstr ""
68
71
 
69
72
  msgid " environment cannot be set to an environment already on its path"
@@ -75,6 +78,9 @@ msgstr ""
75
78
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
76
79
  msgstr ""
77
80
 
81
+ msgid " to manage and promote content views, or select a different environment."
82
+ msgstr ""
83
+
78
84
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
79
85
  msgstr ""
80
86
 
@@ -323,6 +329,9 @@ msgstr ""
323
329
  msgid "(Orphaned)"
324
330
  msgstr "(已孤立)"
325
331
 
332
+ msgid "(unset)"
333
+ msgstr ""
334
+
326
335
  msgid ", and"
327
336
  msgstr ""
328
337
 
@@ -350,7 +359,7 @@ msgstr ""
350
359
  msgid "A backend service [ %s ] is unreachable"
351
360
  msgstr "無法連上後端服務 [ %s ]"
352
361
 
353
- msgid "A content view can be added by using the \"Create content view\" button above."
362
+ msgid "A content view can be added by using the \"Create content view\" button below."
354
363
  msgstr ""
355
364
 
356
365
  msgid "A content_type must be provided."
@@ -371,6 +380,12 @@ msgstr ""
371
380
  msgid "A post-promotion summary of hosts with installable errata"
372
381
  msgstr "主機的後推送摘要與可安裝勘誤"
373
382
 
383
+ msgid "A remote execution job is in progress"
384
+ msgstr ""
385
+
386
+ msgid "A remote execution job is in progress."
387
+ msgstr ""
388
+
374
389
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
375
390
  msgstr "auto-healing 程序的服務等級,例如 SELF-SUPPORT"
376
391
 
@@ -458,6 +473,9 @@ msgstr "新增"
458
473
  msgid "Add Bookmark"
459
474
  msgstr "新增書籤"
460
475
 
476
+ msgid "Add DEB rule"
477
+ msgstr ""
478
+
461
479
  msgid "Add RPM rule"
462
480
  msgstr ""
463
481
 
@@ -467,13 +485,13 @@ msgstr ""
467
485
  msgid "Add a subscription to a host"
468
486
  msgstr "新增訂閱至一部主機"
469
487
 
470
- msgid "Add component"
488
+ msgid "Add an alternate content source"
471
489
  msgstr ""
472
490
 
473
- msgid "Add component content views"
491
+ msgid "Add components to the content view"
474
492
  msgstr ""
475
493
 
476
- msgid "Add components to the content view"
494
+ msgid "Add content view"
477
495
  msgstr ""
478
496
 
479
497
  msgid "Add content views"
@@ -488,9 +506,6 @@ msgstr ""
488
506
  msgid "Add filter rule"
489
507
  msgstr ""
490
508
 
491
- msgid "Add filters using the 'Add filter' button above."
492
- msgstr ""
493
-
494
509
  msgid "Add host to collections"
495
510
  msgstr ""
496
511
 
@@ -530,12 +545,18 @@ msgstr ""
530
545
  msgid "Add subscriptions to one or more hosts"
531
546
  msgstr ""
532
547
 
548
+ msgid "Add to this filter using the 'Add Deb rule' button."
549
+ msgstr ""
550
+
533
551
  msgid "Add to this filter using the 'Add RPM rule' button."
534
552
  msgstr ""
535
553
 
536
554
  msgid "Add to this filter using the 'Add filter rule' button."
537
555
  msgstr ""
538
556
 
557
+ msgid "Add-ons"
558
+ msgstr ""
559
+
539
560
  msgid "Added"
540
561
  msgstr ""
541
562
 
@@ -554,6 +575,9 @@ msgstr ""
554
575
  msgid "Addons"
555
576
  msgstr ""
556
577
 
578
+ msgid "Affected Repositories"
579
+ msgstr ""
580
+
557
581
  msgid "Affected repositories"
558
582
  msgstr ""
559
583
 
@@ -662,9 +686,6 @@ msgstr ""
662
686
  msgid "Ansible Collection"
663
687
  msgstr ""
664
688
 
665
- msgid "Ansible Collection Details"
666
- msgstr ""
667
-
668
689
  msgid "Ansible Collections"
669
690
  msgstr ""
670
691
 
@@ -713,6 +734,9 @@ msgstr "架構"
713
734
  msgid "Architecture of content in the repository"
714
735
  msgstr ""
715
736
 
737
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
738
+ msgstr ""
739
+
716
740
  msgid "Architecture(s)"
717
741
  msgstr "架構"
718
742
 
@@ -816,6 +840,9 @@ msgstr ""
816
840
  msgid "Auth URL requires Auth token be set."
817
841
  msgstr ""
818
842
 
843
+ msgid "Authentication type"
844
+ msgstr ""
845
+
819
846
  msgid "Author"
820
847
  msgstr "作者"
821
848
 
@@ -837,6 +864,9 @@ msgstr ""
837
864
  msgid "Autosearch delay"
838
865
  msgstr ""
839
866
 
867
+ msgid "Available"
868
+ msgstr ""
869
+
840
870
  msgid "Available Entitlements"
841
871
  msgstr ""
842
872
 
@@ -849,6 +879,9 @@ msgstr ""
849
879
  msgid "Backend System Status"
850
880
  msgstr "後端系統狀態"
851
881
 
882
+ msgid "Base URL"
883
+ msgstr ""
884
+
852
885
  msgid "Base URL for finding alternate content"
853
886
  msgstr ""
854
887
 
@@ -894,6 +927,9 @@ msgstr "將此搜尋加入書籤"
894
927
  msgid "Bookmarks marked as public are available to all users"
895
928
  msgstr ""
896
929
 
930
+ msgid "Both"
931
+ msgstr ""
932
+
897
933
  msgid "Both major and minor parameters have to be used to override a CV version"
898
934
  msgstr ""
899
935
 
@@ -915,6 +951,9 @@ msgstr ""
915
951
  msgid "Bulk remove versions from a content view and reassign systems and keys"
916
952
  msgstr ""
917
953
 
954
+ msgid "CA Cert"
955
+ msgstr ""
956
+
918
957
  msgid "CDN Configuration"
919
958
  msgstr ""
920
959
 
@@ -1149,6 +1188,9 @@ msgstr ""
1149
1188
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1150
1189
  msgstr ""
1151
1190
 
1191
+ msgid "Check if the specified organization has Simple Content Access enabled"
1192
+ msgstr ""
1193
+
1152
1194
  msgid "Check if the specified organization is eligible for Simple Content Access"
1153
1195
  msgstr ""
1154
1196
 
@@ -1158,9 +1200,6 @@ msgstr ""
1158
1200
  msgid "Checksum"
1159
1201
  msgstr "Checksum"
1160
1202
 
1161
- msgid "Checksum is a required parameter."
1162
- msgstr ""
1163
-
1164
1203
  msgid "Checksum of file to upload"
1165
1204
  msgstr ""
1166
1205
 
@@ -1173,12 +1212,21 @@ msgstr ""
1173
1212
  msgid "Clear any previous registration and run subscription-manager with --force."
1174
1213
  msgstr ""
1175
1214
 
1215
+ msgid "Clear filters"
1216
+ msgstr ""
1217
+
1218
+ msgid "Clear search"
1219
+ msgstr ""
1220
+
1176
1221
  msgid "Click here to go to the tasks page for the task."
1177
1222
  msgstr ""
1178
1223
 
1179
1224
  msgid "Click {update} below to save changes."
1180
1225
  msgstr ""
1181
1226
 
1227
+ msgid "Client key"
1228
+ msgstr ""
1229
+
1182
1230
  msgid "Clone"
1183
1231
  msgstr "複製"
1184
1232
 
@@ -1209,12 +1257,6 @@ msgstr "元件"
1209
1257
  msgid "Component Content View"
1210
1258
  msgstr ""
1211
1259
 
1212
- msgid "Component content view"
1213
- msgstr ""
1214
-
1215
- msgid "Component content views"
1216
- msgstr ""
1217
-
1218
1260
  msgid "Components"
1219
1261
  msgstr "元件"
1220
1262
 
@@ -1245,7 +1287,7 @@ msgstr ""
1245
1287
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1246
1288
  msgstr ""
1247
1289
 
1248
- msgid "Consisting of multiple component content views"
1290
+ msgid "Consisting of multiple content views"
1249
1291
  msgstr ""
1250
1292
 
1251
1293
  msgid "Consists of content views"
@@ -1377,6 +1419,12 @@ msgstr ""
1377
1419
  msgid "Content Views"
1378
1420
  msgstr "內容視域"
1379
1421
 
1422
+ msgid "Content credential"
1423
+ msgstr ""
1424
+
1425
+ msgid "Content credentials"
1426
+ msgstr ""
1427
+
1380
1428
  msgid "Content files to upload. Can be a single file or array of files."
1381
1429
  msgstr "欲上傳的內容檔案。能夠是單一檔案或檔案集。"
1382
1430
 
@@ -1494,6 +1542,9 @@ msgstr ""
1494
1542
  msgid "Copy version units to library"
1495
1543
  msgstr ""
1496
1544
 
1545
+ msgid "Cores per socket"
1546
+ msgstr ""
1547
+
1497
1548
  msgid "Cores: %s"
1498
1549
  msgstr "核心:%s"
1499
1550
 
@@ -1605,6 +1656,9 @@ msgstr "找不到軟體庫「%s」"
1605
1656
  msgid "Couldn't find smart proxies with id '%s'"
1606
1657
  msgstr ""
1607
1658
 
1659
+ msgid "Couldn't find smart proxies with name '%s'"
1660
+ msgstr ""
1661
+
1608
1662
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1609
1663
  msgstr "找不到特定的內容視域與生命週期環境。"
1610
1664
 
@@ -1617,6 +1671,9 @@ msgstr "計數"
1617
1671
  msgid "Create"
1618
1672
  msgstr "建立"
1619
1673
 
1674
+ msgid "Create ACS"
1675
+ msgstr ""
1676
+
1620
1677
  msgid "Create Alternate Content Source"
1621
1678
  msgstr ""
1622
1679
 
@@ -1632,12 +1689,18 @@ msgstr ""
1632
1689
  msgid "Create Repositories"
1633
1690
  msgstr ""
1634
1691
 
1692
+ msgid "Create Syncable Export History"
1693
+ msgstr ""
1694
+
1635
1695
  msgid "Create a Content Credential"
1636
1696
  msgstr ""
1637
1697
 
1638
1698
  msgid "Create a content view"
1639
1699
  msgstr "建立內容視域"
1640
1700
 
1701
+ msgid "Create a custom product"
1702
+ msgstr ""
1703
+
1641
1704
  msgid "Create a custom repository"
1642
1705
  msgstr "建立自訂軟體庫"
1643
1706
 
@@ -1677,16 +1740,28 @@ msgstr ""
1677
1740
  msgid "Create filter"
1678
1741
  msgstr ""
1679
1742
 
1743
+ msgid "Create host collection"
1744
+ msgstr ""
1745
+
1680
1746
  msgid "Create organization"
1681
1747
  msgstr "建立組織"
1682
1748
 
1749
+ msgid "Create package filter rule"
1750
+ msgstr ""
1751
+
1752
+ msgid "Create rule"
1753
+ msgstr ""
1754
+
1755
+ msgid "Credentials"
1756
+ msgstr ""
1757
+
1683
1758
  msgid "Critical"
1684
1759
  msgstr "重要"
1685
1760
 
1686
1761
  msgid "Cron expression is not valid!"
1687
1762
  msgstr ""
1688
1763
 
1689
- msgid "Current organization has no manifest imported."
1764
+ msgid "Current organization does not have a manifest imported."
1690
1765
  msgstr ""
1691
1766
 
1692
1767
  msgid "Current organization is not set."
@@ -1695,6 +1770,9 @@ msgstr ""
1695
1770
  msgid "Current organization not set."
1696
1771
  msgstr ""
1697
1772
 
1773
+ msgid "Custom"
1774
+ msgstr ""
1775
+
1698
1776
  msgid "Custom Content Repositories"
1699
1777
  msgstr "自訂內容軟體庫"
1700
1778
 
@@ -1707,6 +1785,9 @@ msgstr "無法停用自訂的軟體庫。"
1707
1785
  msgid "Customize with Rex"
1708
1786
  msgstr ""
1709
1787
 
1788
+ msgid "DEB name"
1789
+ msgstr ""
1790
+
1710
1791
  msgid "Database connection"
1711
1792
  msgstr "資料庫連線"
1712
1793
 
@@ -1722,12 +1803,18 @@ msgstr ""
1722
1803
  msgid "Days from Now"
1723
1804
  msgstr ""
1724
1805
 
1806
+ msgid "Deb"
1807
+ msgstr ""
1808
+
1725
1809
  msgid "Deb Package"
1726
1810
  msgstr ""
1727
1811
 
1728
1812
  msgid "Deb Packages"
1729
1813
  msgstr ""
1730
1814
 
1815
+ msgid "Deb name"
1816
+ msgstr ""
1817
+
1731
1818
  msgid "Deb package identifiers to filter content by"
1732
1819
  msgstr ""
1733
1820
 
@@ -1983,6 +2070,9 @@ msgstr "銷毀環境"
1983
2070
  msgid "Destroy an environment in an organization"
1984
2071
  msgstr "銷毀組織中的一個環境"
1985
2072
 
2073
+ msgid "Destroy one or more alternate content sources"
2074
+ msgstr ""
2075
+
1986
2076
  msgid "Destroy one or more hosts"
1987
2077
  msgstr "銷毀一或更多部主機"
1988
2078
 
@@ -2076,9 +2166,15 @@ msgstr ""
2076
2166
  msgid "Edit filter rule"
2077
2167
  msgstr ""
2078
2168
 
2169
+ msgid "Edit package filter rule"
2170
+ msgstr ""
2171
+
2079
2172
  msgid "Edit rule"
2080
2173
  msgstr ""
2081
2174
 
2175
+ msgid "Edit system purpose attributes"
2176
+ msgstr ""
2177
+
2082
2178
  msgid "Editing Entitlements"
2083
2179
  msgstr ""
2084
2180
 
@@ -2103,6 +2199,9 @@ msgstr ""
2103
2199
  msgid "Enable"
2104
2200
  msgstr "啟用"
2105
2201
 
2202
+ msgid "Enable Red Hat repositories"
2203
+ msgstr ""
2204
+
2106
2205
  msgid "Enable Simple Content Access"
2107
2206
  msgstr ""
2108
2207
 
@@ -2148,9 +2247,15 @@ msgstr "增強"
2148
2247
  msgid "Enter a name"
2149
2248
  msgstr ""
2150
2249
 
2250
+ msgid "Enter a name for your source."
2251
+ msgstr ""
2252
+
2151
2253
  msgid "Enter a valid date: MM/DD/YYYY"
2152
2254
  msgstr ""
2153
2255
 
2256
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2257
+ msgstr ""
2258
+
2154
2259
  msgid "Entitlements"
2155
2260
  msgstr ""
2156
2261
 
@@ -2292,6 +2397,11 @@ msgstr ""
2292
2397
  msgid "Export as CSV"
2293
2398
  msgstr ""
2294
2399
 
2400
+ msgid ""
2401
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2402
+ " Defaults to importable."
2403
+ msgstr ""
2404
+
2295
2405
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2296
2406
  msgstr ""
2297
2407
 
@@ -2341,6 +2451,9 @@ msgstr ""
2341
2451
  msgid "Fetch traces for one or more hosts"
2342
2452
  msgstr ""
2343
2453
 
2454
+ msgid "Fetching content credentials"
2455
+ msgstr ""
2456
+
2344
2457
  msgid "Field to sort the results on"
2345
2458
  msgstr "用來排序結果的欄位"
2346
2459
 
@@ -2431,6 +2544,9 @@ msgstr "篩選器"
2431
2544
  msgid "Filters deleted"
2432
2545
  msgstr ""
2433
2546
 
2547
+ msgid "Filters will appear here when the filter is created."
2548
+ msgstr ""
2549
+
2434
2550
  msgid "Finish"
2435
2551
  msgstr ""
2436
2552
 
@@ -2535,6 +2651,9 @@ msgstr "為指定的軟體庫取得同步化的狀態"
2535
2651
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2536
2652
  msgstr "給定一組主機與勘誤,列出需要更新的內容視域版本與環境。"
2537
2653
 
2654
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2655
+ msgstr ""
2656
+
2538
2657
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2539
2658
  msgstr ""
2540
2659
 
@@ -2565,6 +2684,9 @@ msgstr ""
2565
2684
  msgid "HTTP Proxy identifier to associated"
2566
2685
  msgstr ""
2567
2686
 
2687
+ msgid "HW properties"
2688
+ msgstr ""
2689
+
2568
2690
  msgid "Has to be > 0"
2569
2691
  msgstr ""
2570
2692
 
@@ -2772,9 +2894,6 @@ msgstr "同步計劃的 ID"
2772
2894
  msgid "ID: %s doesn't exist "
2773
2895
  msgstr "ID:%s 不存在"
2774
2896
 
2775
- msgid "Id"
2776
- msgstr ""
2777
-
2778
2897
  msgid "Id of a deb package to find repositories that contain the deb"
2779
2898
  msgstr ""
2780
2899
 
@@ -3051,6 +3170,9 @@ msgstr ""
3051
3170
  msgid "Index package groups"
3052
3171
  msgstr "為套件群組製作索引"
3053
3172
 
3173
+ msgid "Indicate the source type."
3174
+ msgstr ""
3175
+
3054
3176
  msgid "Informable Type must be one of the following [ %{list} ]"
3055
3177
  msgstr "Informable Type 必須是以下 [ %{list} ] 其中之一"
3056
3178
 
@@ -3138,6 +3260,9 @@ msgstr ""
3138
3260
  msgid "Installation status"
3139
3261
  msgstr ""
3140
3262
 
3263
+ msgid "Installed"
3264
+ msgstr ""
3265
+
3141
3266
  msgid "Installed Packages"
3142
3267
  msgstr "已安裝的套件"
3143
3268
 
@@ -3213,6 +3338,9 @@ msgstr "提供了無效的勘誤類型 %{invalid_types}。勘誤類型能夠是
3213
3338
  msgid "Invalid event_type %s"
3214
3339
  msgstr ""
3215
3340
 
3341
+ msgid "Invalid export format provided. Format must be one of %s "
3342
+ msgstr ""
3343
+
3216
3344
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3217
3345
  msgstr "指定了無效的篩選器規則,'version' 不可指定為與 'min_version' 或 'max_version' 相同的變數值組"
3218
3346
 
@@ -3231,6 +3359,9 @@ msgstr "提供了無效的參數 - content_type 必須是 %s 之一"
3231
3359
  msgid "Invalid params provided - date_type must be one of %s"
3232
3360
  msgstr "提供了無效的參數 - date_type 必須是 %s 之一"
3233
3361
 
3362
+ msgid "Invalid release version: [%s]"
3363
+ msgstr ""
3364
+
3234
3365
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3235
3366
  msgstr ""
3236
3367
 
@@ -3249,7 +3380,10 @@ msgstr "已簽發"
3249
3380
  msgid "Issued from"
3250
3381
  msgstr ""
3251
3382
 
3252
- msgid "Job ${description} has started."
3383
+ msgid "Job '${description}' completed"
3384
+ msgstr ""
3385
+
3386
+ msgid "Job '${description}' has started."
3253
3387
  msgstr ""
3254
3388
 
3255
3389
  msgid "Katello ID of local pool to update"
@@ -3321,9 +3455,18 @@ msgstr "內容的標籤"
3321
3455
  msgid "Label of the content view"
3322
3456
  msgstr ""
3323
3457
 
3458
+ msgid "Last Refresh"
3459
+ msgstr ""
3460
+
3461
+ msgid "Last check-in:"
3462
+ msgstr ""
3463
+
3324
3464
  msgid "Last published"
3325
3465
  msgstr ""
3326
3466
 
3467
+ msgid "Last refresh :"
3468
+ msgstr ""
3469
+
3327
3470
  msgid "Last task"
3328
3471
  msgstr ""
3329
3472
 
@@ -3504,6 +3647,9 @@ msgstr ""
3504
3647
  msgid "List of Products for sync plan"
3505
3648
  msgstr "同步計畫的產品清單"
3506
3649
 
3650
+ msgid "List of alternate content source IDs"
3651
+ msgstr ""
3652
+
3507
3653
  msgid "List of alternate_content_sources"
3508
3654
  msgstr ""
3509
3655
 
@@ -3702,6 +3848,12 @@ msgstr ""
3702
3848
  msgid "Manifest refreshed"
3703
3849
  msgstr ""
3704
3850
 
3851
+ msgid "Manual"
3852
+ msgstr ""
3853
+
3854
+ msgid "Manual authentication"
3855
+ msgstr ""
3856
+
3705
3857
  msgid "Mark Content Host Statuses as Unknown for %s"
3706
3858
  msgstr ""
3707
3859
 
@@ -3765,6 +3917,9 @@ msgstr ""
3765
3917
  msgid "Missing arguments %{substitutions} for %{content_url}"
3766
3918
  msgstr "沒有引數 %{substitutions} 給 %{content_url}"
3767
3919
 
3920
+ msgid "Model"
3921
+ msgstr ""
3922
+
3768
3923
  msgid "Moderate"
3769
3924
  msgstr "控管"
3770
3925
 
@@ -3786,7 +3941,7 @@ msgstr ""
3786
3941
  msgid "Module streams"
3787
3942
  msgstr ""
3788
3943
 
3789
- msgid "Module streams will appear here when available."
3944
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3790
3945
  msgstr ""
3791
3946
 
3792
3947
  msgid "Multi-entitlement"
@@ -3820,9 +3975,6 @@ msgstr ""
3820
3975
  msgid "Name"
3821
3976
  msgstr "名稱"
3822
3977
 
3823
- msgid "Name is a required parameter."
3824
- msgstr ""
3825
-
3826
3978
  msgid "Name of new activation key"
3827
3979
  msgstr "新啟動金鑰的名稱"
3828
3980
 
@@ -3844,6 +3996,12 @@ msgstr ""
3844
3996
  msgid "Name of the upstream docker repository"
3845
3997
  msgstr ""
3846
3998
 
3999
+ msgid "Name source"
4000
+ msgstr ""
4001
+
4002
+ msgid "Names of smart proxies to associate"
4003
+ msgstr ""
4004
+
3847
4005
  msgid "Needs to only be set for docker tags"
3848
4006
  msgstr ""
3849
4007
 
@@ -3856,6 +4014,9 @@ msgstr "巢狀"
3856
4014
  msgid "Network Sync"
3857
4015
  msgstr ""
3858
4016
 
4017
+ msgid "Never"
4018
+ msgstr ""
4019
+
3859
4020
  msgid "Never Synced"
3860
4021
  msgstr "從未同步"
3861
4022
 
@@ -4030,6 +4191,9 @@ msgstr ""
4030
4191
  msgid "No matching ${selectedContentType} found"
4031
4192
  msgstr ""
4032
4193
 
4194
+ msgid "No matching DEB found."
4195
+ msgstr ""
4196
+
4033
4197
  msgid "No matching RPM found."
4034
4198
  msgstr ""
4035
4199
 
@@ -4189,6 +4353,9 @@ msgstr ""
4189
4353
  msgid "Not all necessary pulp workers running at %s."
4190
4354
  msgstr ""
4191
4355
 
4356
+ msgid "Not installed"
4357
+ msgstr ""
4358
+
4192
4359
  msgid "Not running"
4193
4360
  msgstr ""
4194
4361
 
@@ -4207,6 +4374,9 @@ msgstr "請注意:括號中的數字反映了來自於主機所無法使用之
4207
4374
  msgid "Nothing selected"
4208
4375
  msgstr ""
4209
4376
 
4377
+ msgid "Number of CPU(s)"
4378
+ msgstr ""
4379
+
4210
4380
  msgid "Number of host applicability calculations to process per task."
4211
4381
  msgstr ""
4212
4382
 
@@ -4219,6 +4389,9 @@ msgstr ""
4219
4389
  msgid "Number to Allocate"
4220
4390
  msgstr ""
4221
4391
 
4392
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4393
+ msgstr ""
4394
+
4222
4395
  msgid "OSTree Branch"
4223
4396
  msgstr "OSTree 分支"
4224
4397
 
@@ -4534,12 +4707,6 @@ msgstr ""
4534
4707
  msgid "Path"
4535
4708
  msgstr "路徑"
4536
4709
 
4537
- msgid "Path for ssl cert used for pulp server auth"
4538
- msgstr "pulp 伺服器授權所使用的 SSL 金鑰憑證"
4539
-
4540
- msgid "Path for ssl key used for pulp server auth"
4541
- msgstr "pulp 伺服器授權所使用的 SSL 金鑰路徑"
4542
-
4543
4710
  msgid "Path suffixes for finding alternate content"
4544
4711
  msgstr ""
4545
4712
 
@@ -4806,12 +4973,6 @@ msgstr ""
4806
4973
  msgid "Pulp bulk load size"
4807
4974
  msgstr ""
4808
4975
 
4809
- msgid "Pulp client cert"
4810
- msgstr ""
4811
-
4812
- msgid "Pulp client key"
4813
- msgstr ""
4814
-
4815
4976
  msgid "Pulp database connection issue at %s."
4816
4977
  msgstr ""
4817
4978
 
@@ -4890,6 +5051,9 @@ msgstr "要新增此訂閱的數量"
4890
5051
  msgid "Quantity to Allocate"
4891
5052
  msgstr ""
4892
5053
 
5054
+ msgid "RAM"
5055
+ msgstr ""
5056
+
4893
5057
  msgid "RAM: %s GB"
4894
5058
  msgstr "記憶體:%s GB"
4895
5059
 
@@ -4989,15 +5153,27 @@ msgstr "不能操控 Red Hat 軟體庫"
4989
5153
  msgid "Refresh"
4990
5154
  msgstr "重新整理"
4991
5155
 
5156
+ msgid "Refresh Alternate Content Source"
5157
+ msgstr ""
5158
+
4992
5159
  msgid "Refresh Content Host Statuses for %s"
4993
5160
  msgstr ""
4994
5161
 
4995
5162
  msgid "Refresh Manifest"
4996
5163
  msgstr "更新清單"
4997
5164
 
5165
+ msgid "Refresh alternate content sources"
5166
+ msgstr ""
5167
+
5168
+ msgid "Refresh an alternate content source"
5169
+ msgstr ""
5170
+
4998
5171
  msgid "Refresh previously imported manifest for Red Hat provider"
4999
5172
  msgstr "為 Red Hat 供應者更新之前匯入的清單"
5000
5173
 
5174
+ msgid "Refresh source"
5175
+ msgstr ""
5176
+
5001
5177
  msgid "Refresh_Content_Host_Status"
5002
5178
  msgstr ""
5003
5179
 
@@ -5031,24 +5207,27 @@ msgstr ""
5031
5207
  msgid "Reindex subscriptions"
5032
5208
  msgstr "重新索引訂閱服務"
5033
5209
 
5034
- msgid "Related component content views"
5210
+ msgid "Related composite content views"
5035
5211
  msgstr ""
5036
5212
 
5037
- msgid "Related component cvs: "
5213
+ msgid "Related composite content views: "
5038
5214
  msgstr ""
5039
5215
 
5040
- msgid "Related composite content views"
5216
+ msgid "Related content views"
5041
5217
  msgstr ""
5042
5218
 
5043
- msgid "Related composite cvs: "
5219
+ msgid "Related content views will appear here when created."
5044
5220
  msgstr ""
5045
5221
 
5046
- msgid "Related content views will appear here when created."
5222
+ msgid "Related content views: "
5047
5223
  msgstr ""
5048
5224
 
5049
5225
  msgid "Release"
5050
5226
  msgstr "發行版"
5051
5227
 
5228
+ msgid "Release version"
5229
+ msgstr ""
5230
+
5052
5231
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5053
5232
  msgstr ""
5054
5233
 
@@ -5067,6 +5246,9 @@ msgstr "重新載入資料"
5067
5246
  msgid "Remote action:"
5068
5247
  msgstr "遠端動作:"
5069
5248
 
5249
+ msgid "Remote execution job '${description}' failed."
5250
+ msgstr ""
5251
+
5070
5252
  msgid "Removal of package group(s) requested: %{groups}"
5071
5253
  msgstr ""
5072
5254
 
@@ -5262,7 +5444,7 @@ msgstr ""
5262
5444
  msgid "Repository sets reset to default"
5263
5445
  msgstr ""
5264
5446
 
5265
- msgid "Repository sets will appear here when available."
5447
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5266
5448
  msgstr ""
5267
5449
 
5268
5450
  msgid "Republish Repositories of %{name} %{version}"
@@ -5397,6 +5579,9 @@ msgstr ""
5397
5579
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5398
5580
  msgstr ""
5399
5581
 
5582
+ msgid "Return same, different or all results"
5583
+ msgstr ""
5584
+
5400
5585
  msgid "Return subscriptions that match installed products of the specified host"
5401
5586
  msgstr "回傳符合特定主機上已安裝項目的訂閱服務"
5402
5587
 
@@ -5415,6 +5600,9 @@ msgstr ""
5415
5600
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5416
5601
  msgstr ""
5417
5602
 
5603
+ msgid "Review Details"
5604
+ msgstr ""
5605
+
5418
5606
  msgid "Review affected environment"
5419
5607
  msgstr ""
5420
5608
 
@@ -5451,12 +5639,27 @@ msgstr "執行中"
5451
5639
  msgid "SKU"
5452
5640
  msgstr ""
5453
5641
 
5642
+ msgid "SLA"
5643
+ msgstr ""
5644
+
5454
5645
  msgid "SRPM details"
5455
5646
  msgstr ""
5456
5647
 
5457
5648
  msgid "SSL CA Content Credential"
5458
5649
  msgstr ""
5459
5650
 
5651
+ msgid "SSL CA certificate"
5652
+ msgstr ""
5653
+
5654
+ msgid "SSL Cert"
5655
+ msgstr ""
5656
+
5657
+ msgid "SSL client certificate"
5658
+ msgstr ""
5659
+
5660
+ msgid "SSL client key"
5661
+ msgstr ""
5662
+
5460
5663
  msgid "SSL version used to communicate with the CDN"
5461
5664
  msgstr ""
5462
5665
 
@@ -5466,6 +5669,9 @@ msgstr ""
5466
5669
  msgid "Save"
5467
5670
  msgstr "儲存"
5468
5671
 
5672
+ msgid "Saving alternate content source..."
5673
+ msgstr ""
5674
+
5469
5675
  msgid "Schedule errata for installation using katello-agent. %s"
5470
5676
  msgstr ""
5471
5677
 
@@ -5535,6 +5741,15 @@ msgstr "選擇組織"
5535
5741
  msgid "Select Value"
5536
5742
  msgstr ""
5537
5743
 
5744
+ msgid "Select a CA certificate"
5745
+ msgstr ""
5746
+
5747
+ msgid "Select a client certificate"
5748
+ msgstr ""
5749
+
5750
+ msgid "Select a client key"
5751
+ msgstr ""
5752
+
5538
5753
  msgid "Select a content view"
5539
5754
  msgstr ""
5540
5755
 
@@ -5550,6 +5765,9 @@ msgstr ""
5550
5765
  msgid "Select a provider to install katello-host-tools-tracer"
5551
5766
  msgstr ""
5552
5767
 
5768
+ msgid "Select add-ons"
5769
+ msgstr ""
5770
+
5553
5771
  msgid "Select all"
5554
5772
  msgstr ""
5555
5773
 
@@ -5571,7 +5789,7 @@ msgstr ""
5571
5789
  msgid "Select available version of ${cvName} to use"
5572
5790
  msgstr ""
5573
5791
 
5574
- msgid "Select available version of components to use"
5792
+ msgid "Select available version of content views to use"
5575
5793
  msgstr ""
5576
5794
 
5577
5795
  msgid "Select content view"
@@ -5607,6 +5825,18 @@ msgstr ""
5607
5825
  msgid "Select row"
5608
5826
  msgstr ""
5609
5827
 
5828
+ msgid "Select smart proxies to be used with this source."
5829
+ msgstr ""
5830
+
5831
+ msgid "Select smart proxy"
5832
+ msgstr ""
5833
+
5834
+ msgid "Select source type"
5835
+ msgstr ""
5836
+
5837
+ msgid "Select system purpose attributes for host {hostName}."
5838
+ msgstr ""
5839
+
5610
5840
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5611
5841
  msgstr "選擇要用來佈建此主機的安裝媒介。請為已同步的 Kickstart 軟體庫選擇「已同步內容」、或為其它媒介選擇「所有媒介」。"
5612
5842
 
@@ -5736,6 +5966,9 @@ msgstr "顯示啟動金鑰的可用發行版本"
5736
5966
  msgid "Show releases available for the content host"
5737
5967
  msgstr "顯示內容主機的可用發行版本"
5738
5968
 
5969
+ msgid "Show repositories enabled on the host that are known to Katello"
5970
+ msgstr ""
5971
+
5739
5972
  msgid "Show the available repository types"
5740
5973
  msgstr "顯示可用軟體庫類型"
5741
5974
 
@@ -5769,12 +6002,18 @@ msgstr ""
5769
6002
  msgid "Skipped pulp_auth check after failed pulp check"
5770
6003
  msgstr "pulp 檢查失敗後,跳過 pulp_auth"
5771
6004
 
6005
+ msgid "Smart proxies"
6006
+ msgstr ""
6007
+
5772
6008
  msgid "Smart proxy IDs"
5773
6009
  msgstr "智慧型代理伺服器的 ID"
5774
6010
 
5775
6011
  msgid "Smart proxy content source not found!"
5776
6012
  msgstr ""
5777
6013
 
6014
+ msgid "Sockets"
6015
+ msgstr ""
6016
+
5778
6017
  msgid "Sockets: %s"
5779
6018
  msgstr "插槽:%s"
5780
6019
 
@@ -5868,6 +6107,9 @@ msgstr ""
5868
6107
  msgid "Something went wrong while loading the content views. See the logs for more information"
5869
6108
  msgstr ""
5870
6109
 
6110
+ msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6111
+ msgstr ""
6112
+
5871
6113
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5872
6114
  msgstr ""
5873
6115
 
@@ -5919,6 +6161,9 @@ msgstr "來源 RPM"
5919
6161
  msgid "Source RPMs"
5920
6162
  msgstr "來源 RPM"
5921
6163
 
6164
+ msgid "Source type"
6165
+ msgstr ""
6166
+
5922
6167
  msgid "Specify an export chunk size less than 1_000_000 GB"
5923
6168
  msgstr ""
5924
6169
 
@@ -5976,6 +6221,9 @@ msgstr "提交"
5976
6221
  msgid "Subnet IDs"
5977
6222
  msgstr "子網路的 ID"
5978
6223
 
6224
+ msgid "Subpaths"
6225
+ msgstr ""
6226
+
5979
6227
  msgid "Subscription"
5980
6228
  msgstr "訂閱"
5981
6229
 
@@ -6075,6 +6323,9 @@ msgstr "已成功變更 %s 產品的同步計畫"
6075
6323
  msgid "Successfully initiated removal of %s product(s)"
6076
6324
  msgstr "已成功開始移除 %s 項產品之活動"
6077
6325
 
6326
+ msgid "Successfully refreshed."
6327
+ msgstr ""
6328
+
6078
6329
  msgid "Successfully removed %s Host(s)."
6079
6330
  msgstr "已成功移除 %s 台主機。"
6080
6331
 
@@ -6165,6 +6416,9 @@ msgstr "同步要連接的計畫識別子"
6165
6416
  msgid "Sync state"
6166
6417
  msgstr ""
6167
6418
 
6419
+ msgid "Syncable export"
6420
+ msgstr ""
6421
+
6168
6422
  msgid "Synced "
6169
6423
  msgstr ""
6170
6424
 
@@ -6213,6 +6467,12 @@ msgstr "系統狀態"
6213
6467
  msgid "System purpose"
6214
6468
  msgstr ""
6215
6469
 
6470
+ msgid "System purpose allows you to set the system\\'s intended use on your network and improves the reporting of usage in Subscription Watch."
6471
+ msgstr ""
6472
+
6473
+ msgid "System purpose attributes updated"
6474
+ msgstr ""
6475
+
6216
6476
  msgid "Tag name"
6217
6477
  msgstr ""
6218
6478
 
@@ -6379,6 +6639,9 @@ msgstr "推送 %{content_view} 至 <b>%{environment}</b> 的程序已完成。
6379
6639
  msgid "The repository is already enabled"
6380
6640
  msgstr "軟體庫已啟用"
6381
6641
 
6642
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6643
+ msgstr ""
6644
+
6382
6645
  msgid "The request did not contain any repository information."
6383
6646
  msgstr ""
6384
6647
 
@@ -6445,6 +6708,9 @@ msgstr "未指定環境或是版本,或是指定了無效的環境/版本。
6445
6708
  msgid "There is no Manifest History to display."
6446
6709
  msgstr ""
6447
6710
 
6711
+ msgid "There is no downloaded content to clean."
6712
+ msgstr ""
6713
+
6448
6714
  msgid "There is no such HTTP proxy"
6449
6715
  msgstr ""
6450
6716
 
@@ -6601,6 +6867,9 @@ msgstr ""
6601
6867
  msgid "Total steps: "
6602
6868
  msgstr ""
6603
6869
 
6870
+ msgid "Tracer"
6871
+ msgstr ""
6872
+
6604
6873
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6605
6874
  msgstr ""
6606
6875
 
@@ -6610,18 +6879,30 @@ msgstr ""
6610
6879
  msgid "Traces"
6611
6880
  msgstr ""
6612
6881
 
6882
+ msgid "Traces are being enabled"
6883
+ msgstr ""
6884
+
6613
6885
  msgid "Traces are not enabled"
6614
6886
  msgstr ""
6615
6887
 
6616
6888
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6617
6889
  msgstr ""
6618
6890
 
6891
+ msgid "Traces may be enabled by a user with the appropriate permissions."
6892
+ msgstr ""
6893
+
6619
6894
  msgid "Traces may be listed here after {pkgLink}."
6620
6895
  msgstr ""
6621
6896
 
6897
+ msgid "Traces not available"
6898
+ msgstr ""
6899
+
6622
6900
  msgid "Traces that require logout cannot be restarted remotely"
6623
6901
  msgstr ""
6624
6902
 
6903
+ msgid "Traces will be shown here to a user with the appropriate permissions."
6904
+ msgstr ""
6905
+
6625
6906
  msgid "Trigger an auto-attach of subscriptions"
6626
6907
  msgstr "觸發自動連接訂閱服務"
6627
6908
 
@@ -6655,6 +6936,9 @@ msgstr ""
6655
6936
  msgid "URL"
6656
6937
  msgstr "URL"
6657
6938
 
6939
+ msgid "URL and paths"
6940
+ msgstr ""
6941
+
6658
6942
  msgid "URL needs to have a trailing /"
6659
6943
  msgstr ""
6660
6944
 
@@ -6688,6 +6972,9 @@ msgstr "無法連線"
6688
6972
  msgid "Unable to connect. Got: %s"
6689
6973
  msgstr "無法連線。收到:%s"
6690
6974
 
6975
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
6976
+ msgstr ""
6977
+
6691
6978
  msgid "Unable to detect pulp storage"
6692
6979
  msgstr "無法偵測 pulp 儲存"
6693
6980
 
@@ -6721,6 +7008,9 @@ msgstr "無法重新指定內容主機。請指定 system_content_view_id 與 sy
6721
7008
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6722
7009
  msgstr "無法重新指定系統。請檢查 system_content_view_id 與 system_environment_id。"
6723
7010
 
7011
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7012
+ msgstr ""
7013
+
6724
7014
  msgid "Unable to send errata e-mail notification: %{error}"
6725
7015
  msgstr "無法收到勘誤的電子郵件通知:%{error}"
6726
7016
 
@@ -7054,6 +7344,9 @@ msgstr ""
7054
7344
  msgid "Usage of host"
7055
7345
  msgstr ""
7056
7346
 
7347
+ msgid "Usage type"
7348
+ msgstr ""
7349
+
7057
7350
  msgid "Use remote execution by default"
7058
7351
  msgstr ""
7059
7352
 
@@ -7099,6 +7392,9 @@ msgstr "有效"
7099
7392
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7100
7393
  msgstr ""
7101
7394
 
7395
+ msgid "Verify SSL"
7396
+ msgstr ""
7397
+
7102
7398
  msgid "Verify checksum"
7103
7399
  msgstr ""
7104
7400
 
@@ -7159,7 +7455,10 @@ msgstr ""
7159
7455
  msgid "View tasks "
7160
7456
  msgstr ""
7161
7457
 
7162
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7458
+ msgid "View the Content Views page"
7459
+ msgstr ""
7460
+
7461
+ msgid "View the job"
7163
7462
  msgstr ""
7164
7463
 
7165
7464
  msgid "Virtual"
@@ -7309,6 +7608,9 @@ msgstr ""
7309
7608
  msgid "Your search returned no matching "
7310
7609
  msgstr ""
7311
7610
 
7611
+ msgid "Your search returned no matching DEBs."
7612
+ msgstr ""
7613
+
7312
7614
  msgid "Your search returned no matching Module streams."
7313
7615
  msgstr ""
7314
7616
 
@@ -7321,6 +7623,9 @@ msgstr ""
7321
7623
  msgid "Your search returned no matching hosts."
7322
7624
  msgstr ""
7323
7625
 
7626
+ msgid "Yum"
7627
+ msgstr ""
7628
+
7324
7629
  msgid "Yum Metadata: %s"
7325
7630
  msgstr "Yum Metadata:%s"
7326
7631
 
@@ -7555,7 +7860,7 @@ msgstr "欲進行比較的內容視域版本"
7555
7860
  msgid "create a filter for a content view"
7556
7861
  msgstr "為內容視域建立篩選器"
7557
7862
 
7558
- msgid "deb Packages"
7863
+ msgid "deb, package, package group, or docker tag names"
7559
7864
  msgstr ""
7560
7865
 
7561
7866
  msgid "deb_ids is not an array"
@@ -7582,6 +7887,9 @@ msgstr "篩選器描述"
7582
7887
  msgid "description of the repository"
7583
7888
  msgstr ""
7584
7889
 
7890
+ msgid "disk"
7891
+ msgstr ""
7892
+
7585
7893
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7586
7894
  msgstr ""
7587
7895
 
@@ -8074,7 +8382,7 @@ msgstr "如果此軟體庫可以透過 HTTP 出版,設為真"
8074
8382
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8075
8383
  msgstr ""
8076
8384
 
8077
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8385
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8078
8386
  msgstr ""
8079
8387
 
8080
8388
  msgid "type of repo"