katello 4.6.2.1 → 4.7.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (333) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +4 -4
  5. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +1 -0
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +2 -1
  9. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/organizations_controller.rb +1 -0
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +78 -12
  12. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  13. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -1
  14. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  15. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -9
  16. data/app/helpers/katello/content_source_helper.rb +9 -0
  17. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +31 -0
  18. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  19. data/app/lib/actions/katello/agent_action.rb +1 -0
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +1 -1
  21. data/app/lib/actions/katello/alternate_content_source/update.rb +2 -2
  22. data/app/lib/actions/katello/capsule_content/sync.rb +10 -2
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  24. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  25. data/app/lib/actions/katello/content_view/publish.rb +5 -2
  26. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  27. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  28. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  29. data/app/lib/actions/katello/product/destroy.rb +1 -1
  30. data/app/lib/actions/katello/repository/destroy.rb +3 -3
  31. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +1 -1
  33. data/app/lib/actions/katello/repository/sync.rb +13 -6
  34. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  35. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  36. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +1 -0
  37. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +1 -1
  38. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +10 -2
  39. data/app/lib/katello/concerns/renderer_extensions.rb +2 -1
  40. data/app/lib/katello/errors.rb +2 -2
  41. data/app/lib/katello/resources/candlepin.rb +7 -1
  42. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  43. data/app/lib/katello/resources/cdn.rb +14 -9
  44. data/app/lib/katello/util/candlepin_repository_checker.rb +73 -0
  45. data/app/models/katello/activation_key.rb +12 -1
  46. data/app/models/katello/alternate_content_source.rb +15 -4
  47. data/app/models/katello/alternate_content_source_product.rb +1 -1
  48. data/app/models/katello/authorization/repository.rb +2 -2
  49. data/app/models/katello/cdn_configuration.rb +12 -3
  50. data/app/models/katello/concerns/host_managed_extensions.rb +15 -2
  51. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  52. data/app/models/katello/concerns/smart_proxy_extensions.rb +30 -15
  53. data/app/models/katello/content.rb +15 -0
  54. data/app/models/katello/content_credential.rb +8 -9
  55. data/app/models/katello/content_view.rb +7 -3
  56. data/app/models/katello/content_view_component.rb +4 -0
  57. data/app/models/katello/content_view_version.rb +1 -1
  58. data/app/models/katello/erratum.rb +6 -2
  59. data/app/models/katello/host/content_facet.rb +13 -3
  60. data/app/models/katello/repository.rb +15 -1
  61. data/app/models/katello/root_repository.rb +0 -2
  62. data/app/overrides/add_smart_proxy_form.rb +5 -0
  63. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  64. data/app/presenters/katello/host_package_presenter.rb +4 -4
  65. data/app/services/katello/pulp3/alternate_content_source.rb +23 -15
  66. data/app/services/katello/pulp3/ansible_collection.rb +7 -10
  67. data/app/services/katello/pulp3/content_view_version/export.rb +19 -6
  68. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  69. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  70. data/app/services/katello/pulp3/content_view_version/importable_products.rb +11 -1
  71. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  72. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  73. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  74. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +5 -1
  75. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  76. data/app/services/katello/pulp3/repository.rb +18 -6
  77. data/app/services/katello/pulp3/repository_mirror.rb +0 -1
  78. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +2 -2
  79. data/app/services/katello/pulp3/task_group.rb +18 -1
  80. data/app/services/katello/repository_type.rb +5 -2
  81. data/app/services/katello/repository_type_manager.rb +4 -3
  82. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  83. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  84. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  85. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +4 -4
  86. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  87. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  88. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  89. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  90. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  91. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  92. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  93. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  94. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  95. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  96. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  97. data/config/initializers/monkeys.rb +1 -0
  98. data/config/routes/api/v2.rb +2 -0
  99. data/config/routes.rb +3 -0
  100. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  101. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  102. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  103. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  104. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +5 -5
  105. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -3
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +14 -1392
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  120. data/lib/katello/permission_creator.rb +1 -0
  121. data/lib/katello/plugin.rb +34 -11
  122. data/lib/katello/repository_types/deb.rb +1 -1
  123. data/lib/katello/repository_types/docker.rb +1 -1
  124. data/lib/katello/repository_types/python.rb +3 -3
  125. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  126. data/lib/katello/tasks/reset.rake +1 -1
  127. data/lib/katello/version.rb +1 -1
  128. data/lib/monkeys/try_pulp_container_path.rb +35 -0
  129. data/locale/action_names.rb +7 -7
  130. data/locale/bn/katello.po +395 -63
  131. data/locale/cs/katello.po +396 -64
  132. data/locale/de/katello.po +399 -67
  133. data/locale/en/katello.po +395 -63
  134. data/locale/es/katello.po +399 -67
  135. data/locale/fr/katello.po +400 -68
  136. data/locale/gu/katello.po +395 -63
  137. data/locale/hi/katello.po +395 -63
  138. data/locale/it/katello.po +396 -64
  139. data/locale/ja/katello.po +400 -68
  140. data/locale/katello.pot +1916 -1213
  141. data/locale/kn/katello.po +395 -63
  142. data/locale/ko/katello.po +396 -64
  143. data/locale/mr/katello.po +395 -63
  144. data/locale/or/katello.po +395 -63
  145. data/locale/pa/katello.po +395 -63
  146. data/locale/pt/katello.po +395 -63
  147. data/locale/pt_BR/katello.po +399 -67
  148. data/locale/ru/katello.po +396 -64
  149. data/locale/ta/katello.po +395 -63
  150. data/locale/te/katello.po +395 -63
  151. data/locale/zh_CN/katello.po +400 -68
  152. data/locale/zh_TW/katello.po +396 -64
  153. data/webpack/components/Bookmark/index.js +5 -1
  154. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  155. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  156. data/webpack/components/EditableSwitch.js +1 -0
  157. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
  158. data/webpack/components/Errata/errataHelpers.js +33 -0
  159. data/webpack/components/Errata/index.js +45 -12
  160. data/webpack/components/Loading.js +18 -8
  161. data/webpack/components/Packages/index.js +8 -24
  162. data/webpack/components/RoutedTabs/index.js +1 -0
  163. data/webpack/components/Search/Search.js +20 -2
  164. data/webpack/components/Search/__tests__/search.test.js +3 -3
  165. data/webpack/components/Table/EmptyStateMessage.js +1 -1
  166. data/webpack/components/Table/PageControls.js +1 -0
  167. data/webpack/components/Table/TableHooks.js +4 -0
  168. data/webpack/components/Table/TableWrapper.js +7 -7
  169. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  170. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  171. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  172. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +3 -1
  173. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  174. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +124 -68
  175. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  176. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  177. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  178. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +5 -4
  179. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  180. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -3
  181. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +6 -0
  182. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +145 -32
  183. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +3 -1
  184. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  185. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  186. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +78 -26
  187. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -10
  188. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  189. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +9 -4
  190. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +141 -23
  191. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  192. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  193. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +24 -3
  194. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  195. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  196. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +20 -4
  197. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +56 -38
  198. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  199. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +5 -4
  200. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +3 -3
  201. data/webpack/containers/Application/config.js +2 -2
  202. data/webpack/containers/Application/overrides.scss +12 -0
  203. data/webpack/global_test_setup.js +19 -1
  204. data/webpack/ouia_id_check.js +0 -2
  205. data/webpack/redux/actions/RedHatRepositories/helpers.js +4 -8
  206. data/webpack/scenes/AlternateContentSources/ACSActions.js +37 -6
  207. data/webpack/scenes/AlternateContentSources/ACSConstants.js +2 -0
  208. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  209. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +6 -6
  210. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  211. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +24 -3
  212. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +10 -8
  213. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +25 -4
  214. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +22 -11
  215. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +27 -2
  216. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +49 -17
  217. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +76 -23
  218. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +159 -11
  219. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +83 -29
  220. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -8
  221. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +2 -2
  222. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +2 -2
  223. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +39 -7
  224. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +27 -11
  225. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +58 -55
  226. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +35 -32
  227. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +323 -150
  228. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  229. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -11
  230. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  231. data/webpack/scenes/ContentViews/ContentViewsConstants.js +1 -0
  232. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  233. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  234. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  235. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -5
  236. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  237. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  238. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  239. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  240. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +1 -0
  241. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +1 -0
  242. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  243. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  244. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  245. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  246. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -1
  247. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +14 -0
  248. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +11 -1
  249. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +1 -1
  250. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  251. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +5 -0
  252. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  253. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +1 -0
  254. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +8 -2
  255. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +5 -1
  256. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +22 -6
  257. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +19 -9
  258. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +9 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +9 -2
  260. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +8 -2
  261. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +1 -1
  262. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  263. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +3 -2
  264. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -1
  265. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +2 -2
  266. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +1 -1
  267. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -1
  268. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +1 -1
  269. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +2 -2
  270. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  271. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +2 -1
  272. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +9 -1
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +83 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +32 -8
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +56 -3
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +6 -2
  279. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  280. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +1 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +1 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +2 -2
  283. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  284. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +2 -2
  285. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  287. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +5 -4
  288. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  289. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  290. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +10 -5
  291. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  292. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  293. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +81 -19
  294. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  295. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  296. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  297. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  298. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +3 -2
  299. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -11
  300. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +15 -8
  301. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  302. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  303. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  304. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  305. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  306. data/webpack/scenes/Hosts/ChangeContentSource/index.js +46 -41
  307. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +5 -5
  308. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  309. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  310. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  311. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  312. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  313. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +10 -25
  314. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  315. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  316. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  317. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  318. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  319. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  320. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  321. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  322. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -1
  323. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  324. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +5 -5
  325. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  326. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  327. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
  328. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +3 -3
  329. data/webpack/scenes/Tasks/helpers.js +14 -7
  330. metadata +54 -35
  331. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +0 -18
  332. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +0 -5
  333. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
