katello 4.7.6 → 4.8.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 (365) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +6 -4
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +15 -12
  4. data/app/controllers/katello/api/v2/capsule_content_controller.rb +0 -4
  5. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  6. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  7. data/app/controllers/katello/api/v2/content_imports_controller.rb +1 -0
  8. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  9. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +7 -8
  10. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +8 -4
  11. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -0
  12. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  13. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +1 -3
  14. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  15. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +1 -2
  16. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  17. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  18. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +3 -3
  19. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +55 -24
  20. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  21. data/app/helpers/katello/sync_management_helper.rb +0 -4
  22. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  23. data/app/lib/actions/katello/capsule_content/sync.rb +0 -4
  24. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  25. data/app/lib/actions/katello/content_view/publish.rb +6 -2
  26. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  27. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  28. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  29. data/app/lib/actions/katello/host/reassign.rb +4 -2
  30. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +0 -10
  31. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +2 -12
  32. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  33. data/app/lib/actions/katello/product/destroy.rb +2 -1
  34. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  35. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  36. data/app/lib/actions/katello/repository/sync.rb +0 -1
  37. data/app/lib/actions/katello/repository/update.rb +5 -3
  38. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  39. data/app/lib/actions/pulp3/abstract.rb +0 -6
  40. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  41. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  42. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +1 -0
  43. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +7 -2
  44. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -2
  45. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  46. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  47. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  48. data/app/lib/katello/concerns/renderer_extensions.rb +1 -1
  49. data/app/lib/katello/event_daemon/runner.rb +12 -9
  50. data/app/lib/katello/resources/candlepin/consumer.rb +6 -6
  51. data/app/lib/katello/resources/candlepin/owner.rb +1 -1
  52. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +3 -4
  53. data/app/lib/katello/resources/candlepin.rb +4 -4
  54. data/app/lib/katello/util/errata.rb +12 -10
  55. data/app/lib/katello/util/search.rb +0 -1
  56. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  57. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  58. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  59. data/app/mailers/katello/errata_mailer.rb +4 -2
  60. data/app/models/katello/alternate_content_source.rb +5 -1
  61. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  62. data/app/models/katello/concerns/host_managed_extensions.rb +17 -8
  63. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  64. data/app/models/katello/concerns/smart_proxy_extensions.rb +0 -12
  65. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  66. data/app/models/katello/content_view.rb +22 -5
  67. data/app/models/katello/content_view_environment.rb +11 -2
  68. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  69. data/app/models/katello/content_view_version.rb +10 -5
  70. data/app/models/katello/erratum.rb +6 -1
  71. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  72. data/app/models/katello/glue/candlepin/product.rb +7 -1
  73. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  74. data/app/models/katello/glue/provider.rb +26 -26
  75. data/app/models/katello/host/content_facet.rb +106 -18
  76. data/app/models/katello/host/info_provider.rb +25 -21
  77. data/app/models/katello/host/subscription_facet.rb +18 -14
  78. data/app/models/katello/kt_environment.rb +12 -7
  79. data/app/models/katello/package_group.rb +0 -12
  80. data/app/models/katello/pool.rb +4 -1
  81. data/app/models/katello/product.rb +11 -1
  82. data/app/models/katello/product_content.rb +0 -4
  83. data/app/models/katello/repository.rb +11 -11
  84. data/app/models/katello/root_repository.rb +4 -3
  85. data/app/models/katello/task_status.rb +0 -18
  86. data/app/services/katello/candlepin/consumer.rb +2 -2
  87. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  88. data/app/services/katello/product_content_finder.rb +11 -12
  89. data/app/services/katello/pulp3/content_view_version/export.rb +8 -65
  90. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  91. data/app/services/katello/pulp3/content_view_version/export_validator.rb +105 -0
  92. data/app/services/katello/pulp3/content_view_version/importable_products.rb +1 -1
  93. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +7 -1
  94. data/app/services/katello/pulp3/erratum.rb +1 -0
  95. data/app/services/katello/pulp3/module_stream.rb +26 -11
  96. data/app/services/katello/pulp3/repository/yum.rb +2 -1
  97. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +2 -1
  98. data/app/services/katello/registration_manager.rb +46 -26
  99. data/app/services/katello/repository_type.rb +3 -9
  100. data/app/services/katello/simple_package.rb +22 -0
  101. data/app/views/foreman/smart_proxies/_content_sync.html.erb +1 -0
  102. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  103. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  104. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  105. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  106. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  107. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  108. data/config/initializers/monkeys.rb +0 -2
  109. data/config/routes/api/registry.rb +8 -7
  110. data/config/routes/api/v2.rb +0 -2
  111. data/config/routes.rb +3 -0
  112. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  113. data/db/migrate/20220110223754_update_disconnected_settings.rb +4 -8
  114. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  115. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  116. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  117. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  118. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +1 -1
  119. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  120. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -1
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +8 -4
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  132. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  133. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  134. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  135. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  136. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  137. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  138. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  139. data/lib/katello/engine.rb +2 -1
  140. data/lib/katello/permission_creator.rb +2 -4
  141. data/lib/katello/permissions/registry_permissions.rb +5 -5
  142. data/lib/katello/plugin.rb +22 -14
  143. data/lib/katello/repository_types/README.md +136 -19
  144. data/lib/katello/repository_types/deb.rb +0 -1
  145. data/lib/katello/repository_types/docker.rb +0 -1
  146. data/lib/katello/repository_types/file.rb +0 -1
  147. data/lib/katello/repository_types/yum.rb +0 -4
  148. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  149. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  150. data/lib/katello/tasks/reimport.rake +1 -2
  151. data/lib/katello/tasks/repository.rake +1 -22
  152. data/lib/katello/tasks/reset.rake +1 -0
  153. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  154. data/lib/katello/version.rb +1 -1
  155. data/lib/katello.rb +0 -5
  156. data/locale/bn/katello.po +69 -27
  157. data/locale/cs/katello.po +69 -27
  158. data/locale/de/katello.po +78 -36
  159. data/locale/en/katello.po +69 -27
  160. data/locale/es/katello.po +70 -28
  161. data/locale/fr/katello.po +73 -31
  162. data/locale/gu/katello.po +69 -27
  163. data/locale/hi/katello.po +69 -27
  164. data/locale/it/katello.po +69 -27
  165. data/locale/ja/katello.po +73 -31
  166. data/locale/ka/katello.po +73 -31
  167. data/locale/katello.pot +335 -262
  168. data/locale/kn/katello.po +69 -27
  169. data/locale/ko/katello.po +69 -27
  170. data/locale/mr/katello.po +69 -27
  171. data/locale/or/katello.po +69 -27
  172. data/locale/pa/katello.po +69 -27
  173. data/locale/pt/katello.po +69 -27
  174. data/locale/pt_BR/katello.po +70 -28
  175. data/locale/ru/katello.po +70 -28
  176. data/locale/ta/katello.po +69 -27
  177. data/locale/te/katello.po +69 -27
  178. data/locale/zh_CN/katello.po +73 -31
  179. data/locale/zh_TW/katello.po +70 -28
  180. data/webpack/components/Content/ContentPage.js +51 -35
  181. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  182. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  183. data/webpack/components/Table/EmptyStateMessage.js +14 -11
  184. data/webpack/components/Table/MainTable.js +36 -15
  185. data/webpack/components/Table/TableWrapper.js +25 -25
  186. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  187. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +5 -4
  188. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +1 -1
  189. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  190. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +18 -9
  191. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +1 -2
  192. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +1 -2
  193. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +1 -2
  194. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +47 -27
  195. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +1 -2
  196. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +2 -21
  197. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +1 -28
  198. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +1 -10
  199. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +1 -18
  200. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +1 -17
  201. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -15
  202. data/webpack/global_test_setup.js +1 -1
  203. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +12 -10
  204. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +6 -0
  205. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +1 -0
  206. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +3 -10
  207. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  208. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +3 -3
  209. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +1 -0
  210. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +12 -4
  211. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +7 -4
  212. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +4 -8
  213. data/webpack/scenes/AlternateContentSources/helpers.js +1 -1
  214. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  215. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  216. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  217. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -14
  218. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -25
  219. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -1
  220. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -31
  221. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -0
  222. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  223. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +2 -1
  224. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +2 -1
  225. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +3 -1
  226. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -1
  227. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  228. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +2 -1
  229. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +2 -0
  230. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  231. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +1 -1
  232. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -1
  233. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -33
  234. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +48 -45
  235. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +58 -24
  236. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +64 -0
  237. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +36 -20
  238. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +40 -23
  239. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +0 -13
  240. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +0 -13
  241. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +2 -1
  242. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -10
  243. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +2 -1
  244. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -10
  245. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +21 -9
  246. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +4 -0
  247. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +1 -32
  248. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +3 -1
  249. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -15
  250. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -1
  251. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -2
  252. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +31 -9
  253. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +4 -0
  254. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -14
  255. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +1 -1
  256. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +55 -120
  257. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  258. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +1 -1
  259. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  260. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  261. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  262. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  263. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  264. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  265. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +1 -1
  266. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +1 -1
  267. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +21 -19
  268. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +34 -1
  269. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +20 -7
  270. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  271. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  272. metadata +49 -146
  273. data/app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb +0 -36
  274. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  275. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  276. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  277. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  278. data/app/lib/actions/pulp/abstract.rb +0 -37
  279. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  280. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  281. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  282. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  283. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  284. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  285. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  286. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  287. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  288. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  289. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  290. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  291. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  292. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  293. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  294. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  295. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  296. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  297. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  298. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  299. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  300. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  301. data/app/lib/actions/pulp/repository/create.rb +0 -28
  302. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  303. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  304. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  305. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  306. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  307. data/app/lib/actions/pulp/repository/download.rb +0 -16
  308. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  309. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  310. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  311. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  312. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  313. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  314. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  315. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  316. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  317. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  318. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  319. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  320. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  321. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  322. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  323. data/app/lib/katello/util/content_overrides_migrator.rb +0 -98
  324. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  325. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  326. data/app/models/katello/glue/pulp/repo.rb +0 -353
  327. data/app/models/katello/pulp_sync_status.rb +0 -165
  328. data/app/models/katello/pulp_task_status.rb +0 -63
  329. data/app/services/katello/pulp/content.rb +0 -24
  330. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  331. data/app/services/katello/pulp/repository/deb.rb +0 -61
  332. data/app/services/katello/pulp/repository/docker.rb +0 -82
  333. data/app/services/katello/pulp/repository/file.rb +0 -52
  334. data/app/services/katello/pulp/repository/yum.rb +0 -205
  335. data/app/services/katello/pulp/repository.rb +0 -327
  336. data/app/services/katello/pulp/server.rb +0 -35
  337. data/app/services/katello/pulp/simple_package.rb +0 -24
  338. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  339. data/lib/monkeys/fix_deb_optimized_sync.rb +0 -35
  340. data/lib/monkeys/fix_pulp_container_path.rb +0 -35
  341. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  342. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  343. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  344. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  345. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  346. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  347. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  348. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  349. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  350. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  351. data/locale/ka/LC_MESSAGES/katello.mo +0 -0
  352. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  353. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  354. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  355. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  356. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  357. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  358. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  359. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  360. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  361. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  362. data/locale/zanata.xml +0 -30
  363. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  364. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