data/locale/ja/katello.po CHANGED
@@ -53,6 +53,12 @@ msgstr " 最新のコンテンツビューまたはコンテンツビューバ
53
53
  msgid " RPMs"
54
54
  msgstr " RPM"
55
55
 
56
+ msgid " The base path can be a web address or a filesystem location."
57
+ msgstr ""
58
+
59
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
60
+ msgstr ""
61
+
56
62
  msgid " View task details "
57
63
  msgstr " タスクの詳細を表示する "
58
64
 
@@ -83,12 +89,18 @@ msgstr "見つかりませんでした。"
83
89
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
84
90
  msgstr " 環境パスの順序から外れています。推奨される方法は、パス内の次の環境にプロモートすることです。"
85
91
 
92
+ msgid " or any step on the left."
93
+ msgstr ""
94
+
86
95
  msgid " to manage and promote content views, or select a different environment."
87
96
  msgstr ""
88
97
 
89
98
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
90
99
  msgstr "${deleteFlow ? 'Deleting' : 'Removing'} バージョン ${versionNameToRemove}"
91
100
 
101
+ msgid "${option}"
102
+ msgstr ""
103
+
92
104
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
93
105
  msgstr "${pluralize(akResponse.length, 'activation key')} は、コンテンツビュー ${selectedCVNameForAK} に移動されます "
94
106
 
@@ -330,6 +342,24 @@ msgstr "%{used} / %{total}"
330
342
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
331
343
  msgstr "コンテンツビューと環境が同じ組織内にないため、%{view_label} を %{environment_label} にプロモートできませんでした!"
332
344
 
345
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
346
+ msgstr ""
347
+
348
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
349
+ msgstr ""
350
+
351
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
352
+ msgstr ""
353
+
354
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
355
+ msgstr ""
356
+
357
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
358
+ msgstr ""
359
+
360
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
361
+ msgstr ""
362
+
333
363
  msgid "(Orphaned)"
334
364
  msgstr "(単独)"
335
365
 
@@ -549,11 +579,11 @@ msgstr "Red Hat Subscription Management からマニフェストが使用する
549
579
  msgid "Add subscriptions to one or more hosts"
550
580
  msgstr "1 つ以上のホストにサブスクリプションを追加します"
551
581
 
552
- msgid "Add to this filter using the 'Add Deb rule' button."
582
+ msgid "Add to a host collection"
553
583
  msgstr ""
554
584
 
555
- msgid "Add to this filter using the 'Add RPM rule' button."
556
- msgstr "「RPM ルールの追加」ボタンを使用して、このフィルターに追加します。"
585
+ msgid "Add to this filter using the 'Add Deb rule' button."
586
+ msgstr ""
557
587
 
558
588
  msgid "Add to this filter using the 'Add filter rule' button."
559
589
  msgstr "「フィルタールールの追加」ボタンを使用して、このフィルターに追加します。"
@@ -612,6 +642,9 @@ msgstr ""
612
642
  msgid "All subpaths must have a slash at the end and none at the front"
613
643
  msgstr ""
614
644
 
645
+ msgid "All up to date"
646
+ msgstr ""
647
+
615
648
  msgid "All versions"
616
649
  msgstr "全バージョン"
617
650
 
@@ -639,6 +672,9 @@ msgstr "各ホストパッケージの最新のアップグレード可能なパ
639
672
  msgid "Alter a host's host collections"
640
673
  msgstr ""
641
674
 
675
+ msgid "Alternate Content Source HTTP Proxy"
676
+ msgstr ""
677
+
642
678
  msgid "Alternate Content Sources"
643
679
  msgstr ""
644
680
 
@@ -651,7 +687,10 @@ msgstr ""
651
687
  msgid "Alternate content source deleted"
652
688
  msgstr ""
653
689
 
654
- msgid "Alternate content sources"
690
+ msgid "Alternate content source edited"
691
+ msgstr ""
692
+
693
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
655
694
  msgstr ""
656
695
 
657
696
  msgid "Always Use Latest (currently %{version})"
@@ -663,7 +702,7 @@ msgstr "常に最新バージョンに更新"
663
702
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
664
703
  msgstr "ホスト関連のタスクの実行を処理するプール内のワーカー数。0 に設定されている場合には、デフォルトのキューが代わりに使用されます。dynflowd/foreman-tasks サービスは再起動する必要があります。"
665
704
 
666
- msgid "An alternate content source can be added by using the \"Add source\" button above."
705
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
667
706
  msgstr ""
668
707
 
669
708
  msgid "An environment is missing a prior"
@@ -704,9 +743,15 @@ msgstr "Ansible コレクション"
704
743
  msgid "Applicability Batch Size"
705
744
  msgstr "適用可能なバッチサイズ"
706
745
 
746
+ msgid "Applicable"
747
+ msgstr ""
748
+
707
749
  msgid "Applicable Content Hosts"
708
750
  msgstr "適用可能なコンテンツホスト"
709
751
 
752
+ msgid "Applicable errata apply to at least one package installed on the host."
753
+ msgstr ""
754
+
710
755
  msgid "Application"
711
756
  msgstr "アプリケーション"
712
757
 
@@ -882,6 +927,9 @@ msgstr "利用可能なリポジトリー"
882
927
  msgid "Available Schema Versions"
883
928
  msgstr "利用可能なスキーマバージョン"
884
929
 
930
+ msgid "Back"
931
+ msgstr ""
932
+
885
933
  msgid "Backend System Status"
886
934
  msgstr "バックエンドシステムのステータス"
887
935
 
@@ -948,6 +996,12 @@ msgstr "バグ修正"
948
996
  msgid "Bugs"
949
997
  msgstr "バグ"
950
998
 
999
+ msgid "Bulk alternate content source delete has started."
1000
+ msgstr ""
1001
+
1002
+ msgid "Bulk alternate content source refresh has started."
1003
+ msgstr ""
1004
+
951
1005
  msgid "Bulk generate applicability for host %s"
952
1006
  msgstr "ホスト %s に適用可能なエラータを一括生成します"
953
1007
 
@@ -957,9 +1011,6 @@ msgstr "ホストに適用可能なエラータを一括生成します"
957
1011
  msgid "Bulk remove versions from a content view and reassign systems and keys"
958
1012
  msgstr ""
959
1013
 
960
- msgid "CA Cert"
961
- msgstr ""
962
-
963
1014
  msgid "CDN Configuration"
964
1015
  msgstr "CDN 設定"
965
1016
 
@@ -1065,6 +1116,9 @@ msgstr "複合バージョンを別の複合コンテンツビューに追加で
1065
1116
  msgid "Cannot add default content view to composite content view"
1066
1117
  msgstr "デフォルトのコンテンツビューを複合コンテンツビューに追加できません"
1067
1118
 
1119
+ msgid "Cannot add generated content view versions to composite content view"
1120
+ msgstr ""
1121
+
1068
1122
  msgid "Cannot add repositories to a composite content view"
1069
1123
  msgstr "リポジトリーを複合コンテンツビューに追加できません"
1070
1124
 
@@ -1206,6 +1260,9 @@ msgstr "アクションの前にサービスを確認します"
1206
1260
  msgid "Checksum"
1207
1261
  msgstr "チェックサム"
1208
1262
 
1263
+ msgid "Checksum is a required parameter."
1264
+ msgstr ""
1265
+
1209
1266
  msgid "Checksum of file to upload"
1210
1267
  msgstr "アップロードするファイルのチェックサム"
1211
1268
 
@@ -1215,6 +1272,9 @@ msgstr "リポジトリーのチェックサムです。現在、'sha1' と 'sha
1215
1272
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1216
1273
  msgstr "オンデマンドのダウンロードポリシーが指定された Yum リポジトリーにはチェックサムタイプを設定できません。"
1217
1274
 
1275
+ msgid "Choose content credentials if required for this RHUI source."
1276
+ msgstr ""
1277
+
1218
1278
  msgid "Clear any previous registration and run subscription-manager with --force."
1219
1279
  msgstr "以前の登録をすべてクリアし、--force を指定して subscription-manager を実行します。"
1220
1280
 
@@ -1230,9 +1290,6 @@ msgstr "タスクのタスクページに移動するには、ここをクリッ
1230
1290
  msgid "Click {update} below to save changes."
1231
1291
  msgstr ""
1232
1292
 
1233
- msgid "Client key"
1234
- msgstr ""
1235
-
1236
1293
  msgid "Clone"
1237
1294
  msgstr "クローン"
1238
1295
 
@@ -1248,6 +1305,9 @@ msgstr "統合プロファイルの更新"
1248
1305
  msgid "Combined Profile Update for %s"
1249
1306
  msgstr "%s の統合プロファイルの更新"
1250
1307
 
1308
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1309
+ msgstr ""
1310
+
1251
1311
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1252
1312
  msgstr ""
1253
1313
 
@@ -1257,12 +1317,18 @@ msgstr ""
1257
1317
  msgid "Comma-separated list of tags to sync for a container image repository"
1258
1318
  msgstr ""
1259
1319
 
1320
+ msgid "Compare"
1321
+ msgstr ""
1322
+
1260
1323
  msgid "Component"
1261
1324
  msgstr "コンポーネント"
1262
1325
 
1263
1326
  msgid "Component Content View"
1264
1327
  msgstr "コンポーネントコンテンツビュー"
1265
1328
 
1329
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1330
+ msgstr ""
1331
+
1266
1332
  msgid "Components"
1267
1333
  msgstr "コンポーネント"
1268
1334
 
@@ -1413,6 +1479,9 @@ msgstr "コンテンツビューバージョンが設定されていません"
1413
1479
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1414
1480
  msgstr "メタデータに指定されたコンテンツビューバージョン ('%{name}') はすでに存在します。既存のバージョンを置き換えるには、%{name} を削除してもう一度お試しください。 "
1415
1481
 
1482
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1483
+ msgstr ""
1484
+
1416
1485
  msgid "Content View and Environment not set for registration."
1417
1486
  msgstr "コンテンツビューと環境は登録用に設定されていません。"
1418
1487
 
@@ -1425,6 +1494,9 @@ msgstr ""
1425
1494
  msgid "Content Views"
1426
1495
  msgstr "コンテンツビュー"
1427
1496
 
1497
+ msgid "Content cannot be imported into a Composite Content View. "
1498
+ msgstr ""
1499
+
1428
1500
  msgid "Content credential"
1429
1501
  msgstr ""
1430
1502
 
@@ -1449,6 +1521,9 @@ msgstr "コンテンツが pulp にアップロードされませんでした"
1449
1521
  msgid "Content override search parameters"
1450
1522
  msgstr ""
1451
1523
 
1524
+ msgid "Content source"
1525
+ msgstr ""
1526
+
1452
1527
  msgid "Content source ID"
1453
1528
  msgstr "コンテンツソース ID"
1454
1529
 
@@ -1515,6 +1590,9 @@ msgstr "コンテンツビューバージョンのインポート履歴 ID"
1515
1590
  msgid "Content views"
1516
1591
  msgstr "コンテンツビュー"
1517
1592
 
1593
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1594
+ msgstr ""
1595
+
1518
1596
  msgid "Content_Host_Status"
1519
1597
  msgstr "コンテンツホストのステータス"
1520
1598
 
@@ -1656,6 +1734,9 @@ msgstr "以前の環境 '%s' が見つかりませんでした"
1656
1734
  msgid "Couldn't find product with id '%s'"
1657
1735
  msgstr "ID '%s' の製品が見つかりませんでした"
1658
1736
 
1737
+ msgid "Couldn't find products with id '%s'"
1738
+ msgstr ""
1739
+
1659
1740
  msgid "Couldn't find repository '%s'"
1660
1741
  msgstr "リポジトリー '%s' が見つかりませんでした"
1661
1742
 
@@ -1725,12 +1806,12 @@ msgstr "製品の作成"
1725
1806
  msgid "Create a sync plan"
1726
1807
  msgstr "同期プランの作成"
1727
1808
 
1728
- msgid "Create an ACS"
1729
- msgstr ""
1730
-
1731
1809
  msgid "Create an activation key"
1732
1810
  msgstr "アクティベーションキーの作成"
1733
1811
 
1812
+ 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."
1813
+ msgstr ""
1814
+
1734
1815
  msgid "Create an environment"
1735
1816
  msgstr "環境の作成"
1736
1817
 
@@ -1740,6 +1821,9 @@ msgstr "組織の環境を作成"
1740
1821
  msgid "Create an upload request"
1741
1822
  msgstr "アップロード要求の作成"
1742
1823
 
1824
+ msgid "Create content credentials with the generated SSL certificate and key."
1825
+ msgstr ""
1826
+
1743
1827
  msgid "Create content view"
1744
1828
  msgstr "コンテンツビューの作成"
1745
1829
 
@@ -1779,6 +1863,9 @@ msgstr "現在の組織は設定されていません。"
1779
1863
  msgid "Custom"
1780
1864
  msgstr ""
1781
1865
 
1866
+ msgid "Custom CDN"
1867
+ msgstr ""
1868
+
1782
1869
  msgid "Custom Content Repositories"
1783
1870
  msgstr "カスタムコンテンツリポジトリー"
1784
1871
 
@@ -1794,6 +1881,9 @@ msgstr ""
1794
1881
  msgid "DEB name"
1795
1882
  msgstr ""
1796
1883
 
1884
+ msgid "DEB package updates"
1885
+ msgstr ""
1886
+
1797
1887
  msgid "Database connection"
1798
1888
  msgstr "データベース接続"
1799
1889
 
@@ -1929,6 +2019,12 @@ msgstr "デフォルトの同期 OS ユーザーデータ"
1929
2019
  msgid "Default user data for new Operating Systems created from synced content"
1930
2020
  msgstr "同期コンテンツから作成された新規オペレーティングシステムのデフォルトユーザーデータ"
1931
2021
 
2022
+ msgid "Define RHUI repository paths with guided steps."
2023
+ msgstr ""
2024
+
2025
+ msgid "Define repositories structured under a common web or filesystem path."
2026
+ msgstr ""
2027
+
1932
2028
  msgid "Delete"
1933
2029
  msgstr "削除"
1934
2030
 
@@ -2067,7 +2163,7 @@ msgstr "同期プランの破棄"
2067
2163
  msgid "Destroy an activation key"
2068
2164
  msgstr "アクティベーションキーの破棄"
2069
2165
 
2070
- msgid "Destroy an alternate content source"
2166
+ msgid "Destroy an alternate content source."
2071
2167
  msgstr ""
2072
2168
 
2073
2169
  msgid "Destroy an environment"
@@ -2130,6 +2226,9 @@ msgstr "検出"
2130
2226
  msgid "Discover Repositories"
2131
2227
  msgstr "リポジトリーの検出"
2132
2228
 
2229
+ msgid "Distribute archived content view versions"
2230
+ msgstr ""
2231
+
2133
2232
  msgid "Do not include this array of content views"