data/locale/it/katello.po CHANGED
@@ -11,7 +11,7 @@
11
11
  #
12
12
  msgid ""
13
13
  msgstr ""
14
- "Project-Id-Version: katello 4.7.0\n"
14
+ "Project-Id-Version: katello 2.4.0-RC1\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
16
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
17
17
  "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
@@ -654,6 +654,9 @@ msgstr ""
654
654
  msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
655
655
  msgstr ""
656
656
 
657
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
658
+ msgstr ""
659
+
657
660
  msgid "Allow deleting repositories in published content views"
658
661
  msgstr ""
659
662
 
@@ -663,6 +666,9 @@ msgstr ""
663
666
  msgid "Allow hosts to re-register themselves only when they are in build mode"
664
667
  msgstr ""
665
668
 
669
+ msgid "Allow multiple content views"
670
+ msgstr ""
671
+
666
672
  msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
667
673
  msgstr ""
668
674
 
@@ -1102,6 +1108,9 @@ msgstr ""
1102
1108
  msgid "Candlepin is not running properly"
1103
1109
  msgstr ""
1104
1110
 
1111
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1112
+ msgstr ""
1113
+
1105
1114
  msgid "Cannot add %s repositories to a content view."
1106
1115
  msgstr "Impossibile aggiungere %s repository ad una visualizzazione del contenuto."