2134
2233
  msgstr "このコンテンツビューの配列を組み込まないでください"
2135
2234
 
@@ -2163,21 +2262,51 @@ msgstr "エラータアドバイザリー"
2163
2262
  msgid "Edit"
2164
2263
  msgstr "編集"
2165
2264
 
2265
+ msgid "Edit ACS"
2266
+ msgstr ""
2267
+
2268
+ msgid "Edit ACS credentials"
2269
+ msgstr ""
2270
+
2271
+ msgid "Edit ACS details"
2272
+ msgstr ""
2273
+
2274
+ msgid "Edit ACS products"
2275
+ msgstr ""
2276
+
2277
+ msgid "Edit ACS smart proxies"
2278
+ msgstr ""
2279
+
2166
2280
  msgid "Edit RPM rule"
2167
2281
  msgstr "RPM ルールの編集"
2168
2282
 
2283
+ msgid "Edit URL and subpaths"
2284
+ msgstr ""
2285
+
2169
2286
  msgid "Edit content view assignment"
2170
2287
  msgstr ""
2171
2288
 
2289
+ msgid "Edit credentials"
2290
+ msgstr ""
2291
+
2292
+ msgid "Edit details"
2293
+ msgstr ""
2294
+
2172
2295
  msgid "Edit filter rule"
2173
2296
  msgstr "フィルタールールの編集"
2174
2297
 
2175
2298
  msgid "Edit package filter rule"
2176
2299
  msgstr ""
2177
2300
 
2301
+ msgid "Edit products"
2302
+ msgstr ""
2303
+
2178
2304
  msgid "Edit rule"
2179
2305
  msgstr "ルールの編集"
2180
2306
 
2307
+ msgid "Edit smart proxies"
2308
+ msgstr ""
2309
+
2181
2310
  msgid "Edit system purpose attributes"
2182
2311
  msgstr ""
2183
2312
 
@@ -2202,6 +2331,9 @@ msgstr "コンテンツビューに最新のフラグを設定するか、コン
2202
2331
  msgid "Either set the latest content view or the content view version. Cannot set both"
2203
2332
  msgstr "最新のコンテンツビューまたはコンテンツビューバージョンを設定します。両方設定することはできません。"
2204
2333
 
2334
+ msgid "Empty content view versions"
2335
+ msgstr ""
2336
+
2205
2337
  msgid "Enable"
2206
2338
  msgstr "有効"
2207
2339
 
@@ -2220,6 +2352,9 @@ msgstr "トレースの有効化"
2220
2352
  msgid "Enable a repository from the set"
2221
2353
  msgstr "セットのリポジトリーを有効化します"
2222
2354
 
2355
+ msgid "Enable repository sets"
2356
+ msgstr ""
2357
+
2223
2358
  msgid "Enable simple content access for a manifest"
2224
2359
  msgstr "マニフェストのシンプルコンテンツアクセスを有効化します"
2225
2360
 
@@ -2262,6 +2397,9 @@ msgstr ""
2262
2397
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2263
2398
  msgstr ""
2264
2399
 
2400
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2401
+ msgstr ""
2402
+
2265
2403
  msgid "Entitlements"
2266
2404
  msgstr "エンタイトルメント"
2267
2405
 
@@ -2517,6 +2655,9 @@ msgstr "サブスクリプションで製品をフィルター"
2517
2655
  msgid "Filter products by sync plan id"
2518
2656
  msgstr "同期プラン ID 別に製品をフィルター"
2519
2657
 
2658
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2659
+ msgstr ""
2660
+
2520
2661
  msgid "Filter rule added"
2521
2662
  msgstr "フィルタールールが追加されました"
2522
2663
 
@@ -2553,6 +2694,9 @@ msgstr "フィルターが削除されました"
2553
2694
  msgid "Filters will appear here when the filter is created."
2554
2695
  msgstr ""
2555
2696
 
2697
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2698
+ msgstr ""
2699
+
2556
2700
  msgid "Finish"
2557
2701
  msgstr "終了"
2558
2702
 
@@ -2614,6 +2758,9 @@ msgstr "完全なエンタイトルメント"
2614
2758
  msgid "GPG Key URL"
2615
2759
  msgstr "GPG キー URL"
2616
2760
 
2761
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2762
+ msgstr ""
2763
+
2617
2764
  msgid "Generate and Download"
2618
2765
  msgstr "生成してダウンロード"
2619
2766
 
@@ -2824,6 +2971,9 @@ msgstr "ID が %s のホストが見つかりません。"
2824
2971
  msgid "Hosts"
2825
2972
  msgstr "ホスト"
2826
2973
 
2974
+ msgid "Hosts to update"
2975
+ msgstr ""
2976
+
2827
2977
  msgid "Hosts with Installable Errata"
2828
2978
  msgstr "インストール可能なエラータのあるホスト"
2829
2979
 
@@ -2902,6 +3052,9 @@ msgstr "同期プランの ID"
2902
3052
  msgid "ID: %s doesn't exist "
2903
3053
  msgstr "ID: %s が存在しません "
2904
3054
 
3055
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
3056
+ msgstr ""
3057
+
2905
3058
  msgid "Id of a deb package to find repositories that contain the deb"
2906
3059
  msgstr "deb を含むリポジトリーを検索するための deb パッケージ ID"
2907
3060
 
@@ -2917,6 +3070,9 @@ msgstr "ansible コレクションを含むリポジトリーを検索するた
2917
3070
  msgid "Id of an erratum to find repositories that contain the erratum"
2918
3071
  msgstr "エラータを含むリポジトリーを検索するためのエラータ ID"
2919
3072
 
3073
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3074
+ msgstr ""
3075
+
2920
3076
  msgid "Id of the content host"
2921
3077
  msgstr "コンテンツホストの ID"
2922
3078
 
@@ -2989,6 +3145,9 @@ msgstr ""
2989
3145
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2990
3146
  msgstr "指定された場合、ID と数量が一致するサブスクリプションの最初のインスタンスを削除します"
2991
3147
 
3148
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3149
+ msgstr ""
3150
+
2992
3151
  msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
2993
3152
  msgstr ""
2994
3153
 
@@ -3001,6 +3160,9 @@ msgstr "これが有効な場合は、リモートアクションに katello-age
3001
3160
  msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
3002
3161
  msgstr ""
3003
3162
 
3163
+ msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3164
+ msgstr ""
3165
+
3004
3166
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3005
3167
  msgstr "true の場合には、アクティブなサブスクリプションに関連付けられているリポジトリーセットのみを返します"
3006
3168
 
@@ -3034,6 +3196,9 @@ msgstr "`subscription-manager register` コマンドの subscription-manager エ
3034
3196
  msgid "Ignore subscriptions that are unavailable to the specified host"
3035
3197
  msgstr "指定されたホストに使用できないサブスクリプションを無視します"
3036
3198
 
3199
+ msgid "Ignored hosts"
3200
+ msgstr ""
3201
+
3037
3202
  msgid "Immediate"
3038
3203
  msgstr "即時"
3039
3204
 
@@ -3178,9 +3343,6 @@ msgstr "モジュールストリームのインデックス作成"
3178
3343
  msgid "Index package groups"
3179
3344
  msgstr "パッケージグループのインデックス作成"
3180
3345
 
3181
- msgid "Indicate the source type."
3182
- msgstr ""
3183
-
3184
3346
  msgid "Informable Type must be one of the following [ %{list} ]"
3185
3347
  msgstr "情報タイプは以下のいずれかでなければなりません [ {list} ]"
3186
3348
 
@@ -3250,12 +3412,15 @@ msgstr ""
3250
3412
  msgid "Installable"
3251
3413
  msgstr "インストール可能"
3252
3414
 
3253
- msgid "Installable errata"
3415
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3254
3416
  msgstr ""
3255
3417
 
3256
3418
  msgid "Installable errata from content view"
3257
3419
  msgstr ""
3258
3420
 
3421
+ msgid "Installable updates"
3422
+ msgstr ""
3423
+
3259
3424
  msgid "Installation of errata requested: %{errata}"
3260
3425
  msgstr "エラータのインストールが要求されました: %{errata}"
3261
3426
 
@@ -3316,9 +3481,6 @@ msgstr "間隔が正しく設定されていません"
3316
3481
  msgid "Invalid"