1107
1116
 
@@ -1486,9 +1495,6 @@ msgstr ""
1486
1495
  msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1487
1496
  msgstr ""
1488
1497
 
1489
- msgid "Content View and Environment not set for registration."
1490
- msgstr ""
1491
-
1492
1498
  msgid "Content View id"
1493
1499
  msgstr ""
1494
1500
 
@@ -1507,6 +1513,12 @@ msgstr ""
1507
1513
  msgid "Content credentials"
1508
1514
  msgstr ""
1509
1515
 
1516
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1517
+ msgstr ""
1518
+
1519
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1520
+ msgstr ""
1521
+
1510
1522
  msgid "Content files to upload. Can be a single file or array of files."
1511
1523
  msgstr "File di contenuto da caricare. Può essere un file singolo o un insieme di file."
1512
1524
 
@@ -1549,6 +1561,9 @@ msgstr ""
1549
1561
  msgid "Content view ${name} created"
1550
1562
  msgstr ""
1551
1563
 
1564
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1565
+ msgstr ""
1566
+
1552
1567
  msgid "Content view '%{view}' is not in environment '%{env}'"
1553
1568
  msgstr "La visualizzazione del contenuto '%{view}' non è presente nell'ambiente '%{env}'"
1554
1569
 
@@ -1558,9 +1573,18 @@ msgstr "La visualizzazione del contenuto '%{view}' non è presente nell'ambiente
1558
1573
  msgid "Content view ID"
1559
1574
  msgstr ""
1560
1575
 
1576
+ msgid "Content view and environment not set for registration."
1577
+ msgstr ""
1578
+
1561
1579
  msgid "Content view details"
1562
1580
  msgstr ""
1563
1581
 
1582
+ msgid "Content view environments and activation key must all belong to the same organization"
1583
+ msgstr ""
1584
+
1585
+ msgid "Content view environments must have both a content view and an environment"
1586
+ msgstr ""
1587
+
1564
1588
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1565
1589
  msgstr ""
1566
1590
 
@@ -1570,6 +1594,9 @@ msgstr "Indentificatore visualizzazione del contenuto"
1570
1594
  msgid "Content view label"
1571
1595
  msgstr "Etichetta visualizzazione del contenuto"
1572
1596
 
1597
+ msgid "Content view must be specified"
1598
+ msgstr ""
1599
+
1573
1600
  msgid "Content view name"
1574
1601
  msgstr ""
1575
1602
 
@@ -1747,7 +1774,7 @@ msgstr ""
1747
1774
  msgid "Couldn't find smart proxies with name '%s'"
1748
1775
  msgstr ""
1749
1776
 
1750
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1777
+ msgid "Couldn't find specified content view and lifecycle environment."
1751
1778
  msgstr ""
1752
1779
 
1753
1780
  msgid "Couldn't find subject of synchronization"
@@ -2759,7 +2786,7 @@ msgstr ""
2759
2786
  msgid "Generated"
2760
2787
  msgstr ""
2761
2788
 
2762
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2789
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2763
2790
  msgstr ""
2764
2791
 
2765
2792
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -3173,7 +3200,7 @@ msgstr ""
3173
3200
  msgid "Ignorable content can be only set for Yum repositories."
3174
3201
  msgstr ""
3175
3202
 
3176
- msgid "Ignore SRPMs can not be set in combination with 'Complete Mirroring' mirroring policy."
3203
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3177
3204
  msgstr ""
3178
3205
 
3179
3206
  msgid "Ignore errors"
@@ -3704,6 +3731,9 @@ msgstr ""
3704
3731
  msgid "Lifecycle environment for the host."
3705
3732
  msgstr ""
3706
3733
 
3734
+ msgid "Lifecycle environment must be specified"
3735
+ msgstr ""
3736
+
3707
3737
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3708
3738
  msgstr ""
3709
3739
 
@@ -4130,9 +4160,6 @@ msgstr ""
4130
4160
  msgid "Multi-entitlement"
4131
4161
  msgstr "Entitlement-multipli"
4132
4162
 
4133
- msgid "Multiple environments are not supported."
4134
- msgstr ""
4135
-
4136
4163
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4137
4164
  msgstr ""
4138
4165
 
@@ -4220,12 +4247,6 @@ msgstr "Mai"
4220
4247
  msgid "Never Synced"
4221
4248
  msgstr "Mai sincronizzato"
4222
4249
 
4223
- msgid "Never checked in"
4224
- msgstr ""
4225
-
4226
- msgid "Never registered"
4227
- msgstr ""
4228
-
4229
4250
  msgid "New Errata"
4230
4251
  msgstr "Nuovo errata"
4231
4252
 
@@ -4712,6 +4733,9 @@ msgstr "Organizzazione necessaria"
4712
4733
  msgid "Orphaned Content Protection Time"
4713
4734
  msgstr ""
4714
4735
 
4736
+ msgid "Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!"
4737
+ msgstr ""
4738
+
4715
4739
  msgid "Other"
4716
4740
  msgstr "Altro"
4717
4741
 
@@ -5203,9 +5227,6 @@ msgstr ""
5203
5227
  msgid "Pulp 3 is not enabled on Smart proxy!"
5204
5228
  msgstr ""
5205
5229
 
5206
- msgid "Pulp Docker registry port"
5207
- msgstr ""
5208
-
5209
5230
  msgid "Pulp bulk load size"
5210
5231
  msgstr ""
5211
5232
 
@@ -5440,6 +5461,9 @@ msgstr ""
5440
5461
  msgid "Registered on"
5441
5462
  msgstr ""
5442
5463
 
5464
+ msgid "Registering to multiple environments is not enabled."
5465
+ msgstr ""
5466
+
5443
5467
  msgid "Registration details"
5444
5468
  msgstr ""
5445
5469
 