3317
3482
  msgstr "無効"
3318
3483
 
3319
- msgid "Invalid SSL CA certificate given for CDN"
3320
- msgstr "CDN に無効な SSL CA 証明書が指定されました"
3321
-
3322
3484
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3323
3485
  msgstr "コンテンツビュー ID の関連付けが無効です。コンテンツビューは、保存されているコンテンツビューのバージョンと一致する必要があります"
3324
3486
 
@@ -3367,6 +3529,12 @@ msgstr "指定されたパラメーターは無効です。content_type は %s
3367
3529
  msgid "Invalid params provided - date_type must be one of %s"
3368
3530
  msgstr "指定されたパラメーターは無効です。date_type は %s のいずれかでなければなりません"
3369
3531
 
3532
+ msgid "Invalid params provided - with_content must be one of %s"
3533
+ msgstr ""
3534
+
3535
+ msgid "Invalid path provided. Content can be only imported from file system. "
3536
+ msgstr ""
3537
+
3370
3538
  msgid "Invalid release version: [%s]"
3371
3539
  msgstr ""
3372
3540
 
@@ -3388,6 +3556,9 @@ msgstr "発行済み"
3388
3556
  msgid "Issued from"
3389
3557
  msgstr ""
3390
3558
 
3559
+ msgid "Items will appear here when a filter rule is added."
3560
+ msgstr ""
3561
+
3391
3562
  msgid "Job '${description}' completed"
3392
3563
  msgstr ""
3393
3564
 
@@ -3463,15 +3634,18 @@ msgstr "コンテンツのラベル"
3463
3634
  msgid "Label of the content view"
3464
3635
  msgstr ""
3465
3636
 
3466
- msgid "Last Refresh"
3637
+ msgid "Last check-in:"
3467
3638
  msgstr ""
3468
3639
 
3469
- msgid "Last check-in:"
3640
+ msgid "Last checkin"
3470
3641
  msgstr ""
3471
3642
 
3472
3643
  msgid "Last published"
3473
3644
  msgstr "最終公開日"
3474
3645
 
3646
+ msgid "Last refresh"
3647
+ msgstr ""
3648
+
3475
3649
  msgid "Last refresh :"
3476
3650
  msgstr ""
3477
3651
 
@@ -3490,6 +3664,9 @@ msgstr "最新バージョン"
3490
3664
  msgid "Learn more about adding Subscription Manifests"
3491
3665
  msgstr "サブスクリプションマニフェストの追加に関する詳細"
3492
3666
 
3667
+ msgid "Legacy content host UI"
3668
+ msgstr ""
3669
+
3493
3670
  msgid "Less than"
3494
3671
  msgstr "<"
3495
3672
 
@@ -3556,6 +3733,9 @@ msgstr "ホストのコンテンツビューバージョンで利用可能なコ
3556
3733
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3557
3734
  msgstr "ホストまたはアクティベーションキーのコンテンツビューバージョンおよびライフサイクル環境で利用可能なコンテンツだけに制限します。"
3558
3735
 
3736
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3737
+ msgstr ""
3738
+
3559
3739
  msgid "Limit to environment"
3560
3740
  msgstr "環境に制限"
3561
3741
 
@@ -3586,6 +3766,9 @@ msgstr "すべての :resource_id を一覧表示します"
3586
3766
  msgid "List all organizations"
3587
3767
  msgstr "すべての組織を一覧表示します"
3588
3768
 
3769
+ msgid "List alternate content sources."
3770
+ msgstr ""
3771
+
3589
3772
  msgid "List an activation key's subscriptions"
3590
3773
  msgstr "アクティベーションキーのサブスクリプションを一覧表示します"
3591
3774
 
@@ -3658,9 +3841,6 @@ msgstr "同期プランの製品の一覧"
3658
3841
  msgid "List of alternate content source IDs"
3659
3842
  msgstr ""
3660
3843
 
3661
- msgid "List of alternate_content_sources"
3662
- msgstr ""
3663
-
3664
3844
  msgid "List of component content view version ids for composite views"
3665
3845
  msgstr "複合ビューのコンポーネントコンテンツビューのバージョン ID の一覧"
3666
3846
 
@@ -3751,6 +3931,9 @@ msgstr "組織のリポジトリーの一覧"
3751
3931
  msgid "List of repository ids"
3752
3932
  msgstr "リポジトリー ID の一覧"
3753
3933
 
3934
+ msgid "List of resources types that will be automatically associated"
3935
+ msgstr ""
3936
+
3754
3937
  msgid "List of subscription products in a subscription"
3755
3938
  msgstr "サブスクリプション内のサブスクリプション製品の一覧"
3756
3939
 
@@ -3955,6 +4138,9 @@ msgstr ""
3955
4138
  msgid "Multi-entitlement"
3956
4139
  msgstr "マルチエンタイトルメント"
3957
4140
 
4141
+ msgid "Multiple environments are not supported."
4142
+ msgstr ""
4143
+
3958
4144
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3959
4145
  msgstr "mandatory_package_names、optional_package_names、conditional_package_names、default_package_names パラメーターから少なくとも 1 つを指定する必要があります"
3960
4146
 
@@ -3967,6 +4153,9 @@ msgstr "NA"
3967
4153
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3968
4154
  msgstr "注記: Katello-agent は非推奨となり、%s で削除される予定です。代わりにリモート実行を使用することを検討してください。"
3969
4155
 
4156
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4157
+ msgstr ""
4158
+
3970
4159
  msgid ""
3971
4160
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
3972
4161
  " %{repos}"
@@ -3974,6 +4163,11 @@ msgstr ""
3974
4163
  "注記: 「即時」ダウンロードポリシーのないリポジトリーが含まれているため、'%{organization}' 組織のライブラリーを完全にエクスポートすることはできません。ダウンロードポリシーを更新し、影響を受けるリポジトリーを同期して、エクスポートに含めます。\n"
3975
4164
  " %{repos}"
3976
4165
 
4166
+ msgid ""
4167
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4168
+ " %{repos}"
4169
+ msgstr ""
4170
+
3977
4171
  msgid ""
3978
4172
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
3979
4173
  " %{repos}"
@@ -3987,6 +4181,12 @@ msgstr ""
3987
4181
  msgid "Name"
3988
4182
  msgstr "名前"
3989
4183
 
4184
+ msgid "Name and label of default content view should not be changed"
4185
+ msgstr ""
4186
+
4187
+ msgid "Name is a required parameter."
4188
+ msgstr ""
4189
+
3990
4190
  msgid "Name of new activation key"
3991
4191
  msgstr "新規アクティベーションキーの名前"
3992
4192
 
@@ -4032,6 +4232,12 @@ msgstr ""
4032
4232
  msgid "Never Synced"
4033
4233
  msgstr "一度も同期されていません"
4034
4234
 
4235
+ msgid "Never checked in"
4236
+ msgstr ""
4237
+
4238
+ msgid "Never registered"
4239
+ msgstr ""
4240
+
4035
4241
  msgid "New Errata"
4036
4242
  msgstr "新規エラータ"
4037
4243
 
@@ -4125,6 +4331,9 @@ msgstr "コンテンツが提供されていません。"
4125
4331
  msgid "No content ids provided"
4126
4332
  msgstr "コンテンツ ID が提供されていません"
4127
4333
 
4334
+ msgid "No content in selected versions."
4335
+ msgstr ""
4336
+
4128
4337
  msgid "No content view history events found."
4129
4338
  msgstr "コンテンビューの履歴イベントが見つかりません。"
4130
4339
 
@@ -4176,6 +4385,9 @@ msgstr ""
4176
4385
  msgid "No host collections found."
4177
4386
  msgstr "ホストコレクションが見つかりません"
4178
4387
 
4388
+ msgid "No host collections yet"
4389
+ msgstr ""
4390
+
4179
4391
  msgid "No hosts have been specified."
4180
4392
  msgstr "指定されているホストがありません。"
4181
4393
 
@@ -4200,6 +4412,9 @@ msgstr "マニフェストが見つかりません。コンテンツをインポ
4200
4412
  msgid "No matching "
4201
4413
  msgstr "マッチする項目が"
4202
4414
 
4415
+ msgid "No matching ${name} found."
4416
+ msgstr ""
4417
+
4203
4418
  msgid "No matching ${selectedContentType} found"