@@ -6917,9 +6941,6 @@ msgstr "Per accedere alla pagina desiderata selezionare una organizzazione speci
6917
6941
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
6918
6942
  msgstr ""
6919
6943
 
6920
- msgid "The port used by Pulp Crane to provide Docker Registries"
6921
- msgstr ""
6922
-
6923
6944
  msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6924
6945
  msgstr ""
6925
6946
 
@@ -7079,7 +7100,7 @@ msgstr ""
7079
7100
  msgid "This host does not have any packages."
7080
7101
  msgstr ""
7081
7102
 
7082
- msgid "This host has errata that are applicable, but not installable."
7103
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
7083
7104
  msgstr ""
7084
7105
 
7085
7106
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -7112,7 +7133,7 @@ msgstr ""
7112
7133
  msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage with the {subscriptionsService}."
7113
7134
  msgstr ""
7114
7135
 
7115
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7136
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
7116
7137
  msgstr ""
7117
7138
 
7118
7139
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
@@ -7292,6 +7313,9 @@ msgstr "Impossibile collegarsi"
7292
7313
  msgid "Unable to connect. Got: %s"
7293
7314
  msgstr ""
7294
7315
 
7316
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7317
+ msgstr ""
7318
+
7295
7319
  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."
7296
7320
  msgstr ""
7297
7321
 
@@ -7790,6 +7814,9 @@ msgstr ""
7790
7814
  msgid "View a report of the affected hosts"
7791
7815
  msgstr ""
7792
7816
 
7817
+ msgid "View applicable errata"
7818
+ msgstr ""
7819
+
7793
7820
  msgid "View by"
7794
7821
  msgstr ""
7795
7822
 
@@ -7934,9 +7961,6 @@ msgstr ""
7934
7961
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7935
7962
  msgstr ""
7936
7963
 
7937
- msgid "You may want to check the host's content view and lifecycle environment."
7938
- msgstr ""
7939
-
7940
7964
  msgid "You were not allowed to add %s"
7941
7965
  msgstr "Non puoi aggiungere %s"
7942
7966
 
@@ -8075,6 +8099,12 @@ msgstr "esegui l'auto attach delle sottoscrizioni previa registrazione"
8075
8099
  msgid "base url to perform repo discovery on"
8076
8100
  msgstr "url di base sul quale eseguire la scoperta dei repositori"
8077
8101
 
8102
+ msgid "bug fix"
8103
+ msgstr ""
8104
+
8105
+ msgid "bug fixes"
8106
+ msgstr ""
8107
+
8078
8108
  msgid "bulk add filter rules"
8079
8109
  msgstr ""
8080
8110
 
@@ -8249,6 +8279,12 @@ msgstr ""
8249
8279
  msgid "enables or disables synchronization"
8250
8280
  msgstr "abilita o disabilita la sincronizzazione"
8251
8281
 
8282
+ msgid "enhancement"
8283
+ msgstr ""
8284
+
8285
+ msgid "enhancements"
8286
+ msgstr ""
8287
+
8252
8288
  msgid "environment"
8253
8289
  msgstr "ambiente"
8254
8290
 
@@ -8663,6 +8699,12 @@ msgstr "identificatore regole"
8663
8699
  msgid "run job invocation"
8664
8700
  msgstr ""
8665
8701
 
8702
+ msgid "security advisories"
8703
+ msgstr ""
8704
+
8705
+ msgid "security advisory"
8706
+ msgstr ""
8707
+
8666
8708
  msgid "service level"
8667
8709
  msgstr "livello di servizio"
8668
8710
 
data/locale/ja/katello.po CHANGED
@@ -14,7 +14,7 @@
14
14
  #
15
15
  msgid ""
16
16
  msgstr ""
17
- "Project-Id-Version: katello 4.7.0\n"
17
+ "Project-Id-Version: katello 2.4.0-RC1\n"
18
18
  "Report-Msgid-Bugs-To: \n"
19
19
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
20
20
  "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2023\n"
@@ -657,6 +657,9 @@ msgstr "すべてのバージョンがこれらの環境から削除されます
657
657
  msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
658
658
  msgstr "Dynflow タスクでラップされるのではなく、Katello がホストにインストールされたパッケージ、有効なリポジトリー、およびモジュールインベントリーを直接更新するのを許可します (Puma プロセスが大量のメモリーを使用している場合は、無効にしてみてください)"
659
659
 
660
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
661
+ msgstr ""
662
+
660
663
  msgid "Allow deleting repositories in published content views"
661
664
  msgstr "公開済みコンテンツビューでのリポジトリー削除を許可"
662
665
 