4204
4419
  msgstr "マッチする ${selectedContentType} が見つかりませんでした"
4205
4420
 
@@ -4290,6 +4505,9 @@ msgstr "プロセスを再起動する必要はありません"
4290
4505
  msgid "No products are enabled."
4291
4506
  msgstr "有効な製品はありません。"
4292
4507
 
4508
+ msgid "No profiles to show"
4509
+ msgstr ""
4510
+
4293
4511
  msgid "No pulp workers running."
4294
4512
  msgstr "Pulp ワーカーが実行されていません。"
4295
4513
 
@@ -4425,6 +4643,9 @@ msgstr "'host' または 'activation_key' に使用可能なサブスクリプ
4425
4643
  msgid "On Demand"
4426
4644
  msgstr "オンデマンド"
4427
4645
 
4646
+ msgid "On the RHUA Instance, check the available repositories."
4647
+ msgstr ""
4648
+
4428
4649
  msgid "On-disk location for exported repositories"
4429
4650
  msgstr "エクスポートされたリポジトリーのディスク上ロケーション"
4430
4651
 
@@ -4803,6 +5024,9 @@ msgstr "以下のリストから 1 つ選択してください。リダイレク
4803
5024
  msgid "Please wait while the task starts.."
4804
5025
  msgstr "タスクが開始されるまでお持ちください.."
4805
5026
 
5027
+ msgid "Please wait..."
5028
+ msgstr ""
5029
+
4806
5030
  msgid "Policy to set for mirroring content. Must be one of %s."
4807
5031
  msgstr "コンテンツのミラーリングに設定するポリシー。%s のいずれかでなければなりません。"
4808
5032
 
@@ -4894,9 +5118,18 @@ msgstr "Candlepin で、ID が %s の製品が見つかりません。コンテ
4894
5118
  msgid "Product: '%{product}', Repository: '%{repository}'"
4895
5119
  msgstr "製品: '%{product}'、リポジトリー: '%{repository}'"
4896
5120
 
5121
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5122
+ msgstr ""
5123
+
4897
5124
  msgid "Products"
4898
5125
  msgstr "製品"
4899
5126
 
5127
+ msgid "Products updated."
5128
+ msgstr ""
5129
+
5130
+ msgid "Profiles"
5131
+ msgstr ""
5132
+
4900
5133
  msgid "Promote"
4901
5134
  msgstr "プロモート"
4902
5135
 
@@ -5074,6 +5307,9 @@ msgstr "メモリー: %s GB"
5074
5307
  msgid "RH Repos"
5075
5308
  msgstr "RH レポジトリー"
5076
5309
 
5310
+ msgid "RHUI"
5311
+ msgstr ""
5312
+
5077
5313
  msgid "RPM"
5078
5314
  msgstr "RPM"
5079
5315
 
@@ -5086,6 +5322,12 @@ msgstr "RPM パッケージ"
5086
5322
  msgid "RPM name"
5087
5323
  msgstr "RPM 名"
5088
5324
 
5325
+ msgid "RPM package groups"
5326
+ msgstr ""
5327
+
5328
+ msgid "RPM package updates"
5329
+ msgstr ""
5330
+
5089
5331
  msgid "RPM packages"
5090
5332
  msgstr ""
5091
5333
 
@@ -5152,6 +5394,9 @@ msgstr ""
5152
5394
  msgid "Red Hat content will be consumed from the {type}."
5153
5395
  msgstr ""
5154
5396
 
5397
+ msgid "Red Hat content will be consumed from {type}."
5398
+ msgstr ""
5399
+
5155
5400
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5156
5401
  msgstr ""
5157
5402
 
@@ -5179,7 +5424,7 @@ msgstr "マニフェストの更新"
5179
5424
  msgid "Refresh alternate content sources"
5180
5425
  msgstr ""
5181
5426
 
5182
- msgid "Refresh an alternate content source"
5427
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5183
5428
  msgstr ""
5184
5429
 
5185
5430
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5197,6 +5442,9 @@ msgstr "サブスクリプションと情報を使用したホスト登録"
5197
5442
  msgid "Register host '%s' before attaching subscriptions"
5198
5443
  msgstr "サブスクリプションをアタッチする前にホスト '%s' を登録してください"
5199
5444
 
5445
+ msgid "Registered"
5446
+ msgstr ""
5447
+
5200
5448
  msgid "Registered by"
5201
5449
  msgstr ""
5202
5450
 
@@ -5323,8 +5571,8 @@ msgstr ""
5323
5571
  msgid "Remove one or more host collections from one or more hosts"
5324
5572
  msgstr "1 つ以上のホストから 1 つ以上のコンテンツコレクションを削除します"
5325
5573
 
5326
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5327
- msgstr "アップストリームサブスクリプションの割り当てから 1 つ以上のサブスクリプションを削除します"
5574
+ msgid "Remove one or more subscriptions from an upstream manifest"
5575
+ msgstr ""
5328
5576
 
5329
5577
  msgid "Remove package"
5330
5578
  msgstr "パッケージの削除"
@@ -5374,6 +5622,9 @@ msgstr "パッケージグループを削除しています..."
5374
5622
  msgid "Removing Package..."
5375
5623
  msgstr "パッケージを削除しています..."
5376
5624
 
5625
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5626
+ msgstr ""
5627
+
5377
5628
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5378
5629
  msgstr "すべての環境からこのバージョンを削除しても、バージョンは削除されません。バージョンは引き続き以降のプロモーションの対象になります。"
5379
5630
 
@@ -5614,9 +5865,6 @@ msgstr "有効なコンテンツタイプを返します"
5614
5865
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5615
5866
  msgstr "両方とも追加可能で、現在オブジェクトに追加されているコンテンツを返します。値 'content_view_filter' がサポートされています"
5616
5867
 
5617
- msgid "Review Details"
5618
- msgstr ""
5619
-
5620
5868
  msgid "Review affected environment"
5621
5869
  msgstr ""
5622
5870
 
@@ -5626,6 +5874,9 @@ msgstr ""
5626
5874
  msgid "Review details"
5627
5875
  msgstr "詳細を確認"
5628
5876
 
5877
+ msgid "Review the information below and click "
5878
+ msgstr ""
5879
+
5629
5880
  msgid "Review your currently selected changes for "
5630
5881
  msgstr "現在選択されている変更内容の確認 "
5631
5882
 
@@ -5665,9 +5916,6 @@ msgstr "SSL CA コンテンツ認証情報"
5665
5916
  msgid "SSL CA certificate"
5666
5917
  msgstr ""
5667
5918
 
5668
- msgid "SSL Cert"
5669
- msgstr ""
5670
-
5671
5919
  msgid "SSL client certificate"
5672
5920
  msgstr ""
5673
5921
 
@@ -5797,6 +6045,9 @@ msgstr ""
5797
6045
  msgid "Select an environment above"
5798
6046
  msgstr ""
5799
6047
 
6048
+ msgid "Select an option"
6049
+ msgstr ""
6050
+
5800
6051
  msgid "Select an organization"
5801
6052
  msgstr "組織の選択"
5802
6053
 
@@ -5836,6 +6087,12 @@ msgstr ""
5836
6087
  msgid "Select page"
5837
6088
  msgstr "ページの選択"
5838
6089
 
6090
+ msgid "Select products"
6091
+ msgstr ""
6092
+
6093
+ msgid "Select products to associate to this source."
6094
+ msgstr ""
6095
+
5839
6096
  msgid "Select row"
5840
6097
  msgstr "行の選択"
5841
6098
 
@@ -5953,7 +6210,7 @@ msgstr "すべて表示"
5953
6210
  msgid "Show an activation key"
5954
6211
  msgstr "アクティベーションキーの表示"
5955
6212
 
5956
- msgid "Show an alternate content source"
6213
+ msgid "Show an alternate content source."
5957
6214
  msgstr ""
5958
6215
 
5959
6216
  msgid "Show an environment"
@@ -6004,6 +6261,9 @@ msgstr "'%{subject}' のシンプルコンテンツアクセスが無効にな
6004
6261
  msgid "Simple Content Access has been enabled for '%{subject}'."
6005
6262
  msgstr "'%{subject}' のシンプルコンテンツアクセスが有効になりました。"
6006
6263
 
6264
+ msgid "Simplified"
6265
+ msgstr ""
6266
+
6007
6267
  msgid "Single content view consisting of e.g. repositories"
6008
6268
  msgstr "リポジトリー (例) で構成される単一コンテンツビュー"
6009
6269
 
@@ -6040,7 +6300,7 @@ msgstr "コンテンツビューの公開時にデフォルトでは RPM 依存
6040
6300
  msgid "Solve dependencies"
6041
6301
  msgstr "依存関係の解決"
6042
6302
 
6043
- msgid "Some hosts are ignored!"
6303
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6044
6304
  msgstr ""
6045
6305
 
6046
6306
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6064,15 +6324,15 @@ msgstr "フィルタールールの追加中に問題が発生しました! ${ge
6064
6324
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6065
6325
  msgstr "フィルターの作成中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6066
6326
 
6327
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6328
+ msgstr ""
6329
+
6067
6330
  msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6068
6331
  msgstr "フィルタールールの削除中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6069
6332
 
6070
6333
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6071
6334
  msgstr "フィルターの削除中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6072
6335
 
6073
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6074
- msgstr ""
6075
-
6076
6336
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
6077
6337
  msgstr "このフィルターの削除中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6078
6338
 
@@ -6118,10 +6378,13 @@ msgstr ""
6118
6378
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6119
6379
  msgstr "バージョン情報の取得中に問題が発生しました。${getResponseErrorMsgs(error.response)}"
6120
6380
 
6381
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6382
+ msgstr ""
6383
+
6121
6384
  msgid "Something went wrong while loading the content views. See the logs for more information"
6122
6385
  msgstr ""
6123
6386
 
6124
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6387
+ msgid "Something went wrong while refreshing alternate content sources: "
6125
6388
  msgstr ""
6126
6389
 
6127
6390
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6136,6 +6399,9 @@ msgstr "パッケージグループの取得中に問題が発生しました! $
6136
6399
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6137
6400
  msgstr "アクティベーションキーの取得中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6138
6401
 
6402
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6403
+ msgstr ""
6404
+
6139
6405
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6140
6406
  msgstr "コンテンツビューのコンポーネントの取得中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6141
6407
 
@@ -6154,9 +6420,33 @@ msgstr "コンテンツビューの履歴の取得中に問題が発生しまし
6154
6420
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6155
6421
  msgstr "コンテンツビューのバージョンの取得中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6156
6422
 
6423
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6424
+ msgstr ""
6425
+
6426
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6427
+ msgstr ""
6428
+
6429
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6430
+ msgstr ""
6431
+
6432
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6433
+ msgstr ""
6434
+
6157
6435
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6158
6436
  msgstr "ホストの取得中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6159
6437
 
6438
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6439
+ msgstr ""
6440
+
6441
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6442
+ msgstr ""
6443
+
6444
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6445
+ msgstr ""
6446
+
6447
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6448
+ msgstr ""
6449
+
6160
6450
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6161
6451
  msgstr "リポジトリータイプの取得中に問題が発生しました! ${getResponseErrorMsgs(error.response)}"
6162
6452
 
@@ -6241,9 +6531,6 @@ msgstr ""
6241
6531
  msgid "Subscription"
6242
6532
  msgstr "サブスクリプション"
6243
6533
 
6244
- msgid "Subscription Allocation"
6245
- msgstr "サブスクリプション割り当て"
6246
-
6247
6534
  msgid "Subscription Details"
6248
6535
  msgstr "サブスクリプションの詳細"
6249
6536
 
@@ -6301,6 +6588,9 @@ msgstr "サブスクリプションのマニフェストファイル"
6301
6588
  msgid "Subscription not found"
6302
6589
  msgstr "サブスクリプションが見つかりません"
6303
6590
 
6591
+ msgid "Subscription status"
6592
+ msgstr ""
6593
+
6304
6594
  msgid "Subscription was not persisted - %{error_message}"
6305
6595
  msgstr "サブスクリプションが永続化されませんでした: %{error_message}"
6306
6596
 
@@ -6346,6 +6636,9 @@ msgstr "%s 台のホストが正常に削除されました。"
6346
6636
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6347
6637
  msgstr "ホストコレクション %{host_collection} から %{count} 台のコンテンツホストが正常に削除されました。"
6348
6638
 
6639
+ msgid "Successfully synced capsule."
6640
+ msgstr ""
6641
+
6349
6642
  msgid "Successfully synchronized."
6350
6643
  msgstr "正常に同期しました。"
6351
6644
 
@@ -6427,6 +6720,9 @@ msgstr "1 つ以上の製品の同期"
6427
6720
  msgid "Sync plan identifier to attach"
6428
6721
  msgstr "割り当てる同期プラン ID"
6429
6722
 
6723
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6724
+ msgstr ""
6725
+
6430
6726
  msgid "Sync state"
6431
6727
  msgstr "同期の状態"
6432
6728
 
@@ -6517,9 +6813,6 @@ msgstr "'%s' 環境には変更セットを含めることができません!"
6517
6813
  msgid "The Alternate Content Source type"
6518
6814
  msgstr ""
6519
6815
 
6520
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6521
- msgstr "インポート済みのマニフェストを提供するサブスクリプション割り当てが削除されました。新規サブスクリプション割り当てを作成して新しいマニフェストをインポートしてください。"
6522
-
6523
6816
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6524
6817
  msgstr "セッショントークンを受信するためのURL (例: Automation Hub で使用)。"
6525
6818
 
@@ -6571,9 +6864,6 @@ msgstr "エクスポートされたコンテンツビューのバージョン '%
6571
6864
  msgid "The field to sort the data by. Defaults to the created date."
6572
6865
  msgstr "データを並べ替えるフィールド。デフォルトは作成日に設定されています。"
6573
6866
 
6574
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6575
- msgstr ""
6576
-
6577
6867
  msgid "The following hosts have errata that apply to them: "
6578
6868
  msgstr "以下のホストには、適用するエラータがあります: "
6579
6869
 
@@ -6602,6 +6892,9 @@ msgstr ""
6602
6892
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6603
6893
  msgstr "指定されたコンテンツビューバージョンをプロモートする (古いバージョンに置き換わる) 環境の一覧です。"
6604
6894
 
6895
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6896
+ msgstr ""
6897
+
6605
6898
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6606
6899
  msgstr "組織 %{subject} 内にインポートされていたマニフェストは無効になりました。新しいマニフェストをインポートしてください。"
6607
6900
 
@@ -6648,6 +6941,9 @@ msgstr "パス %{real_path} は、有効なリポジトリーではないよう
6648
6941
  msgid "The port used by Pulp Crane to provide Docker Registries"
6649
6942
  msgstr "Docker レジストリーを指定するために Pulp Crane が使用するポート"
6650
6943
 
6944
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6945
+ msgstr ""
6946
+
6651
6947
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6652
6948
  msgstr "%{content_view} から %{environment} へのプロモートが完了しました。エラータ %{count} 件がホストで利用できます。"
6653
6949
 
@@ -6693,14 +6989,20 @@ msgstr "\"%s\" の同期が完了しました。以下は新規エラータの
6693
6989
  msgid "The token key to use for authentication."
6694
6990
  msgstr "認証に使用するトークンキー。"
6695
6991
 
6992
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6993
+ msgstr ""
6994
+
6995
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6996
+ msgstr ""
6997
+
6696
6998
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6697
6999
  msgstr "コンテンツのタイプです。次のタイプがサポートされています: 'package' および 'package_group'"
6698
7000
 
6699
7001
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6700
7002
  msgstr "コンテンツのタイプです。次のタイプがサポートされています: 'package'、'package_group' および 'errata'"
6701
7003
 
6702
- msgid "There are no Subscription Allocations to display"
6703
- msgstr "表示するサブスクリプション割り当てはありません"
7004
+ msgid "There are no Manifests to display"
7005
+ msgstr ""
6704
7006
 
6705
7007
  msgid "There are no Subscriptions to display"
6706
7008
  msgstr "表示するサブスクリプションはありません"
@@ -6771,6 +7073,9 @@ msgstr "この操作は、特殊な状況またはデバッグの目的でのみ
6771
7073
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6772
7074
  msgstr "このアクションでは、現在無効になっている katello-agent を使用します。代わりにリモート実行を使用してください。"
6773
7075
 