@@ -666,6 +669,9 @@ msgstr "ホストがビルドモードである限り、ホスト登録が「ホ
666
669
  msgid "Allow hosts to re-register themselves only when they are in build mode"
667
670
  msgstr "ホストがビルドモードである場合にのみ、ホスト自体の再登録を許可します"
668
671
 
672
+ msgid "Allow multiple content views"
673
+ msgstr ""
674
+
669
675
  msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
670
676
  msgstr "登録する DMI UUID が別のホストで使用されていない限り、新規ホストの登録時には、登録されているプロファイルはホスト名が一致すると想定できるようにする"
671
677
 
@@ -1107,6 +1113,9 @@ msgstr "Candlepin コンシューマー %s はすでに削除されています"
1107
1113
  msgid "Candlepin is not running properly"
1108
1114
  msgstr "Candlepin が正しく実行されていません"
1109
1115
 
1116
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1117
+ msgstr ""
1118
+
1110
1119
  msgid "Cannot add %s repositories to a content view."
1111
1120
  msgstr "コンテンツビューに %s リポジトリーを追加できません。"
1112
1121
 
@@ -1491,9 +1500,6 @@ msgstr "メタデータに指定のコンテンツビューバージョン ('%{n
1491
1500
  msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1492
1501
  msgstr "コンテンツビューバージョン: '%{cvv}'、製品: '%{product}'、リポジトリー: '%{repo}' "
1493
1502
 
1494
- msgid "Content View and Environment not set for registration."
1495
- msgstr "コンテンツビューと環境は登録用に設定されていません。"
1496
-
1497
1503
  msgid "Content View id"
1498
1504
  msgstr "コンテンツビュー ID"
1499
1505
 
@@ -1512,6 +1518,12 @@ msgstr "コンテンツの認証情報"
1512
1518
  msgid "Content credentials"
1513
1519
  msgstr "コンテンツの認証情報"
1514
1520
 
1521
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1522
+ msgstr ""
1523
+
1524
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1525
+ msgstr ""
1526
+
1515
1527
  msgid "Content files to upload. Can be a single file or array of files."
1516
1528
  msgstr "アップロードするコンテンツファイルです。単一ファイルまたはファイルの配列を指定できます。"
1517
1529
 
@@ -1554,6 +1566,9 @@ msgstr "コンテンツビュー"
1554
1566
  msgid "Content view ${name} created"
1555
1567
  msgstr "コンテンツビュー {name} が作成されました"
1556
1568
 
1569
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1570
+ msgstr ""
1571
+
1557
1572
  msgid "Content view '%{view}' is not in environment '%{env}'"
1558
1573
  msgstr "コンテンツビュー '%{view}' は環境 '%{env}' にありません"
1559
1574
 
@@ -1563,9 +1578,18 @@ msgstr "ライフサイクル環境 '%{env}' には、コンテンツビュー '
1563
1578
  msgid "Content view ID"
1564
1579
  msgstr "コンテンツビュー ID"
1565
1580
 
1581
+ msgid "Content view and environment not set for registration."
1582
+ msgstr ""
1583
+
1566
1584
  msgid "Content view details"
1567
1585
  msgstr "コンテンツビューの詳細"
1568
1586
 
1587
+ msgid "Content view environments and activation key must all belong to the same organization"
1588
+ msgstr ""
1589
+
1590
+ msgid "Content view environments must have both a content view and an environment"
1591
+ msgstr ""
1592
+
1569
1593
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1570
1594
  msgstr "コンテンツビューには '%s' のリポジトリーラベルが含まれていますが、このラベルは repos_units パラメーターで指定されていません。"
1571
1595
 
@@ -1575,6 +1599,9 @@ msgstr "コンテンツビュー ID"
1575
1599
  msgid "Content view label"
1576
1600
  msgstr "コンテンツビューラベル"
1577
1601
 
1602
+ msgid "Content view must be specified"
1603
+ msgstr ""
1604
+
1578
1605
  msgid "Content view name"
1579
1606
  msgstr "コンテンツビュー名"
1580
1607
 
@@ -1752,8 +1779,8 @@ msgstr "id '%s' の Smart Proxy は見つかりませんでした"
1752
1779
  msgid "Couldn't find smart proxies with name '%s'"
1753
1780
  msgstr "名前が '%s' の Smart Proxy は見つかりませんでした"
1754
1781
 
1755
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1756
- msgstr "指定のコンテンツビューとライフサイクル環境が見つかりませんでした。"
1782
+ msgid "Couldn't find specified content view and lifecycle environment."
1783
+ msgstr ""
1757
1784
 
1758
1785
  msgid "Couldn't find subject of synchronization"
1759
1786
  msgstr "同期の件名が見つかりませんでした"
@@ -2766,8 +2793,8 @@ msgstr "リポジトリーに適用可能なエラータを生成します"
2766
2793
  msgid "Generated"
2767
2794
  msgstr "生成済み"
2768
2795
 
2769
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2770
- msgstr "生成コンテンツビューをホスト/アクティべーションキーに割り当てることはできません"
2796
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2797
+ msgstr ""
2771
2798
 
2772
2799
  msgid "Generated content views cannot be directly published. They can updated only via export."
2773
2800
  msgstr "生成されたコンテンツビューは直接公開できません。コンテンツビューは、エクスポートしなければ更新されません。"
@@ -3180,7 +3207,7 @@ msgstr "これらのホストの一部を別のコンテンツビューまたは
3180
3207
  msgid "Ignorable content can be only set for Yum repositories."
3181
3208
  msgstr "無視できるコンテンツは、Yum リポジトリーにのみ設定できます。"
3182
3209
 
3183
- msgid "Ignore SRPMs can not be set in combination with 'Complete Mirroring' mirroring policy."
3210
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3184
3211
  msgstr ""
3185
3212
 
3186
3213
  msgid "Ignore errors"
@@ -3711,6 +3738,9 @@ msgstr "ライフサイクル環境 ID"
3711
3738
  msgid "Lifecycle environment for the host."
3712
3739
  msgstr "ホストのライフサイクル環境"
3713
3740
 
3741
+ msgid "Lifecycle environment must be specified"
3742
+ msgstr ""
3743
+
3714
3744
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3715
3745
  msgstr "ライフサイクル環境が Smart Proxy に割り当てられていないため、変更は行われませんでした。"
3716
3746
 
@@ -4137,9 +4167,6 @@ msgstr "Red Hat リポジトリーを有効にしたり、カスタム製品を
4137
4167
  msgid "Multi-entitlement"
4138
4168
  msgstr "マルチエンタイトルメント"
4139
4169
 
4140
- msgid "Multiple environments are not supported."
4141
- msgstr "複数の環境はサポートされていません。"
4142
-
4143
4170
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4144
4171
  msgstr "mandatory_package_names、optional_package_names、conditional_package_names、default_package_names パラメーターから少なくとも 1 つを指定する必要があります"
4145
4172
 
@@ -4233,12 +4260,6 @@ msgstr "なし"
4233
4260
  msgid "Never Synced"
4234
4261
  msgstr "一度も同期されていません"
4235
4262
 
4236
- msgid "Never checked in"
4237
- msgstr "チェックインなし"
4238
-
4239
- msgid "Never registered"
4240
- msgstr "登録なし"
4241
-
4242
4263
  msgid "New Errata"
4243
4264
  msgstr "新規エラータ"
4244
4265
 
@@ -4725,6 +4746,9 @@ msgstr "必要な組織"
4725
4746
  msgid "Orphaned Content Protection Time"
4726
4747
  msgstr "単独コンテンツの保護時間"
4727
4748
 
4749
+ msgid "Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!"
4750
+ msgstr ""
4751
+
4728
4752
  msgid "Other"
4729
4753
  msgstr "その他"
4730
4754
 
@@ -5218,9 +5242,6 @@ msgstr "Pulp 3 のエクスポート先のファイルパス"
5218
5242
  msgid "Pulp 3 is not enabled on Smart proxy!"
5219
5243
  msgstr "Pulp 3 は Smart Proxy で有効になっていません!"
5220
5244
 
5221
- msgid "Pulp Docker registry port"
5222
- msgstr "Pulp Docker レジストリーポート"
5223
-
5224
5245
  msgid "Pulp bulk load size"
5225
5246
  msgstr "Pulp 一括読み込みサイズ"
5226
5247
 
@@ -5455,6 +5476,9 @@ msgstr "以下で登録済み:"
5455
5476
  msgid "Registered on"
5456
5477
  msgstr "登録先"
5457
5478
 
5479
+ msgid "Registering to multiple environments is not enabled."
5480
+ msgstr ""
5481
+
5458
5482
  msgid "Registration details"
5459
5483
  msgstr "登録の詳細"
5460
5484
 
@@ -6936,9 +6960,6 @@ msgstr "アクセス先のページには、特定の組織を選択する必要
6936
6960
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
6937
6961
  msgstr "パス %{real_path} は、有効なリポジトリーではないようです。これがエラーだと思われる場合には、マニフェストを更新してみてください。"
6938
6962
 
6939
- msgid "The port used by Pulp Crane to provide Docker Registries"
6940
- msgstr "Docker レジストリーを指定するために Pulp Crane が使用するポート"
6941
-
6942
6963
  msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6943