7076
+ 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."
7077
+ msgstr ""
7078
+
6774
7079
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6775
7080
  msgstr "この証明書により、ユーザーはすべての環境のリポジトリーをブラウザーから閲覧できます。"
6776
7081
 
@@ -6810,8 +7115,8 @@ msgstr "マニフェスト関連のタスクが実行中であるため、これ
6810
7115
  msgid "This is disabled because a manifest task is in progress"
6811
7116
  msgstr "マニフェストのタスクが実行中であるため、これは無効になっています"
6812
7117
 
6813
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
6814
- msgstr "アップストリームのサブスクリプション割り当てに接続できないため、これは無効になっています。"
7118
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
7119
+ msgstr ""
6815
7120
 
6816
7121
  msgid "This is disabled because no manifest exists"
6817
7122
  msgstr "マニフェストが存在しないため、これは無効になっています"
@@ -6879,6 +7184,9 @@ msgstr "タイムスタンプ"
6879
7184
  msgid "Title"
6880
7185
  msgstr "タイトル"
6881
7186
 
7187
+ msgid "To get started, add this host to a host collection."
7188
+ msgstr ""
7189
+
6882
7190
  msgid "Toggling Simple Content Access will refresh your manifest."
6883
7191
  msgstr "シンプルコンテンツアクセスを切り替えると、マニフェストが更新されます。"
6884
7192
 
@@ -6921,6 +7229,9 @@ msgstr "ログアウトが必要なトレースをリモートで再起動する
6921
7229
  msgid "Traces will be shown here to a user with the appropriate permissions."
6922
7230
  msgstr ""
6923
7231
 
7232
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7233
+ msgstr ""
7234
+
6924
7235
  msgid "Trigger an auto-attach of subscriptions"
6925
7236
  msgstr "サブスクリプションの自動割り当てのトリガー"
6926
7237
 
@@ -6951,12 +7262,18 @@ msgstr "コンテンツのタイプ"
6951
7262
  msgid "Type of content: \"cert\", \"gpg_key\""
6952
7263
  msgstr "コンテンツの種類: \"cert\"、\"gpg_key\""
6953
7264
 
7265
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7266
+ msgstr ""
7267
+
6954
7268
  msgid "URL"
6955
7269
  msgstr "URL"
6956
7270
 
6957
7271
  msgid "URL and paths"
6958
7272
  msgstr ""
6959
7273
 
7274
+ msgid "URL and subpaths"
7275
+ msgstr ""
7276
+
6960
7277
  msgid "URL needs to have a trailing /"
6961
7278
  msgstr "URL には末尾の / が必要です"
6962
7279
 
@@ -7158,7 +7475,7 @@ msgstr "同期プランの更新"
7158
7475
  msgid "Update an activation key"
7159
7476
  msgstr "アクティベーションキーの更新"
7160
7477
 
7161
- msgid "Update an alternate content source"
7478
+ msgid "Update an alternate content source."
7162
7479
  msgstr ""
7163
7480
 
7164
7481
  msgid "Update an environment"
@@ -7365,6 +7682,12 @@ msgstr "ホストの使用状況"
7365
7682
  msgid "Usage type"
7366
7683
  msgstr ""
7367
7684
 
7685
+ msgid "Use HTTP Proxies"
7686
+ msgstr ""
7687
+
7688
+ msgid "Use HTTP proxies"
7689
+ msgstr ""
7690
+
7368
7691
  msgid "Use remote execution by default"
7369
7692
  msgstr "デフォルトでリモート実行を使用します"
7370
7693
 
@@ -7440,6 +7763,12 @@ msgstr "バージョン ${versionNameToRemove} は、すべての環境から削
7440
7763
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7441
7764
  msgstr "バージョン ${versionNameToRemove} は、一覧表示された環境から削除されます。プロモーションの対象ではなくなります。"
7442
7765
 
7766
+ msgid "Version ${versionOne}"
7767
+ msgstr ""
7768
+
7769
+ msgid "Version ${versionTwo}"
7770
+ msgstr ""
7771
+
7443
7772
  msgid "Version details updated."
7444
7773
  msgstr "バージョン情報が更新されました。"
7445
7774
 
@@ -7452,6 +7781,9 @@ msgstr "バージョン"
7452
7781
  msgid "Versions "
7453
7782
  msgstr ""
7454
7783
 
7784
+ msgid "Versions to compare"
7785
+ msgstr ""
7786
+
7455
7787
  msgid "Versions to exclusively include in the action"
7456
7788
  msgstr ""
7457
7789
 
@@ -7467,6 +7799,9 @@ msgstr "ビュー %{view} は %{env} にプロモートされていません"
7467
7799
  msgid "View a report of the affected hosts"
7468
7800
  msgstr "影響を受けるホストのレポートを表示します"
7469
7801
 
7802
+ msgid "View by"
7803
+ msgstr ""
7804
+
7470
7805
  msgid "View matching content"
7471
7806
  msgstr "マッチするコンテンツの表示"
7472
7807
 
@@ -7530,6 +7865,9 @@ msgstr "アップロード後に外部 Capsule を同期するかどうか。デ
7530
7865
  msgid "Whether to include available content attribute in results"
7531
7866
  msgstr "使用可能なコンテンツ属性を結果に含めるかどうか"
7532
7867
 
7868
+ msgid "Whether to turn on Simple Content Access for the organization."
7869
+ msgstr ""
7870
+
7533
7871
  msgid "Workers"
7534
7872
  msgstr "ワーカー"
7535
7873
 
@@ -7626,6 +7964,9 @@ msgstr "検索クエリーが無効でした。確認してからもう一度お
7626
7964
  msgid "Your search returned no matching "
7627
7965
  msgstr "検索条件にマッチする項目はありませんでした "
7628
7966
 
7967
+ msgid "Your search returned no matching ${name}."
7968
+ msgstr ""
7969
+
7629
7970
  msgid "Your search returned no matching DEBs."
7630
7971
  msgstr ""
7631
7972
 
@@ -7650,6 +7991,9 @@ msgstr "Yum メタデータ: %s"
7650
7991
  msgid "a content unit"
7651
7992
  msgstr "コンテンツユニット"
7652
7993
 
7994
+ msgid "a custom CDN URL"
7995
+ msgstr ""
7996
+
7653
7997
  msgid "a deb package"
7654
7998
  msgstr "deb パッケージ"
7655
7999
 
@@ -7821,9 +8165,6 @@ msgstr "パッケージグループに含める条件付きパッケージ名"
7821
8165
  msgid "content release version"
7822
8166
  msgstr "コンテンツリリースバージョン"
7823
8167
 
7824
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7825
- msgstr "コンテンツタイプ ('deb'、'docker_manifest'、'file'、'ostree'、'rpm'、'srpm')"
7826
-
7827
8168
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7828
8169
  msgstr "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7829
8170
 
@@ -8097,9 +8438,6 @@ msgstr "環境のラベル"
8097
8438
  msgid "label of the repository"
8098
8439
  msgstr "リポジトリーのラベル"
8099
8440
 
8100
- msgid "limit to only repositories of this type"
8101
- msgstr "このタイプのリポジトリーにのみ制限"
8102
-
8103
8441
  msgid "limit to only repositories with this download policy"
8104
8442
  msgstr "このダウンロードポリシーのあるリポジトリーのみに制限します"
8105
8443
 
@@ -8217,9 +8555,6 @@ msgstr "サブスクリプションのマニフェスト履歴の取得"
8217
8555
  msgid "of environment must be unique within one organization"
8218
8556
  msgstr "環境名は 1 つの組織内で一意である必要があります"
8219
8557
 
8220
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8221
- msgstr "指定のコンテンツタイプが少なくとも 1 つ指定されたリポジトリーのみ (例: rpm、エラータ)"
8222
-
8223
8558
  msgid "only show the repositories readable by this user with this username"
8224
8559
  msgstr "このユーザー名を持つこのユーザーで読み取り可能なリポジトリーのみを表示する"
8225
8560
 
@@ -8403,9 +8738,6 @@ msgstr "同期時にこのリポジトリーをソースからミラーリング
8403
8738
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8404
8739
  msgstr ""
8405
8740
 
8406
- msgid "type of repo"
8407
- msgstr "リポジトリーのタイプ"
8408
-
8409
8741
  msgid "types of filters"
8410
8742
  msgstr "フィルターの種類"
8411
8743