6964
  msgstr "製品 %{name} には、別のコンテンツソースに追加するアップストリーム URL を含む %{type} リポジトリーはありません。"
6944
6965
 
@@ -7098,8 +7119,8 @@ msgstr "このホストにはモジュールストリームがありません。
7098
7119
  msgid "This host does not have any packages."
7099
7120
  msgstr "このホストにはパッケージがありません。"
7100
7121
 
7101
- msgid "This host has errata that are applicable, but not installable."
7102
- msgstr "このホストには適用可能なエラータがありますが、インストールできません。"
7122
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
7123
+ msgstr ""
7103
7124
 
7104
7125
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
7105
7126
  msgstr "このホストの組織はシンプルコンテンツアクセスモードです。サブスクリプションのアタッチが無効になっています。"
@@ -7131,8 +7152,8 @@ msgstr "これは、リンクされたリポジトリーではありません"
7131
7152
  msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage with the {subscriptionsService}."
7132
7153
  msgstr "この組織ではシンプルコンテンツアクセスが有効です。リポジトリーにアクセスするのに、ホストにサブスクリプションをアタッチする必要はありません。{br}全体的なサブスクリプションの使用状況は、{subscriptionsService} で確認してください。"
7133
7154
 
7134
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7135
- msgstr ""
7155
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
7156
+ msgstr "この組織は {scaLink} を使用していません。エンタイトルツーベースのサブスクリプション管理は非推奨となり、今後のバージョンで削除されます。"
7136
7157
 
7137
7158
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
7138
7159
  msgstr "このリポジトリーは推奨されていません。使用する前に、 %(anchorBegin)sドキュメント%(anchorEnd)s を追加で参照してください。"
@@ -7311,6 +7332,9 @@ msgstr "接続できません"
7311
7332
  msgid "Unable to connect. Got: %s"
7312
7333
  msgstr "接続できません。結果: %s"
7313
7334
 
7335
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7336
+ msgstr ""
7337
+
7314
7338
  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."
7315
7339
  msgstr "代替コンテンツソースを削除できません。削除するパーミッションがないか、代替コンテンツソースが存在しません。"
7316
7340
 
@@ -7809,6 +7833,9 @@ msgstr "サブスクリプションの使用状況の表示"
7809
7833
  msgid "View a report of the affected hosts"
7810
7834
  msgstr "影響を受けるホストのレポートを表示します"
7811
7835
 
7836
+ msgid "View applicable errata"
7837
+ msgstr ""
7838
+
7812
7839
  msgid "View by"
7813
7840
  msgstr "表示"
7814
7841
 
@@ -7953,9 +7980,6 @@ msgstr "%s 日以内に期限切れになるサブスクリプションがあり
7953
7980
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7954
7981
  msgstr "保存されていない変更があります。変更を保存せずに終了しますか?"
7955
7982
 
7956
- msgid "You may want to check the host's content view and lifecycle environment."
7957
- msgstr "ホストのコンテンツビューとライフサイクル環境を確認することをお勧めします。"
7958
-
7959
7983
  msgid "You were not allowed to add %s"
7960
7984
  msgstr "%s を追加できません"
7961
7985
 
@@ -8094,6 +8118,12 @@ msgstr "登録時のサブスクリプションの自動割り当て"
8094
8118
  msgid "base url to perform repo discovery on"
8095
8119
  msgstr "リポジトリー検出を実行するベース URL"
8096
8120
 
8121
+ msgid "bug fix"
8122
+ msgstr ""
8123
+
8124
+ msgid "bug fixes"
8125
+ msgstr ""
8126
+
8097
8127
  msgid "bulk add filter rules"
8098
8128
  msgstr "フィルタールールの一括追加"
8099
8129
 
@@ -8268,6 +8298,12 @@ msgstr "yum、deb、docker リポジトリーのダウンロードポリシー (
8268
8298
  msgid "enables or disables synchronization"
8269
8299
  msgstr "同期の有効化または無効化"
8270
8300
 
8301
+ msgid "enhancement"
8302
+ msgstr ""
8303
+
8304
+ msgid "enhancements"
8305
+ msgstr ""
8306
+
8271
8307
  msgid "environment"
8272
8308
  msgstr "環境"
8273
8309
 
@@ -8682,6 +8718,12 @@ msgstr "ルール ID"
8682
8718
  msgid "run job invocation"
8683
8719
  msgstr ""
8684
8720
 
8721
+ msgid "security advisories"
8722
+ msgstr ""
8723
+
8724
+ msgid "security advisory"
8725
+ msgstr ""
8726
+
8685
8727
  msgid "service level"
8686
8728
  msgstr "サービスレベル"
8687
8729