katello 3.18.0.rc1 → 4.0.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 (345) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +0 -19
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +1 -3
  4. data/app/controllers/katello/api/v2/api_controller.rb +1 -2
  5. data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +24 -24
  7. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  8. data/app/controllers/katello/api/v2/content_exports_controller.rb +88 -0
  9. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  10. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +16 -7
  11. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +57 -92
  12. data/app/controllers/katello/api/v2/content_views_controller.rb +12 -3
  13. data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
  14. data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
  15. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +2 -3
  16. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +20 -7
  17. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/products_controller.rb +9 -9
  19. data/app/controllers/katello/api/v2/repositories_controller.rb +5 -19
  20. data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
  21. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +34 -0
  22. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  23. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +8 -4
  24. data/app/controllers/katello/concerns/api/v2/authorization.rb +10 -0
  25. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
  26. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +1 -1
  27. data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
  28. data/app/helpers/katello/sync_management_helper.rb +0 -2
  29. data/app/lib/actions/candlepin/environment/create.rb +1 -1
  30. data/app/lib/actions/candlepin/environment/set_content.rb +1 -1
  31. data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
  32. data/app/lib/actions/katello/activation_key/create.rb +9 -11
  33. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  34. data/app/lib/actions/katello/capsule_content/sync.rb +8 -8
  35. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +31 -8
  36. data/app/lib/actions/katello/check_matching_content.rb +17 -0
  37. data/app/lib/actions/katello/content_view/environment_create.rb +6 -8
  38. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  39. data/app/lib/actions/katello/content_view/publish.rb +6 -5
  40. data/app/lib/actions/katello/content_view_version/import.rb +5 -11
  41. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  42. data/app/lib/actions/katello/content_view_version/incremental_update.rb +30 -10
  43. data/app/lib/actions/katello/host/hypervisors_update.rb +4 -4
  44. data/app/lib/actions/katello/host/update_system_purpose.rb +1 -1
  45. data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
  46. data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
  47. data/app/lib/actions/katello/organization/create.rb +3 -5
  48. data/app/lib/actions/katello/organization/destroy.rb +1 -1
  49. data/app/lib/actions/katello/organization/manifest_delete.rb +3 -5
  50. data/app/lib/actions/katello/organization/manifest_import.rb +1 -1
  51. data/app/lib/actions/katello/organization/manifest_refresh.rb +1 -1
  52. data/app/lib/actions/katello/repository/check_matching_content.rb +3 -1
  53. data/app/lib/actions/katello/repository/clone_contents.rb +8 -11
  54. data/app/lib/actions/katello/repository/create.rb +0 -8
  55. data/app/lib/actions/katello/repository/filtered_index_content.rb +3 -0
  56. data/app/lib/actions/katello/repository/import_upload.rb +2 -0
  57. data/app/lib/actions/katello/repository/index_content.rb +1 -0
  58. data/app/lib/actions/katello/repository/multi_clone_contents.rb +9 -12
  59. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  60. data/app/lib/actions/katello/repository/sync.rb +3 -1
  61. data/app/lib/actions/katello/repository/update.rb +1 -8
  62. data/app/lib/actions/katello/repository/upload_files.rb +1 -0
  63. data/app/lib/actions/middleware/execute_if_contents_changed.rb +4 -1
  64. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +35 -0
  65. data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
  66. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -6
  67. data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
  68. data/app/lib/actions/pulp3/abstract_async_task.rb +1 -0
  69. data/app/lib/actions/pulp3/capsule_content/refresh_distribution.rb +3 -3
  70. data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
  71. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  72. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  73. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  74. data/app/lib/actions/pulp3/content_view_version/export.rb +6 -1
  75. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  76. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  77. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +30 -9
  78. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  79. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +0 -4
  80. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
  81. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  82. data/app/lib/actions/pulp3/orchestration/repository/refresh_repos.rb +1 -6
  83. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  84. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  85. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  86. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  87. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -0
  88. data/app/lib/katello/event_daemon/monitor.rb +53 -0
  89. data/app/lib/katello/event_daemon/runner.rb +99 -0
  90. data/app/lib/katello/logging.rb +32 -0
  91. data/app/lib/katello/messaging/connection.rb +1 -7
  92. data/app/lib/katello/validators/content_view_puppet_module_validator.rb +1 -1
  93. data/app/models/katello/activation_key.rb +2 -2
  94. data/app/models/katello/authorization/content_view_filter.rb +15 -0
  95. data/app/models/katello/authorization/content_view_version.rb +25 -2
  96. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  97. data/app/models/katello/authorization/organization.rb +8 -0
  98. data/app/models/katello/candlepin/repository_mapper.rb +1 -1
  99. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  100. data/app/models/katello/concerns/organization_extensions.rb +2 -2
  101. data/app/models/katello/concerns/pulp_database_unit.rb +7 -0
  102. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  103. data/app/models/katello/concerns/smart_proxy_extensions.rb +33 -5
  104. data/app/models/katello/content_migration_progress.rb +4 -0
  105. data/app/models/katello/content_view.rb +35 -5
  106. data/app/models/katello/content_view_environment.rb +2 -2
  107. data/app/models/katello/content_view_filter.rb +5 -0
  108. data/app/models/katello/content_view_history.rb +2 -1
  109. data/app/models/katello/content_view_package_filter.rb +1 -1
  110. data/app/models/katello/content_view_puppet_environment.rb +2 -2
  111. data/app/models/katello/content_view_puppet_module.rb +8 -0
  112. data/app/models/katello/content_view_repository.rb +13 -1
  113. data/app/models/katello/content_view_version.rb +2 -1
  114. data/app/models/katello/content_view_version_export_history.rb +26 -1
  115. data/app/models/katello/erratum.rb +3 -1
  116. data/app/models/katello/glue/candlepin/pool.rb +2 -0
  117. data/app/models/katello/glue/pulp/repo.rb +0 -6
  118. data/app/models/katello/glue/pulp/repos.rb +1 -22
  119. data/app/models/katello/host/subscription_facet.rb +4 -0
  120. data/app/models/katello/ping.rb +11 -6
  121. data/app/models/katello/pool.rb +5 -0
  122. data/app/models/katello/product.rb +3 -3
  123. data/app/models/katello/repository.rb +36 -3
  124. data/app/models/katello/smart_proxy_sync_history.rb +8 -0
  125. data/app/models/katello/subscription_status.rb +3 -2
  126. data/app/presenters/katello/host_subscription_presenter.rb +3 -4
  127. data/app/presenters/katello/host_subscriptions_presenter.rb +24 -0
  128. data/app/services/katello/applicability/applicable_content_helper.rb +44 -15
  129. data/app/services/katello/candlepin_event_listener.rb +11 -19
  130. data/app/services/katello/event_monitor/poller_thread.rb +2 -11
  131. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -15
  132. data/app/services/katello/pulp3/api/docker.rb +4 -0
  133. data/app/services/katello/pulp3/content_view_version/export.rb +122 -6
  134. data/app/services/katello/pulp3/content_view_version/import.rb +37 -22
  135. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
  136. data/app/services/katello/pulp3/content_view_version/import_validator.rb +84 -0
  137. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  138. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  139. data/app/services/katello/pulp3/migration.rb +51 -10
  140. data/app/services/katello/pulp3/repository.rb +13 -4
  141. data/app/services/katello/pulp3/repository/docker.rb +5 -0
  142. data/app/services/katello/pulp3/repository/yum.rb +15 -10
  143. data/app/services/katello/pulp3/task.rb +7 -3
  144. data/app/services/katello/pulp3/task_group.rb +10 -0
  145. data/app/services/katello/repository_type.rb +3 -2
  146. data/app/services/katello/smart_proxy_helper.rb +9 -0
  147. data/app/views/foreman/hosts/_registration.html.erb +12 -0
  148. data/app/views/foreman/smart_proxies/_content_tab.html.erb +4 -47
  149. data/app/views/foreman/smart_proxies/show.html.erb +1 -1
  150. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +22 -25
  151. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -0
  152. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  153. data/app/views/katello/api/v2/content_views/show.json.rabl +6 -0
  154. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -9
  155. data/app/views/katello/layouts/react.html.erb +3 -2
  156. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  157. data/app/views/overrides/organizations/_edit_override.html.erb +1 -4
  158. data/app/views/overrides/smart_proxies/_environment_tab.html.erb +1 -1
  159. data/app/views/overrides/smart_proxies/_environment_tab_pane.html.erb +1 -1
  160. data/config/katello.yaml.example +0 -3
  161. data/config/routes/api/v2.rb +31 -13
  162. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  163. data/db/migrate/20191204214919_add_content_view_version_counts.rb +0 -1
  164. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +5 -2
  165. data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
  166. data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
  167. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  168. data/db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb +56 -0
  169. data/db/migrate/20210128231228_add_type_and_from_cvv_to_cvv_export_history.rb +14 -0
  170. data/db/migrate/20210201163238_migrate_background_download_policy_to_migrate.rb +7 -0
  171. data/db/seeds.d/104-proxy.rb +1 -1
  172. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +1 -1
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +35 -40
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register-os-client.directive.js +17 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +2 -2
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +12 -5
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-deb-client.html +38 -0
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-oracle-client.html +5 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-sles-client.html +28 -0
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html +14 -11
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +8 -3
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +9 -3
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +2 -2
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +4 -0
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +78 -7
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -2
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +1 -1
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/download-policy.service.js +0 -1
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +1 -1
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
  212. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +2 -2
  213. data/lib/katello/engine.rb +6 -6
  214. data/lib/katello/middleware/event_daemon.rb +1 -1
  215. data/lib/katello/permission_creator.rb +35 -14
  216. data/lib/katello/plugin.rb +8 -3
  217. data/lib/katello/tasks/delete_orphaned_content.rake +1 -3
  218. data/lib/katello/tasks/jenkins.rake +1 -1
  219. data/lib/katello/tasks/pulp3_content_switchover.rake +1 -1
  220. data/lib/katello/tasks/pulp3_migration.rake +18 -6
  221. data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
  222. data/lib/katello/tasks/pulp3_migration_stats.rake +28 -8
  223. data/lib/katello/tasks/pulp3_post_migration_check.rake +1 -3
  224. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  225. data/lib/katello/tasks/reimport.rake +1 -1
  226. data/lib/katello/tasks/repository.rake +3 -5
  227. data/lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake +16 -0
  228. data/lib/katello/version.rb +1 -1
  229. data/lib/proxy_api/container_gateway.rb +21 -0
  230. data/locale/action_names.rb +51 -51
  231. data/locale/bn/katello.edit.po +0 -0
  232. data/locale/bn/katello.po +136 -51
  233. data/locale/cs/katello.edit.po +0 -0
  234. data/locale/cs/katello.po +136 -49
  235. data/locale/de/katello.edit.po +0 -0
  236. data/locale/de/katello.po +136 -48
  237. data/locale/en/katello.edit.po +0 -0
  238. data/locale/en/katello.po +136 -48
  239. data/locale/es/katello.edit.po +0 -0
  240. data/locale/es/katello.po +136 -48
  241. data/locale/fr/katello.edit.po +0 -0
  242. data/locale/fr/katello.po +136 -48
  243. data/locale/gu/katello.edit.po +0 -0
  244. data/locale/gu/katello.po +136 -51
  245. data/locale/hi/katello.edit.po +0 -0
  246. data/locale/hi/katello.po +136 -51
  247. data/locale/it/katello.edit.po +0 -0
  248. data/locale/it/katello.po +136 -48
  249. data/locale/ja/katello.edit.po +0 -0
  250. data/locale/ja/katello.po +136 -48
  251. data/locale/katello.pot +941 -767
  252. data/locale/kn/katello.edit.po +0 -0
  253. data/locale/kn/katello.po +136 -51
  254. data/locale/ko/katello.edit.po +0 -0
  255. data/locale/ko/katello.po +136 -48
  256. data/locale/mr/katello.edit.po +0 -0
  257. data/locale/mr/katello.po +136 -51
  258. data/locale/or/katello.edit.po +0 -0
  259. data/locale/or/katello.po +136 -51
  260. data/locale/pa/katello.edit.po +0 -0
  261. data/locale/pa/katello.po +136 -51
  262. data/locale/pt/katello.edit.po +0 -0
  263. data/locale/pt/katello.po +136 -51
  264. data/locale/pt_BR/katello.edit.po +0 -0
  265. data/locale/pt_BR/katello.po +136 -48
  266. data/locale/ru/katello.edit.po +0 -0
  267. data/locale/ru/katello.po +136 -48
  268. data/locale/ta/katello.edit.po +0 -0
  269. data/locale/ta/katello.po +136 -51
  270. data/locale/te/katello.edit.po +0 -0
  271. data/locale/te/katello.po +136 -51
  272. data/locale/zh_CN/katello.edit.po +0 -0
  273. data/locale/zh_CN/katello.po +136 -48
  274. data/locale/zh_TW/katello.edit.po +0 -0
  275. data/locale/zh_TW/katello.po +136 -48
  276. data/package.json +1 -1
  277. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js +0 -1
  278. data/webpack/__mocks__/foremanReact/components/Pagination/PaginationHooks.js +2 -0
  279. data/webpack/__mocks__/foremanReact/components/common/dates/LongDateTime.js +5 -0
  280. data/webpack/{scenes/ContentViews/Details/Repositories → components/SelectableDropdown}/SelectableDropdown.js +20 -3
  281. data/webpack/components/SelectableDropdown/__tests__/SelectableDropdown.test.js +45 -0
  282. data/webpack/components/SelectableDropdown/index.js +3 -0
  283. data/webpack/components/Table/TableWrapper.js +2 -1
  284. data/webpack/components/Table/helpers.js +14 -0
  285. data/webpack/components/TypeAhead/TypeAhead.js +2 -1
  286. data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +2 -1
  287. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +0 -1
  288. data/webpack/containers/Application/overrides.scss +6 -0
  289. data/webpack/index.js +6 -0
  290. data/webpack/redux/actions/RedHatRepositories/helpers.js +5 -5
  291. data/webpack/scenes/ContentViews/ContentViewsActions.js +31 -2
  292. data/webpack/scenes/ContentViews/ContentViewsConstants.js +5 -1
  293. data/webpack/scenes/ContentViews/Copy/ContentViewCopySelectors.js +16 -0
  294. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +77 -0
  295. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +44 -0
  296. data/webpack/scenes/ContentViews/Copy/__tests__/contentViewCopyResult.fixtures.json +42 -0
  297. data/webpack/scenes/ContentViews/Copy/__tests__/copyContentView.test.js +39 -0
  298. data/webpack/scenes/ContentViews/Copy/index.js +4 -0
  299. data/webpack/scenes/ContentViews/Create/ContentViewCreateSelectors.js +16 -0
  300. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +58 -0
  301. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +175 -0
  302. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +27 -0
  303. data/webpack/scenes/ContentViews/Create/__tests__/contentViewCreateResult.fixtures.json +42 -0
  304. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +92 -0
  305. data/webpack/scenes/ContentViews/Create/index.js +4 -0
  306. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +16 -0
  307. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +20 -1
  308. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +17 -7
  309. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +19 -13
  310. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +40 -0
  311. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +124 -0
  312. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.fixtures.json +134 -0
  313. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +92 -0
  314. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +44 -25
  315. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +17 -7
  316. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +24 -0
  317. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +53 -3
  318. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +4 -3
  319. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +41 -0
  320. data/webpack/scenes/ContentViews/helpers.js +13 -0
  321. data/webpack/scenes/SmartProxy/Content.js +17 -0
  322. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +11 -0
  323. data/webpack/scenes/SmartProxy/SmartProxyContentConstants.js +3 -0
  324. data/webpack/scenes/SmartProxy/SmartProxyContentSelectors.js +16 -0
  325. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +152 -0
  326. data/webpack/scenes/SmartProxy/__tests__/SmartProxyContentResult.fixtures.json +140 -0
  327. data/webpack/scenes/SmartProxy/__tests__/SmartProxyContentTest.js +38 -0
  328. data/webpack/scenes/SmartProxy/index.js +4 -0
  329. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +13 -11
  330. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +3 -3
  331. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js +2 -2
  332. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +2 -2
  333. data/webpack/test-utils/react-testing-lib-wrapper.js +8 -2
  334. data/webpack/utils/helpers.js +3 -0
  335. metadata +110 -31
  336. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +0 -114
  337. data/app/overrides/disable_turbolinks_on_proxies_index.rb +0 -5
  338. data/app/services/katello/event_daemon.rb +0 -135
  339. data/app/services/katello/pulp/content_counts_calculator.rb +0 -60
  340. data/lib/katello/tasks/common.rake +0 -7
  341. data/lib/katello/tasks/reports.rake +0 -4
  342. data/lib/katello/tasks/upgrades/3.10/update_gpg_key_urls.rake +0 -32
  343. data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
  344. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.scss +0 -5
  345. data/webpack/scenes/ContentViews/Table/actionResolver.js +0 -28
data/locale/katello.pot CHANGED
@@ -8,8 +8,8 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: katello 1.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2020-11-02 22:17+0000\n"
12
- "PO-Revision-Date: 2020-11-02 22:17+0000\n"
11
+ "POT-Creation-Date: 2020-12-09 17:13+0000\n"
12
+ "PO-Revision-Date: 2020-12-09 17:13+0000\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -31,75 +31,74 @@ msgid "Update installed deb packages"
31
31
  msgstr ""
32
32
 
33
33
  #: ../app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb:42
34
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:192
34
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:190
35
35
  msgid "UUID of the system"
36
36
  msgstr ""
37
37
 
38
38
  #: ../app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb:54
39
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:307
39
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:305
40
40
  msgid "Couldn't find consumer '%s'"
41
41
  msgstr ""
42
42
 
43
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:154
43
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:152
44
44
  msgid "Update services requiring restart"
45
45
  msgstr ""
46
46
 
47
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:160
47
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:158
48
48
  msgid "Tracer profile uploaded successfully"
49
49
  msgstr ""
50
50
 
51
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:182
51
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:180
52
52
  msgid "Update the information about enabled repositories"
53
53
  msgstr ""
54
54
 
55
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:189
55
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:187
56
56
  msgid "List of enabled repo urls for the repo (Only first is used.)"
57
57
  msgstr ""
58
58
 
59
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:195
59
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:193
60
60
  msgid "The request did not contain any repository information."
61
61
  msgstr ""
62
62
 
63
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:222
63
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:220
64
64
  msgid "Deleted consumer '%s'"
65
65
  msgstr ""
66
66
 
67
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:263
67
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:261
68
68
  msgid "Facts successfully updated."
69
69
  msgstr ""
70
70
 
71
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:323
71
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:321
72
72
  msgid ""
73
73
  "User '%s' did not specify an organization ID and does not have a default organ"
74
74
  "ization."
75
75
  msgstr ""
76
76
 
77
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:348
77
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:346
78
78
  msgid "Couldn't find Organization '%s'."
79
79
  msgstr ""
80
80
 
81
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:353
81
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:351
82
82
  msgid "User '%{user}' does not belong to Organization '%{organization}'."
83
83
  msgstr ""
84
84
 
85
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:372
85
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:370
86
86
  msgid "Organization not found"
87
87
  msgstr ""
88
88
 
89
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:376
90
- #: ../app/controllers/katello/api/v2/products_controller.rb:141
89
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:374
91
90
  msgid "Couldn't find activation key '%s'"
92
91
  msgstr ""
93
92
 
94
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:379
93
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:377
95
94
  msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
96
95
  msgstr ""
97
96
 
98
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:388
97
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:386
99
98
  msgid "At least one activation key must be provided"
100
99
  msgstr ""
101
100
 
102
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:397
101
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:395
103
102
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:280
104
103
  msgid "Couldn't find environment '%s'"
105
104
  msgstr ""
@@ -115,7 +114,7 @@ msgstr ""
115
114
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:96
116
115
  #: ../app/controllers/katello/api/v2/content_credentials_controller.rb:29
117
116
  #: ../app/controllers/katello/api/v2/content_credentials_controller.rb:45
118
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:35
117
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:40
119
118
  #: ../app/controllers/katello/api/v2/environments_controller.rb:48
120
119
  #: ../app/controllers/katello/api/v2/environments_controller.rb:123
121
120
  #: ../app/controllers/katello/api/v2/environments_controller.rb:132
@@ -124,18 +123,18 @@ msgstr ""
124
123
  #: ../app/controllers/katello/api/v2/host_collections_controller.rb:29
125
124
  #: ../app/controllers/katello/api/v2/host_collections_controller.rb:38
126
125
  #: ../app/controllers/katello/api/v2/host_collections_controller.rb:73
127
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:21
128
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:33
129
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:42
130
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:79
131
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:91
126
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:24
127
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:36
128
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:45
129
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:82
130
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:94
132
131
  #: ../app/controllers/katello/concerns/api/v2/repository_content_controller.rb:23
133
132
  #: ../app/controllers/katello/concerns/api/v2/repository_content_controller.rb:39
134
133
  msgid "organization identifier"
135
134
  msgstr ""
136
135
 
137
136
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:21
138
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:36
137
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:41
139
138
  #: ../app/controllers/katello/concerns/api/v2/repository_content_controller.rb:28
140
139
  msgid "environment identifier"
141
140
  msgstr ""
@@ -197,7 +196,7 @@ msgstr ""
197
196
 
198
197
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:40
199
198
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:67
200
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:227
199
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:228
201
200
  msgid "content release version"
202
201
  msgstr ""
203
202
 
@@ -317,7 +316,7 @@ msgstr ""
317
316
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:191
318
317
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:208
319
318
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:134
320
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:174
319
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:175
321
320
  msgid "Array of subscriptions to add"
322
321
  msgstr ""
323
322
 
@@ -328,7 +327,7 @@ msgstr ""
328
327
 
329
328
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:193
330
329
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:136
331
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:176
330
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:177
332
331
  msgid "Quantity of this subscriptions to add"
333
332
  msgstr ""
334
333
 
@@ -350,13 +349,13 @@ msgstr ""
350
349
 
351
350
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:224
352
351
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:155
353
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:201
352
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:202
354
353
  msgid "Label of the content"
355
354
  msgstr ""
356
355
 
357
356
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:225
358
357
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:156
359
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:202
358
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:203
360
359
  msgid "Override value. Provide a boolean value if name is 'enabled'"
361
360
  msgstr ""
362
361
 
@@ -368,7 +367,7 @@ msgstr ""
368
367
 
369
368
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:227
370
369
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:158
371
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:204
370
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:205
372
371
  msgid "Set true to remove an override and reset it to 'default'"
373
372
  msgstr ""
374
373
 
@@ -385,7 +384,7 @@ msgid "Couldn't find content view '%s'"
385
384
  msgstr ""
386
385
 
387
386
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:351
388
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:180
387
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:181
389
388
  msgid ""
390
389
  "The specified organization is in Simple Content Access mode. Attaching subscri"
391
390
  "ptions is disabled"
@@ -588,10 +587,153 @@ msgstr ""
588
587
 
589
588
  #: ../app/controllers/katello/api/v2/content_credentials_controller.rb:99
590
589
  #: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:94
591
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:387
590
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:389
592
591
  msgid "No file uploaded"
593
592
  msgstr ""
594
593
 
594
+ #:
595
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:9
596
+ msgid "Performs an incremental-export of a content view version."
597
+ msgstr ""
598
+
599
+ #:
600
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:10
601
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:8
602
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:33
603
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:50
604
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:56
605
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:68
606
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:82
607
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:89
608
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:132
609
+ msgid "Content view version identifier"
610
+ msgstr ""
611
+
612
+ #:
613
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:11
614
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:28
615
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:10
616
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:34
617
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:48
618
+ msgid "Destination Server name"
619
+ msgstr ""
620
+
621
+ #:
622
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:12
623
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:29
624
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:35
625
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:49
626
+ msgid ""
627
+ "Split the exported content into archives no greater than the specified size in"
628
+ " megabytes."
629
+ msgstr ""
630
+
631
+ #:
632
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:14
633
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:31
634
+ msgid ""
635
+ "Export history identifier used for incremental export. If not provided the mos"
636
+ "t recent export history will be used."
637
+ msgstr ""
638
+
639
+ #:
640
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:26
641
+ msgid "Performs an incremental-export of the repositories in library."
642
+ msgstr ""
643
+
644
+ #:
645
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:27
646
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:11
647
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:47
648
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:22
649
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:25
650
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:69
651
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:12
652
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:67
653
+ #: ../app/controllers/katello/api/v2/packages_controller.rb:33
654
+ #: ../app/controllers/katello/api/v2/srpms_controller.rb:7
655
+ #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:74
656
+ msgid "Organization identifier"
657
+ msgstr ""
658
+
659
+ #:
660
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:55
661
+ msgid ""
662
+ "Unable to incrementally export. Do a Full Export the library content before up"
663
+ "dating from the latest increment."
664
+ msgstr ""
665
+
666
+ #:
667
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:73
668
+ msgid ""
669
+ "No existing export history was found to perform an incremental export. A full "
670
+ "export must be performed"
671
+ msgstr ""
672
+
673
+ #:
674
+ #: ../app/controllers/katello/api/v2/content_export_incrementals_controller.rb:88
675
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:75
676
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
677
+ msgstr ""
678
+
679
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:7
680
+ msgid "List export histories"
681
+ msgstr ""
682
+
683
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:9
684
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:8
685
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:20
686
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:123
687
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:88
688
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:97
689
+ msgid "Content view identifier"
690
+ msgstr ""
691
+
692
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:12
693
+ msgid "Content view version export history identifier"
694
+ msgstr ""
695
+
696
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:26
697
+ msgid ""
698
+ "true if the export api is pulp3 ready and usable. This API is intended for use"
699
+ " by hammer-cli only."
700
+ msgstr ""
701
+
702
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:32
703
+ msgid "Performs a full-export of a content view version."
704
+ msgstr ""
705
+
706
+ #: ../app/controllers/katello/api/v2/content_exports_controller.rb:46
707
+ msgid "Performs a full-export of the repositories in library."
708
+ msgstr ""
709
+
710
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:7
711
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:122
712
+ msgid "Import a content view version"
713
+ msgstr ""
714
+
715
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:9
716
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:23
717
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:124
718
+ msgid "Directory containing the exported Content View Version"
719
+ msgstr ""
720
+
721
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:10
722
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:24
723
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:125
724
+ msgid "Metadata taken from the upstream export history for this Content View Version"
725
+ msgstr ""
726
+
727
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:13
728
+ msgid ""
729
+ "Cannot use this end point for importing to library. If you intented to upload "
730
+ "to library, use the library endpoint."
731
+ msgstr ""
732
+
733
+ #: ../app/controllers/katello/api/v2/content_imports_controller.rb:21
734
+ msgid "Import a content view version to the library"
735
+ msgstr ""
736
+
595
737
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:9
596
738
  msgid "Create an upload request"
597
739
  msgstr ""
@@ -610,9 +752,9 @@ msgid "Checksum of file to upload"
610
752
  msgstr ""
611
753
 
612
754
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:13
613
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:364
614
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:375
615
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:404
755
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:366
756
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:377
757
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:406
616
758
  msgid ""
617
759
  "content type ('deb', 'docker_manifest', 'file', 'ostree', 'puppet_module', 'rp"
618
760
  "m', 'srpm')"
@@ -624,7 +766,7 @@ msgstr ""
624
766
 
625
767
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:21
626
768
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:33
627
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:400
769
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:402
628
770
  msgid "Repository id"
629
771
  msgstr ""
630
772
 
@@ -645,70 +787,70 @@ msgstr ""
645
787
  msgid "Delete an upload request"
646
788
  msgstr ""
647
789
 
648
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:9
790
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:10
649
791
  msgid "List components attached to this content view"
650
792
  msgstr ""
651
793
 
652
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:10
653
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:26
654
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:47
655
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:64
794
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:11
795
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:27
796
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:59
797
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:76
656
798
  msgid "composite content view identifier"
657
799
  msgstr ""
658
800
 
659
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:25
801
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:26
660
802
  msgid "Add components to the content view"
661
803
  msgstr ""
662
804
 
663
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:27
805
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:28
664
806
  msgid "Array of components to add"
665
807
  msgstr ""
666
808
 
667
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:28
668
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:66
809
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:29
810
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:78
669
811
  msgid "identifier of the version of the component content view"
670
812
  msgstr ""
671
813
 
672
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:30
814
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:31
673
815
  msgid "content view identifier of the component who's latest version is desired"
674
816
  msgstr ""
675
817
 
676
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:31
818
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:32
677
819
  msgid "true if the latest version of the component's content view is desired"
678
820
  msgstr ""
679
821
 
680
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:46
822
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:58
681
823
  msgid "Remove components from the content view"
682
824
  msgstr ""
683
825
 
684
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:48
826
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:60
685
827
  msgid ""
686
828
  "Array of content view component IDs to remove. Identifier of the component ass"
687
829
  "ociation"
688
830
  msgstr ""
689
831
 
690
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:55
832
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:67
691
833
  msgid "Show a content view component"
692
834
  msgstr ""
693
835
 
694
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:56
836
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:68
695
837
  msgid "composite content view numeric identifier"
696
838
  msgstr ""
697
839
 
698
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:57
699
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:65
840
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:69
841
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:77
700
842
  msgid "content view component ID. Identifier of the component association"
701
843
  msgstr ""
702
844
 
703
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:63
845
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:75
704
846
  msgid "Update a component associated with the content view"
705
847
  msgstr ""
706
848
 
707
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:67
849
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:79
708
850
  msgid "true if the latest version of the components content view is desired"
709
851
  msgstr ""
710
852
 
711
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:74
853
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:89
712
854
  msgid ""
713
855
  " Either select the latest content view or the content view version. Cannot set"
714
856
  " both."
@@ -904,7 +1046,7 @@ msgstr ""
904
1046
  msgid "delete a filter"
905
1047
  msgstr ""
906
1048
 
907
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:94
1049
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:107
908
1050
  msgid "Couldn't find ContentViewFilter with id=%s"
909
1051
  msgstr ""
910
1052
 
@@ -914,12 +1056,12 @@ msgstr ""
914
1056
 
915
1057
  #: ../app/controllers/katello/api/v2/content_view_histories_controller.rb:8
916
1058
  #: ../app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb:32
917
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:117
918
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:124
919
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:156
920
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:170
921
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:183
922
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:214
1059
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:126
1060
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:133
1061
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:165
1062
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:179
1063
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:192
1064
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:223
923
1065
  msgid "content view numeric identifier"
924
1066
  msgstr ""
925
1067
 
@@ -989,276 +1131,207 @@ msgstr ""
989
1131
  msgid "Content View id"
990
1132
  msgstr ""
991
1133
 
992
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:16
993
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:17
994
- msgid "List content view versions"
995
- msgstr ""
996
-
997
1134
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:18
998
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:88
999
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:126
1000
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:79
1001
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:88
1002
- msgid "Content view identifier"
1135
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:19
1136
+ msgid "List content view versions"
1003
1137
  msgstr ""
1004
1138
 
1005
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:19
1139
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:21
1006
1140
  msgid "Filter versions by environment"
1007
1141
  msgstr ""
1008
1142
 
1009
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:20
1143
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:22
1010
1144
  msgid "Filter versions by puppet module"
1011
1145
  msgstr ""
1012
1146
 
1013
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:21
1147
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:23
1014
1148
  msgid "Filter versions by version number"
1015
1149
  msgstr ""
1016
1150
 
1017
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:22
1151
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:24
1018
1152
  msgid "Filter versions that are components in the specified composite version"
1019
1153
  msgstr ""
1020
1154
 
1021
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:23
1022
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:90
1023
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:64
1024
- #: ../app/controllers/katello/api/v2/errata_controller.rb:12
1025
- #: ../app/controllers/katello/api/v2/errata_controller.rb:67
1026
- #: ../app/controllers/katello/api/v2/packages_controller.rb:33
1027
- #: ../app/controllers/katello/api/v2/srpms_controller.rb:7
1028
- #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:74
1029
- msgid "Organization identifier"
1030
- msgstr ""
1031
-
1032
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:24
1155
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:26
1033
1156
  msgid ""
1034
1157
  "Filter composite versions whose publish was triggered by the specified compone"
1035
1158
  "nt version"
1036
1159
  msgstr ""
1037
1160
 
1038
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:47
1161
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:49
1039
1162
  msgid "Show content view version"
1040
1163
  msgstr ""
1041
1164
 
1042
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:48
1043
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:54
1044
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:66
1045
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:80
1046
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:87
1047
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:110
1048
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:135
1049
- msgid "Content view version identifier"
1050
- msgstr ""
1051
-
1052
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:53
1165
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:55
1053
1166
  msgid "Promote a content view version"
1054
1167
  msgstr ""
1055
1168
 
1056
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:55
1169
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:57
1057
1170
  msgid "force content view promotion and bypass lifecycle environment restriction"
1058
1171
  msgstr ""
1059
1172
 
1060
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:56
1173
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:58
1061
1174
  msgid "Identifiers for Lifecycle Environment"
1062
1175
  msgstr ""
1063
1176
 
1064
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:57
1177
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:59
1065
1178
  msgid "The description for the content view version promotion"
1066
1179
  msgstr ""
1067
1180
 
1068
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:65
1181
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:67
1069
1182
  msgid "Update a content view version"
1070
1183
  msgstr ""
1071
1184
 
1072
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:67
1185
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:69
1073
1186
  msgid "The description for the content view version"
1074
1187
  msgstr ""
1075
1188
 
1076
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:71
1189
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:73
1077
1190
  msgid "This content view version doesn't have a history."
1078
1191
  msgstr ""
1079
1192
 
1080
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:79
1193
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:81
1081
1194
  msgid "Forces a republish of the version's repositories' metadata"
1082
1195
  msgstr ""
1083
1196
 
1084
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:86
1085
- msgid "Show the export history for a content view version"
1086
- msgstr ""
1087
-
1088
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:89
1089
- msgid "Destination Server name"
1090
- msgstr ""
1091
-
1092
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:103
1093
- msgid ""
1094
- "true if the export api is pulp3 ready and usable. This API is intended for use"
1095
- " by hammer-cli only."
1096
- msgstr ""
1097
-
1098
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:109
1099
- msgid "Export a content view version"
1100
- msgstr ""
1101
-
1102
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:111
1103
- msgid "Destination Server name, required for Pulp3"
1104
- msgstr ""
1105
-
1106
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:112
1107
- msgid ""
1108
- "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for P"
1109
- "ulp 3 repositories"
1197
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:88
1198
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1110
1199
  msgstr ""
1111
1200
 
1112
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:113
1113
- msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1201
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:90
1202
+ msgid "Export to ISO format."
1114
1203
  msgstr ""
1115
1204
 
1116
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:114
1205
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:91
1117
1206
  msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
1118
1207
  msgstr ""
1119
1208
 
1120
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:115
1209
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:92
1121
1210
  msgid ""
1122
1211
  "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pul"
1123
1212
  "p 2 repositories"
1124
1213
  msgstr ""
1125
1214
 
1126
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:125
1127
- msgid "Import a content view version"
1215
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:95
1216
+ msgid ""
1217
+ "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repos"
1218
+ "itories"
1128
1219
  msgstr ""
1129
1220
 
1130
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:127
1131
- msgid "Directory containing the exported Content View Version"
1221
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:100
1222
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:317
1223
+ msgid "ISO export must be enabled when specifying ISO size"
1132
1224
  msgstr ""
1133
1225
 
1134
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:128
1135
- msgid "Metadata taken from the upstream export history for this Content View Version"
1226
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:104
1227
+ msgid "This content view has on demand repositories that cannot be exported: %{repos}"
1136
1228
  msgstr ""
1137
1229
 
1138
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:134
1230
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:111
1231
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:324
1232
+ msgid "Invalid date provided."
1233
+ msgstr ""
1234
+
1235
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:131
1139
1236
  msgid "Remove content view version"
1140
1237
  msgstr ""
1141
1238
 
1142
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:141
1239
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:138
1143
1240
  msgid "Perform an Incremental Update on one or more Content View Versions"
1144
1241
  msgstr ""
1145
1242
 
1146
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:143
1243
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:140
1147
1244
  msgid ""
1148
1245
  "Content View Version Ids to perform an incremental update on. May contain com"
1149
1246
  "posites as well as one or more components to update."
1150
1247
  msgstr ""
1151
1248
 
1152
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:144
1249
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:141
1153
1250
  msgid ""
1154
1251
  "The list of environments to promote the specified Content View Version to (rep"
1155
1252
  "lacing the older version)"
1156
1253
  msgstr ""
1157
1254
 
1158
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:146
1255
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:143
1159
1256
  msgid "The description for the new generated Content View Versions"
1160
1257
  msgstr ""
1161
1258
 
1162
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:147
1259
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:144
1163
1260
  msgid ""
1164
1261
  "If true, when adding the specified errata or packages, any needed dependencies"
1165
1262
  " will be copied as well. Defaults to true"
1166
1263
  msgstr ""
1167
1264
 
1168
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:148
1265
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:145
1169
1266
  msgid ""
1170
1267
  "If true, will publish a new composite version using any specified content_view"
1171
1268
  "_version_id that has been promoted to a lifecycle environment"
1172
1269
  msgstr ""
1173
1270
 
1174
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:155
1271
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:152
1175
1272
  msgid ""
1176
1273
  "After generating the incremental update, apply the changes to the specified ho"
1177
1274
  "sts. Only Errata are supported currently."
1178
1275
  msgstr ""
1179
1276
 
1180
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:157
1277
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:154
1181
1278
  msgid "Search string for host to perform an action on"
1182
1279
  msgstr ""
1183
1280
 
1184
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:158
1185
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:48
1281
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:155
1282
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:49
1186
1283
  msgid "List of host ids to perform an action on"
1187
1284
  msgstr ""
1188
1285
 
1189
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:161
1190
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:51
1286
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:158
1287
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:52
1191
1288
  msgid "List of host ids to exclude and not run an action on"
1192
1289
  msgstr ""
1193
1290
 
1194
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:166
1291
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:163
1195
1292
  msgid "Incremental update requires at least one content unit"
1196
1293
  msgstr ""
1197
1294
 
1198
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:210
1295
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:203
1199
1296
  msgid "The default content view cannot be promoted"
1200
1297
  msgstr ""
1201
1298
 
1202
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:219
1299
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:221
1203
1300
  msgid "At least one Content View Version must be specified"
1204
1301
  msgstr ""
1205
1302
 
1206
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:230
1303
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:232
1207
1304
  msgid "You are not allowed to publish Content View %s"
1208
1305
  msgstr ""
1209
1306
 
1210
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:234
1307
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:236
1211
1308
  msgid "You are not allowed to promote to Environments %s"
1212
1309
  msgstr ""
1213
1310
 
1214
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:239
1311
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:241
1215
1312
  msgid "Could not find Environment with ids: %s"
1216
1313
  msgstr ""
1217
1314
 
1218
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:292
1315
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:294
1219
1316
  msgid "Could not find %{count} errata. Only found: %{found}"
1220
1317
  msgstr ""
1221
1318
 
1222
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:298
1319
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:300
1223
1320
  msgid "package_ids is not an array"
1224
1321
  msgstr ""
1225
1322
 
1226
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:302
1323
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:304
1227
1324
  msgid "deb_ids is not an array"
1228
1325
  msgstr ""
1229
1326
 
1230
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:306
1327
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:308
1231
1328
  msgid "puppet_module_ids is not an array"
1232
1329
  msgstr ""
1233
1330
 
1234
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:315
1331
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:317
1235
1332
  msgid "Could not find environments for promotion"
1236
1333
  msgstr ""
1237
1334
 
1238
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:328
1239
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:315
1240
- msgid "ISO export must be enabled when specifying ISO size"
1241
- msgstr ""
1242
-
1243
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:332
1244
- msgid "This content view has on demand repositories that cannot be exported: %{repos}"
1245
- msgstr ""
1246
-
1247
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:339
1248
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:322
1249
- msgid "Invalid date provided."
1250
- msgstr ""
1251
-
1252
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:351
1253
- msgid ""
1254
- "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 re"
1255
- "positories"
1256
- msgstr ""
1257
-
1258
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:355
1259
- msgid "Destination Server Name required for Pulp3 repositories"
1260
- msgstr ""
1261
-
1262
1335
  #: ../app/controllers/katello/api/v2/content_views_controller.rb:19
1263
1336
  msgid "Description for the content view"
1264
1337
  msgstr ""
@@ -1281,183 +1354,193 @@ msgstr ""
1281
1354
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
1282
1355
  msgstr ""
1283
1356
 
1284
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:33
1285
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:34
1357
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:24
1358
+ msgid ""
1359
+ "Designate this Content View for importing from upstream servers only. Defaults"
1360
+ " to false"
1361
+ msgstr ""
1362
+
1363
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:38
1364
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:39
1286
1365
  msgid "List content views"
1287
1366
  msgstr ""
1288
1367
 
1289
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:37
1368
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:42
1290
1369
  msgid "Filter out default content views"
1291
1370
  msgstr ""
1292
1371
 
1293
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:38
1372
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:43
1294
1373
  msgid "Filter out composite content views"
1295
1374
  msgstr ""
1296
1375
 
1297
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:39
1376
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:44
1298
1377
  msgid "Filter only composite content views"
1299
1378
  msgstr ""
1300
1379
 
1301
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:40
1380
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:45
1302
1381
  msgid "Do not include this array of content views"
1303
1382
  msgstr ""
1304
1383
 
1305
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:41
1306
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:65
1384
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:46
1385
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:70
1307
1386
  msgid "Name of the content view"
1308
1387
  msgstr ""
1309
1388
 
1310
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:62
1311
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:63
1389
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:67
1390
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:68
1312
1391
  msgid "Create a content view"
1313
1392
  msgstr ""
1314
1393
 
1315
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:66
1394
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:71
1316
1395
  msgid "Content view label"
1317
1396
  msgstr ""
1318
1397
 
1319
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:67
1398
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:72
1320
1399
  msgid "Composite content view"
1321
1400
  msgstr ""
1322
1401
 
1323
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:78
1402
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:76
1403
+ msgid "Import-only content views will be available in a future version."
1404
+ msgstr ""
1405
+
1406
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:87
1324
1407
  msgid "Update a content view"
1325
1408
  msgstr ""
1326
1409
 
1327
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:80
1410
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:89
1328
1411
  msgid "New name for the content view"
1329
1412
  msgstr ""
1330
1413
 
1331
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:87
1414
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:96
1332
1415
  msgid "Publish a content view"
1333
1416
  msgstr ""
1334
1417
 
1335
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:89
1418
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:98
1336
1419
  msgid "Description for the new published content view version"
1337
1420
  msgstr ""
1338
1421
 
1339
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:90
1422
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:99
1340
1423
  msgid "Override the major version number"
1341
1424
  msgstr ""
1342
1425
 
1343
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:91
1426
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:100
1344
1427
  msgid "Override the minor version number"
1345
1428
  msgstr ""
1346
1429
 
1347
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:92
1430
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:101
1348
1431
  msgid "Specify the list of units in each repo"
1349
1432
  msgstr ""
1350
1433
 
1351
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:93
1434
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:102
1352
1435
  msgid "repo label"
1353
1436
  msgstr ""
1354
1437
 
1355
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:94
1438
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:103
1356
1439
  msgid "list of rpm filename strings to include in published version"
1357
1440
  msgstr ""
1358
1441
 
1359
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:98
1442
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:107
1360
1443
  msgid ""
1361
1444
  "Directly setting package lists on composite content views is not allowed. Plea"
1362
1445
  "se update the components, then re-publish the composite."
1363
1446
  msgstr ""
1364
1447
 
1365
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:102
1448
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:111
1366
1449
  msgid ""
1367
1450
  "A CV version already exists with the same major and minor version (%{major}.%{"
1368
1451
  "minor})"
1369
1452
  msgstr ""
1370
1453
 
1371
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:106
1454
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:115
1372
1455
  msgid "Both major and minor parameters have to be used to override a CV version"
1373
1456
  msgstr ""
1374
1457
 
1375
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:116
1458
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:125
1376
1459
  msgid "Show a content view"
1377
1460
  msgstr ""
1378
1461
 
1379
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:123
1462
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:132
1380
1463
  msgid "Get puppet modules that are available to be added to the content view"
1381
1464
  msgstr ""
1382
1465
 
1383
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:125
1466
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:134
1384
1467
  msgid "module name to restrict modules for"
1385
1468
  msgstr ""
1386
1469
 
1387
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:155
1470
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:164
1388
1471
  msgid "Get puppet modules names that are available to be added to the content view"
1389
1472
  msgstr ""
1390
1473
 
1391
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:169
1474
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:178
1392
1475
  msgid "Remove a content view from an environment"
1393
1476
  msgstr ""
1394
1477
 
1395
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:171
1478
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:180
1396
1479
  msgid "environment numeric identifier"
1397
1480
  msgstr ""
1398
1481
 
1399
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:174
1482
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:183
1400
1483
  msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
1401
1484
  msgstr ""
1402
1485
 
1403
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:182
1486
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:191
1404
1487
  msgid ""
1405
1488
  "Remove versions and/or environments from a content view and reassign systems a"
1406
1489
  "nd keys"
1407
1490
  msgstr ""
1408
1491
 
1409
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:184
1492
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:193
1410
1493
  msgid "environment numeric identifiers to be removed"
1411
1494
  msgstr ""
1412
1495
 
1413
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:185
1496
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:194
1414
1497
  msgid "content view version identifiers to be deleted"
1415
1498
  msgstr ""
1416
1499
 
1417
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:186
1500
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:195
1418
1501
  msgid "content view to reassign orphaned systems to"
1419
1502
  msgstr ""
1420
1503
 
1421
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:187
1504
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:196
1422
1505
  msgid "environment to reassign orphaned systems to"
1423
1506
  msgstr ""
1424
1507
 
1425
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:188
1508
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:197
1426
1509
  msgid "content view to reassign orphaned activation keys to"
1427
1510
  msgstr ""
1428
1511
 
1429
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:189
1512
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:198
1430
1513
  msgid "environment to reassign orphaned activation keys to"
1431
1514
  msgstr ""
1432
1515
 
1433
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:197
1516
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:206
1434
1517
  msgid ""
1435
1518
  "There either were no environments nor versions specified or there were invalid"
1436
1519
  " environments/versions specified. Please check environment_ids and content_vie"
1437
1520
  "w_version_ids parameters."
1438
1521
  msgstr ""
1439
1522
 
1440
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:213
1523
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:222
1441
1524
  msgid "Delete a content view"
1442
1525
  msgstr ""
1443
1526
 
1444
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:220
1527
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:229
1445
1528
  msgid "Make copy of a content view"
1446
1529
  msgstr ""
1447
1530
 
1448
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:221
1531
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:230
1449
1532
  msgid "Content view numeric identifier"
1450
1533
  msgstr ""
1451
1534
 
1452
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:222
1535
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:231
1453
1536
  msgid "New content view name"
1454
1537
  msgstr ""
1455
1538
 
1456
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:235
1539
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:244
1457
1540
  msgid "The default content view cannot be edited, published, or deleted."
1458
1541
  msgstr ""
1459
1542
 
1460
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:258
1543
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:267
1461
1544
  msgid "Always Use Latest (currently %{version})"
1462
1545
  msgstr ""
1463
1546
 
@@ -1506,7 +1589,7 @@ msgid "ID of the environment"
1506
1589
  msgstr ""
1507
1590
 
1508
1591
  #: ../app/controllers/katello/api/v2/environments_controller.rb:68
1509
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:45
1592
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:46
1510
1593
  #: ../app/controllers/katello/api/v2/products_controller.rb:76
1511
1594
  msgid "ID of the organization"
1512
1595
  msgstr ""
@@ -1610,8 +1693,8 @@ msgstr ""
1610
1693
  #: ../app/controllers/katello/api/v2/errata_controller.rb:15
1611
1694
  #: ../app/controllers/katello/api/v2/errata_controller.rb:69
1612
1695
  #: ../app/controllers/katello/api/v2/packages_controller.rb:36
1613
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:258
1614
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:309
1696
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:260
1697
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:311
1615
1698
  #: ../app/controllers/katello/api/v2/srpms_controller.rb:8
1616
1699
  msgid "Repository identifier"
1617
1700
  msgstr ""
@@ -1702,7 +1785,7 @@ msgid "gpg key numeric identifier"
1702
1785
  msgstr ""
1703
1786
 
1704
1787
  #: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:61
1705
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:338
1788
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:340
1706
1789
  msgid "Update a repository"
1707
1790
  msgstr ""
1708
1791
 
@@ -1943,11 +2026,6 @@ msgstr ""
1943
2026
  msgid "No errata has been specified."
1944
2027
  msgstr ""
1945
2028
 
1946
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:128
1947
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:134
1948
- msgid "Couldn't find host '%s'"
1949
- msgstr ""
1950
-
1951
2029
  #: ../app/controllers/katello/api/v2/host_module_streams_controller.rb:12
1952
2030
  msgid "List module streams available to the host"
1953
2031
  msgstr ""
@@ -2114,14 +2192,14 @@ msgid "Content View ID"
2114
2192
  msgstr ""
2115
2193
 
2116
2194
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:116
2117
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:157
2195
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:158
2118
2196
  msgid "Array of subscriptions to remove"
2119
2197
  msgstr ""
2120
2198
 
2121
2199
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:117
2122
2200
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:135
2123
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:158
2124
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:175
2201
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:159
2202
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:176
2125
2203
  msgid "Subscription Pool id"
2126
2204
  msgstr ""
2127
2205
 
@@ -2154,12 +2232,12 @@ msgid "Override to a boolean value or 'default'"
2154
2232
  msgstr ""
2155
2233
 
2156
2234
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:154
2157
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:200
2235
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:201
2158
2236
  msgid "Array of Content override parameters"
2159
2237
  msgstr ""
2160
2238
 
2161
2239
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:157
2162
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:203
2240
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:204
2163
2241
  msgid ""
2164
2242
  "Override key or name. Note if name is not provided the default name will be 'e"
2165
2243
  "nabled'"
@@ -2202,7 +2280,7 @@ msgid "Resolve Traces"
2202
2280
  msgstr ""
2203
2281
 
2204
2282
  #: ../app/controllers/katello/api/v2/host_tracer_controller.rb:19
2205
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:242
2283
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:243
2206
2284
  msgid "Array of Trace IDs"
2207
2285
  msgstr ""
2208
2286
 
@@ -2210,118 +2288,118 @@ msgstr ""
2210
2288
  msgid "The requested traces were not found for this host"
2211
2289
  msgstr ""
2212
2290
 
2213
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:47
2291
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:48
2214
2292
  msgid "Search string for hosts to perform an action on"
2215
2293
  msgstr ""
2216
2294
 
2217
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:56
2295
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:57
2218
2296
  msgid "Add one or more host collections to one or more hosts"
2219
2297
  msgstr ""
2220
2298
 
2221
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:58
2222
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:81
2299
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:59
2300
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:82
2223
2301
  msgid "List of host collection ids"
2224
2302
  msgstr ""
2225
2303
 
2226
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:69
2304
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:70
2227
2305
  msgid ""
2228
2306
  "Successfully added %{count} content host(s) to host collection %{host_collecti"
2229
2307
  "on}."
2230
2308
  msgstr ""
2231
2309
 
2232
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:79
2310
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:80
2233
2311
  msgid "Remove one or more host collections from one or more hosts"
2234
2312
  msgstr ""
2235
2313
 
2236
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:92
2314
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:93
2237
2315
  msgid ""
2238
2316
  "Successfully removed %{count} content host(s) from host collection %{host_coll"
2239
2317
  "ection}."
2240
2318
  msgstr ""
2241
2319
 
2242
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:102
2320
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:103
2243
2321
  msgid "Fetch applicable errata for one or more hosts."
2244
2322
  msgstr ""
2245
2323
 
2246
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:110
2324
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:111
2247
2325
  msgid "Fetch installable errata for one or more hosts."
2248
2326
  msgstr ""
2249
2327
 
2250
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:117
2328
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:118
2251
2329
  msgid "Install content on one or more hosts"
2252
2330
  msgstr ""
2253
2331
 
2254
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:120
2332
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:121
2255
2333
  msgid ""
2256
2334
  "The type of content. The following types are supported: 'package', 'package_g"
2257
2335
  "roup' and 'errata'."
2258
2336
  msgstr ""
2259
2337
 
2260
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:122
2338
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:123
2261
2339
  msgid "List of content (e.g. package names, package group names or errata ids)"
2262
2340
  msgstr ""
2263
2341
 
2264
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:127
2342
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:128
2265
2343
  msgid "Update content on one or more hosts"
2266
2344
  msgstr ""
2267
2345
 
2268
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:130
2269
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:141
2346
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:131
2347
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:142
2270
2348
  msgid ""
2271
2349
  "The type of content. The following types are supported: 'package' and 'packag"
2272
2350
  "e_group."
2273
2351
  msgstr ""
2274
2352
 
2275
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:132
2276
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:143
2353
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:133
2354
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:144
2277
2355
  msgid "List of content (e.g. package or package group names)"
2278
2356
  msgstr ""
2279
2357
 
2280
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:133
2358
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:134
2281
2359
  msgid "Updates all packages on the host(s)"
2282
2360
  msgstr ""
2283
2361
 
2284
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:138
2362
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:139
2285
2363
  msgid "Remove content on one or more hosts"
2286
2364
  msgstr ""
2287
2365
 
2288
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:148
2366
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:149
2289
2367
  msgid "Destroy one or more hosts"
2290
2368
  msgstr ""
2291
2369
 
2292
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:155
2370
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:156
2293
2371
  msgid "Remove subscriptions from one or more hosts"
2294
2372
  msgstr ""
2295
2373
 
2296
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:159
2374
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:160
2297
2375
  msgid "Quantity of specified subscription to remove"
2298
2376
  msgstr ""
2299
2377
 
2300
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:172
2378
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:173
2301
2379
  msgid "Add subscriptions to one or more hosts"
2302
2380
  msgstr ""
2303
2381
 
2304
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:191
2382
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:192
2305
2383
  msgid "Trigger an auto-attach of subscriptions on one or more hosts"
2306
2384
  msgstr ""
2307
2385
 
2308
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:198
2386
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:199
2309
2387
  msgid "Set content overrides to one or more hosts"
2310
2388
  msgstr ""
2311
2389
 
2312
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:216
2390
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:217
2313
2391
  msgid "Assign the environment and content view to one or more hosts"
2314
2392
  msgstr ""
2315
2393
 
2316
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:225
2394
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:226
2317
2395
  msgid "Assign the release version to one or more hosts"
2318
2396
  msgstr ""
2319
2397
 
2320
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:233
2398
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:234
2321
2399
  msgid "Fetch traces for one or more hosts"
2322
2400
  msgstr ""
2323
2401
 
2324
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:240
2402
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:241
2325
2403
  msgid "Resolve traces for one or more hosts"
2326
2404
  msgstr ""
2327
2405
 
@@ -2359,23 +2437,23 @@ msgstr ""
2359
2437
  msgid "Could not find all specified errata ids: %s"
2360
2438
  msgstr ""
2361
2439
 
2362
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:333
2440
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:335
2363
2441
  msgid "Organization ID is required"
2364
2442
  msgstr ""
2365
2443
 
2366
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:348
2444
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:350
2367
2445
  msgid "Maximum number of content hosts exceeded for host collection(s): %s"
2368
2446
  msgstr ""
2369
2447
 
2370
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:371
2448
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:373
2371
2449
  msgid "A content_type must be provided."
2372
2450
  msgstr ""
2373
2451
 
2374
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:372
2452
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:374
2375
2453
  msgid "No content has been provided."
2376
2454
  msgstr ""
2377
2455
 
2378
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:375
2456
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:377
2379
2457
  msgid "Invalid content type %s"
2380
2458
  msgstr ""
2381
2459
 
@@ -2482,7 +2560,7 @@ msgid "Update organization"
2482
2560
  msgstr ""
2483
2561
 
2484
2562
  #: ../app/controllers/katello/api/v2/organizations_controller.rb:59
2485
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:162
2563
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:166
2486
2564
  msgid "Red Hat CDN URL"
2487
2565
  msgstr ""
2488
2566
 
@@ -2497,7 +2575,7 @@ msgstr ""
2497
2575
  #: ../app/controllers/katello/api/v2/organizations_controller.rb:85
2498
2576
  #: ../app/controllers/katello/api/v2/organizations_controller.rb:92
2499
2577
  #: ../app/controllers/katello/api/v2/products_controller.rb:90
2500
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:266
2578
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:268
2501
2579
  #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:24
2502
2580
  #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:128
2503
2581
  #: ../app/controllers/katello/api/v2/sync_plans_controller.rb:23
@@ -2511,8 +2589,8 @@ msgstr ""
2511
2589
  #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:37
2512
2590
  #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:49
2513
2591
  #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:62
2514
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:82
2515
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:90
2592
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:89
2593
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:97
2516
2594
  msgid "Organization ID"
2517
2595
  msgstr ""
2518
2596
 
@@ -2891,26 +2969,6 @@ msgid ""
2891
2969
  " synchronize or the selected repositories do not have a feed url."
2892
2970
  msgstr ""
2893
2971
 
2894
- #: ../app/controllers/katello/api/v2/products_controller.rb:135
2895
- msgid "Couldn't find product '%s'"
2896
- msgstr ""
2897
-
2898
- #: ../app/controllers/katello/api/v2/products_controller.rb:154
2899
- msgid "Couldn't find gpg key '%s'"
2900
- msgstr ""
2901
-
2902
- #: ../app/controllers/katello/api/v2/products_controller.rb:162
2903
- msgid "Couldn't find ssl ca cert '%s'"
2904
- msgstr ""
2905
-
2906
- #: ../app/controllers/katello/api/v2/products_controller.rb:170
2907
- msgid "Couldn't find ssl client cert '%s'"
2908
- msgstr ""
2909
-
2910
- #: ../app/controllers/katello/api/v2/products_controller.rb:178
2911
- msgid "Couldn't find ssl client key '%s'"
2912
- msgstr ""
2913
-
2914
2972
  #: ../app/controllers/katello/api/v2/puppet_modules_controller.rb:3
2915
2973
  msgid "a puppet module"
2916
2974
  msgstr ""
@@ -2941,497 +2999,495 @@ msgstr ""
2941
2999
  msgid "repository source url"
2942
3000
  msgstr ""
2943
3001
 
2944
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:38
3002
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:39
3003
+ msgid ""
3004
+ "Identifies whether the repository should be disabled on a client with a non-ma"
3005
+ "tching OS version. Pass [] to enable regardless of OS version. Maximum length "
3006
+ "1; allowed tags are: %s"
3007
+ msgstr ""
3008
+
3009
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:40
2945
3010
  msgid "id of the gpg key that will be assigned to the new repository"
2946
3011
  msgstr ""
2947
3012
 
2948
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:39
3013
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:41
2949
3014
  msgid "Identifier of the content credential containing the SSL CA Cert"
2950
3015
  msgstr ""
2951
3016
 
2952
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:40
3017
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:42
2953
3018
  msgid "Identifier of the content credential containing the SSL Client Cert"
2954
3019
  msgstr ""
2955
3020
 
2956
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:41
3021
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:43
2957
3022
  msgid "Identifier of the content credential containing the SSL Client Key"
2958
3023
  msgstr ""
2959
3024
 
2960
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:42
3025
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:44
2961
3026
  msgid "true if this repository can be published via HTTP"
2962
3027
  msgstr ""
2963
3028
 
2964
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:43
3029
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:45
2965
3030
  msgid "Checksum of the repository, currently 'sha1' & 'sha256' are supported"
2966
3031
  msgstr ""
2967
3032
 
2968
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:44
3033
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:46
2969
3034
  msgid "Name of the upstream docker repository"
2970
3035
  msgstr ""
2971
3036
 
2972
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:45
2973
- msgid "Comma separated list of tags to sync for Container Image repository"
3037
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:47
3038
+ msgid "Comma-separated list of tags to sync for Container Image repository"
2974
3039
  msgstr ""
2975
3040
 
2976
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:46
3041
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:48
2977
3042
  msgid ""
2978
3043
  "download policy for yum repos (either 'immediate', 'on_demand', or 'background"
2979
3044
  " (deprecated)')"
2980
3045
  msgstr ""
2981
3046
 
2982
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:47
3047
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:49
2983
3048
  msgid ""
2984
3049
  "Used to determine download concurrency of the repository in pulp3. Use value l"
2985
3050
  "ess than 20. Defaults to 10"
2986
3051
  msgstr ""
2987
3052
 
2988
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:48
3053
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:50
2989
3054
  msgid ""
2990
3055
  "true if this repository when synced has to be mirrored from the source and sta"
2991
3056
  "le rpms removed"
2992
3057
  msgstr ""
2993
3058
 
2994
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:49
3059
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:51
2995
3060
  msgid ""
2996
3061
  "if true, Katello will verify the upstream url's SSL certifcates are signed by "
2997
3062
  "a trusted CA"
2998
3063
  msgstr ""
2999
3064
 
3000
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:50
3065
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:52
3001
3066
  msgid "Username of the upstream repository user used for authentication"
3002
3067
  msgstr ""
3003
3068
 
3004
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:51
3069
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:53
3005
3070
  msgid "Password of the upstream repository user used for authentication"
3006
3071
  msgstr ""
3007
3072
 
3008
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:52
3073
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:54
3009
3074
  msgid "policies for syncing upstream ostree repositories"
3010
3075
  msgstr ""
3011
3076
 
3012
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:53
3077
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:55
3013
3078
  msgid ""
3014
3079
  "if a custom sync policy is chosen for ostree repositories then a 'depth' value"
3015
3080
  " must be provided"
3016
3081
  msgstr ""
3017
3082
 
3018
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:54
3019
- msgid "comma separated list of releases to be synched from deb-archive"
3083
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:56
3084
+ msgid "comma-separated list of releases to be synced from deb-archive"
3020
3085
  msgstr ""
3021
3086
 
3022
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:55
3023
- msgid "comma separated list of repo components to be synched from deb-archive"
3087
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:57
3088
+ msgid "comma-separated list of repo components to be synced from deb-archive"
3024
3089
  msgstr ""
3025
3090
 
3026
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:56
3027
- msgid "comma separated list of architectures to be synched from deb-archive"
3091
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:58
3092
+ msgid "comma-separated list of architectures to be synced from deb-archive"
3028
3093
  msgstr ""
3029
3094
 
3030
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:57
3095
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:59
3031
3096
  msgid "if true, will ignore the globally configured proxy when syncing"
3032
3097
  msgstr ""
3033
3098
 
3034
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:58
3099
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:60
3035
3100
  msgid ""
3036
3101
  "List of content units to ignore while syncing a yum repository. Must be subset"
3037
3102
  " of %s"
3038
3103
  msgstr ""
3039
3104
 
3040
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:59
3105
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:61
3041
3106
  msgid "Contents of requirement yaml file to sync from URL"
3042
3107
  msgstr ""
3043
3108
 
3044
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:60
3109
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:62
3045
3110
  msgid "policies for HTTP proxy for content sync"
3046
3111
  msgstr ""
3047
3112
 
3048
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:61
3113
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:63
3049
3114
  msgid "ID of a HTTP Proxy"
3050
3115
  msgstr ""
3051
3116
 
3052
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:66
3117
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:68
3053
3118
  msgid "Product the repository belongs to"
3054
3119
  msgstr ""
3055
3120
 
3056
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:67
3121
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:69
3057
3122
  msgid "type of repo"
3058
3123
  msgstr ""
3059
3124
 
3060
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:70
3125
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:72
3061
3126
  msgid "List of enabled repositories"
3062
3127
  msgstr ""
3063
3128
 
3064
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:71
3129
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:73
3065
3130
  msgid "List of repositories for a content view"
3066
3131
  msgstr ""
3067
3132
 
3068
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:72
3133
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:74
3069
3134
  msgid "List of repositories in an organization"
3070
3135
  msgstr ""
3071
3136
 
3072
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:73
3137
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:75
3073
3138
  msgid "List repositories in the environment"
3074
3139
  msgstr ""
3075
3140
 
3076
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:74
3141
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:76
3077
3142
  msgid "List of repositories for a product"
3078
3143
  msgstr ""
3079
3144
 
3080
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:75
3145
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:77
3081
3146
  msgid "List of repositories belonging to a product in an environment"
3082
3147
  msgstr ""
3083
3148
 
3084
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:76
3149
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:78
3085
3150
  msgid "ID of an organization to show repositories in"
3086
3151
  msgstr ""
3087
3152
 
3088
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:77
3153
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:79
3089
3154
  msgid "ID of a product to show repositories of"
3090
3155
  msgstr ""
3091
3156
 
3092
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:78
3157
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:80
3093
3158
  msgid "ID of an environment to show repositories in"
3094
3159
  msgstr ""
3095
3160
 
3096
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:79
3161
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:81
3097
3162
  msgid "ID of a content view to show repositories in"
3098
3163
  msgstr ""
3099
3164
 
3100
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:80
3165
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:82
3101
3166
  msgid "ID of a content view version to show repositories in"
3102
3167
  msgstr ""
3103
3168
 
3104
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:81
3169
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:83
3105
3170
  msgid "Id of a deb package to find repositories that contain the deb"
3106
3171
  msgstr ""
3107
3172
 
3108
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:82
3173
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:84
3109
3174
  msgid "Id of an erratum to find repositories that contain the erratum"
3110
3175
  msgstr ""
3111
3176
 
3112
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:83
3177
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:85
3113
3178
  msgid "Id of a rpm package to find repositories that contain the rpm"
3114
3179
  msgstr ""
3115
3180
 
3116
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:84
3181
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:86
3117
3182
  msgid "Id of a file to find repositories that contain the file"
3118
3183
  msgstr ""
3119
3184
 
3120
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:85
3185
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:87
3121
3186
  msgid ""
3122
3187
  "Id of an ansible collection to find repositories that contain the ansible coll"
3123
3188
  "ection"
3124
3189
  msgstr ""
3125
3190
 
3126
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:86
3191
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:88
3127
3192
  msgid "Id of an ostree branch to find repositories that contain that branch"
3128
3193
  msgstr ""
3129
3194
 
3130
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:87
3195
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:89
3131
3196
  msgid "show repositories in Library and the default content view"
3132
3197
  msgstr ""
3133
3198
 
3134
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:88
3199
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:90
3135
3200
  msgid "show archived repositories"
3136
3201
  msgstr ""
3137
3202
 
3138
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:89
3203
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:91
3139
3204
  msgid "limit to only repositories of this type"
3140
3205
  msgstr ""
3141
3206
 
3142
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:90
3207
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:92
3143
3208
  msgid "name of the repository"
3144
3209
  msgstr ""
3145
3210
 
3146
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:91
3211
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:93
3147
3212
  msgid "label of the repository"
3148
3213
  msgstr ""
3149
3214
 
3150
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:92
3151
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:341
3215
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:94
3216
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:343
3152
3217
  msgid "description of the repository"
3153
3218
  msgstr ""
3154
3219
 
3155
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:93
3220
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:95
3156
3221
  msgid ""
3157
3222
  "interpret specified object to return only Repositories that can be associated "
3158
3223
  "with specified object. Only 'content_view' & 'content_view_version' are suppo"
3159
3224
  "rted."
3160
3225
  msgstr ""
3161
3226
 
3162
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:95
3227
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:97
3163
3228
  msgid ""
3164
3229
  "only repositories having at least one of the specified content type ex: rpm , "
3165
3230
  "erratum"
3166
3231
  msgstr ""
3167
3232
 
3168
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:213
3233
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:215
3169
3234
  msgid "Create a custom repository"
3170
3235
  msgstr ""
3171
3236
 
3172
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:214
3237
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:216
3173
3238
  msgid "Name of the repository"
3174
3239
  msgstr ""
3175
3240
 
3176
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:215
3241
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:217
3177
3242
  msgid "Description of the repository"
3178
3243
  msgstr ""
3179
3244
 
3180
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:221
3245
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:223
3181
3246
  msgid "Invalid params provided - content_type must be one of %s"
3182
3247
  msgstr ""
3183
3248
 
3184
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:249
3249
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:251
3185
3250
  msgid "Show the available repository types"
3186
3251
  msgstr ""
3187
3252
 
3188
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:250
3253
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:252
3189
3254
  msgid "When set to 'True' repository types that are creatable will be returned"
3190
3255
  msgstr ""
3191
3256
 
3192
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:257
3257
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:259
3193
3258
  msgid ""
3194
3259
  "Forces a republish of the specified repository, regenerating metadata and syml"
3195
3260
  "inks on the filesystem."
3196
3261
  msgstr ""
3197
3262
 
3198
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:264
3263
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:266
3199
3264
  msgid "Show a repository"
3200
3265
  msgstr ""
3201
3266
 
3202
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:265
3203
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:272
3204
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:300
3205
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:339
3206
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:373
3267
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:267
3268
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:274
3269
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:302
3270
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:341
3271
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:375
3207
3272
  msgid "repository ID"
3208
3273
  msgstr ""
3209
3274
 
3210
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:271
3275
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:273
3211
3276
  msgid "Sync a repository"
3212
3277
  msgstr ""
3213
3278
 
3214
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:273
3279
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:275
3215
3280
  msgid "temporarily override feed URL for sync"
3216
3281
  msgstr ""
3217
3282
 
3218
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:274
3283
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:276
3219
3284
  msgid "perform an incremental import"
3220
3285
  msgstr ""
3221
3286
 
3222
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:275
3287
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:277
3223
3288
  msgid ""
3224
3289
  "Force sync even if no upstream changes are detected. Only used with yum reposi"
3225
3290
  "tories."
3226
3291
  msgstr ""
3227
3292
 
3228
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:276
3293
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:278
3229
3294
  msgid ""
3230
3295
  "Force a sync and validate the checksums of all content. Only used with yum rep"
3231
3296
  "ositories."
3232
3297
  msgstr ""
3233
3298
 
3234
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:286
3299
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:288
3235
3300
  msgid "source URL is malformed"
3236
3301
  msgstr ""
3237
3302
 
3238
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:290
3303
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:292
3239
3304
  msgid "attempted to sync without a feed URL"
3240
3305
  msgstr ""
3241
3306
 
3242
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:299
3307
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:301
3243
3308
  msgid "Verify checksum of repository contents"
3244
3309
  msgstr ""
3245
3310
 
3246
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:308
3311
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:310
3247
3312
  msgid "Export a repository"
3248
3313
  msgstr ""
3249
3314
 
3250
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:310
3315
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:312
3251
3316
  msgid "Export to ISO format"
3252
3317
  msgstr ""
3253
3318
 
3254
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:311
3319
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:313
3255
3320
  msgid "maximum size of each ISO in MB"
3256
3321
  msgstr ""
3257
3322
 
3258
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:312
3323
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:314
3259
3324
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3260
3325
  msgstr ""
3261
3326
 
3262
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:326
3327
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:328
3263
3328
  msgid "Repository content type must be 'yum' to export."
3264
3329
  msgstr ""
3265
3330
 
3266
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:328
3331
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:330
3267
3332
  msgid "On demand repositories cannot be exported."
3268
3333
  msgstr ""
3269
3334
 
3270
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:350
3335
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:352
3271
3336
  msgid "Destroy a custom repository"
3272
3337
  msgstr ""
3273
3338
 
3274
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:365
3275
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:403
3339
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:367
3340
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:405
3276
3341
  msgid "Whether or not to sync an external capsule after upload. Default: true"
3277
3342
  msgstr ""
3278
3343
 
3279
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:368
3344
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:370
3280
3345
  msgid "No content ids provided"
3281
3346
  msgstr ""
3282
3347
 
3283
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:372
3348
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:374
3284
3349
  msgid "Upload content into the repository"
3285
3350
  msgstr ""
3286
3351
 
3287
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:374
3352
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:376
3288
3353
  msgid "Content files to upload. Can be a single file or array of files."
3289
3354
  msgstr ""
3290
3355
 
3291
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:377
3356
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:379
3292
3357
  msgid "Cannot upload Container Image content."
3293
3358
  msgstr ""
3294
3359
 
3295
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:399
3360
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:401
3296
3361
  msgid "Import uploads into a repository"
3297
3362
  msgstr ""
3298
3363
 
3299
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:401
3364
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:403
3300
3365
  msgid "Do not wait for the ImportUpload action to finish. Default: false"
3301
3366
  msgstr ""
3302
3367
 
3303
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:402
3368
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:404
3304
3369
  msgid "Whether or not to regenerate the repository on disk. Default: true"
3305
3370
  msgstr ""
3306
3371
 
3307
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:405
3372
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:407
3308
3373
  msgid "Array of uploads to import"
3309
3374
  msgstr ""
3310
3375
 
3311
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:410
3376
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:412
3312
3377
  msgid "Needs to only be set for file repositories or docker tags"
3313
3378
  msgstr ""
3314
3379
 
3315
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:411
3380
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:413
3316
3381
  msgid "Needs to only be set for docker tags"
3317
3382
  msgstr ""
3318
3383
 
3319
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:418
3384
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:420
3320
3385
  msgid "No uploads param specified. An array of uploads to import is required."
3321
3386
  msgstr ""
3322
3387
 
3323
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:438
3388
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:440
3324
3389
  msgid "Return the content of a repo gpg key, used directly by yum"
3325
3390
  msgstr ""
3326
3391
 
3327
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:472
3392
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:474
3328
3393
  msgid "Couldn't find %{content_type} with id '%{id}'"
3329
3394
  msgstr ""
3330
3395
 
3331
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:546
3396
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:549
3332
3397
  msgid "Red Hat products cannot be manipulated."
3333
3398
  msgstr ""
3334
3399
 
3335
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:550
3400
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:553
3336
3401
  msgid "Red Hat repositories cannot be manipulated."
3337
3402
  msgstr ""
3338
3403
 
3339
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:15
3404
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:18
3340
3405
  msgid "List repository sets."
3341
3406
  msgstr ""
3342
3407
 
3343
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:16
3408
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:19
3344
3409
  msgid "List repository sets for a product."
3345
3410
  msgstr ""
3346
3411
 
3347
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:17
3348
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:32
3349
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:41
3412
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:20
3413
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:35
3414
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:44
3350
3415
  msgid "ID of a product to list repository sets from"
3351
3416
  msgstr ""
3352
3417
 
3353
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:18
3418
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:21
3354
3419
  msgid "Repository set name to search on"
3355
3420
  msgstr ""
3356
3421
 
3357
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:19
3422
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:22
3358
3423
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3359
3424
  msgstr ""
3360
3425
 
3361
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:20
3426
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:23
3362
3427
  msgid ""
3363
3428
  "If true, only return repository sets that are associated with an active subscr"
3364
3429
  "iptions"
3365
3430
  msgstr ""
3366
3431
 
3367
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:22
3432
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:25
3368
3433
  msgid "If true, return custom repository sets along with redhat repos"
3369
3434
  msgstr ""
3370
3435
 
3371
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:29
3372
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:30
3436
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:32
3437
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:33
3373
3438
  msgid "Get info about a repository set"
3374
3439
  msgstr ""
3375
3440
 
3376
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:31
3377
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:40
3441
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:34
3442
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:43
3378
3443
  msgid "ID of the repository set"
3379
3444
  msgstr ""
3380
3445
 
3381
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:38
3382
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:39
3446
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:41
3447
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:42
3383
3448
  msgid "Get list of available repositories for the repository set"
3384
3449
  msgstr ""
3385
3450
 
3386
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:73
3387
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:74
3451
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:76
3452
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:77
3388
3453
  msgid "Enable a repository from the set"
3389
3454
  msgstr ""
3390
3455
 
3391
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:75
3456
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:78
3392
3457
  msgid "ID of the repository set to enable"
3393
3458
  msgstr ""
3394
3459
 
3395
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:76
3396
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:88
3460
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:79
3461
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:91
3397
3462
  msgid "ID of the product containing the repository set"
3398
3463
  msgstr ""
3399
3464
 
3400
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:77
3465
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:80
3401
3466
  msgid "Basearch to enable"
3402
3467
  msgstr ""
3403
3468
 
3404
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:78
3469
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:81
3405
3470
  msgid "Releasever to enable"
3406
3471
  msgstr ""
3407
3472
 
3408
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:85
3409
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:86
3473
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:88
3474
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:89
3410
3475
  msgid "Disable a repository from the set"
3411
3476
  msgstr ""
3412
3477
 
3413
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:87
3478
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:90
3414
3479
  msgid "ID of the repository set to disable"
3415
3480
  msgstr ""
3416
3481
 
3417
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:89
3482
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:92
3418
3483
  msgid "Basearch to disable"
3419
3484
  msgstr ""
3420
3485
 
3421
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:90
3486
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:93
3422
3487
  msgid "Releasever to disable"
3423
3488
  msgstr ""
3424
3489
 
3425
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:131
3426
- msgid "Couldn't find repository set with id '%s'."
3427
- msgstr ""
3428
-
3429
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:145
3430
- #: ../app/controllers/katello/api/v2/sync_controller.rb:30
3431
- msgid "Couldn't find product with id '%s'"
3432
- msgstr ""
3433
-
3434
- #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:150
3490
+ #: ../app/controllers/katello/api/v2/repository_sets_controller.rb:160
3435
3491
  msgid "Repository sets are not available for custom products."
3436
3492
  msgstr ""
3437
3493
 
@@ -3544,6 +3600,10 @@ msgstr ""
3544
3600
  msgid "Organization required"
3545
3601
  msgstr ""
3546
3602
 
3603
+ #: ../app/controllers/katello/api/v2/sync_controller.rb:30
3604
+ msgid "Couldn't find product with id '%s'"
3605
+ msgstr ""
3606
+
3547
3607
  #: ../app/controllers/katello/api/v2/sync_controller.rb:36
3548
3608
  #: ../app/controllers/katello/concerns/api/v2/repository_content_controller.rb:177
3549
3609
  msgid "Couldn't find repository '%s'"
@@ -3725,10 +3785,14 @@ msgid "Check if a connection can be made to Red Hat Subscription Management."
3725
3785
  msgstr ""
3726
3786
 
3727
3787
  #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:81
3788
+ msgid "Check if the specified organization is eligible for Simple Content Access"
3789
+ msgstr ""
3790
+
3791
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:88
3728
3792
  msgid "Enable simple content access for a manifest"
3729
3793
  msgstr ""
3730
3794
 
3731
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:89
3795
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:96
3732
3796
  msgid "Disable simple content access for a manifest"
3733
3797
  msgstr ""
3734
3798
 
@@ -3754,21 +3818,25 @@ msgstr ""
3754
3818
  msgid "Could not find %{name} resource with id %{id}"
3755
3819
  msgstr ""
3756
3820
 
3757
- #: ../app/controllers/katello/concerns/api/v2/authorization.rb:53
3821
+ #: ../app/controllers/katello/concerns/api/v2/authorization.rb:51
3822
+ msgid "Could not find %{name} resources with ids %{ids}"
3823
+ msgstr ""
3824
+
3825
+ #: ../app/controllers/katello/concerns/api/v2/authorization.rb:63
3758
3826
  msgid ""
3759
3827
  "One or more ids (%{ids}) were not found for %{assoc}. You may not have permis"
3760
3828
  "sions to see them."
3761
3829
  msgstr ""
3762
3830
 
3763
- #: ../app/controllers/katello/concerns/api/v2/authorization.rb:57
3831
+ #: ../app/controllers/katello/concerns/api/v2/authorization.rb:67
3764
3832
  msgid "Unfiltered params array: %s."
3765
3833
  msgstr ""
3766
3834
 
3767
- #: ../app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb:33
3835
+ #: ../app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb:18
3768
3836
  msgid "No hosts have been specified."
3769
3837
  msgstr ""
3770
3838
 
3771
- #: ../app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb:35
3839
+ #: ../app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb:39
3772
3840
  msgid "Action unauthorized to be performed on selected hosts."
3773
3841
  msgstr ""
3774
3842
 
@@ -3814,6 +3882,13 @@ msgstr ""
3814
3882
  msgid "List of host collection ids to update"
3815
3883
  msgstr ""
3816
3884
 
3885
+ #:
3886
+ #: ../app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb:10
3887
+ msgid ""
3888
+ "Host was not found by the subscription UUID: '%s', this can happen if the host"
3889
+ " is registered already, but not to this Foreman"
3890
+ msgstr ""
3891
+
3817
3892
  #:
3818
3893
  #: ../app/controllers/katello/concerns/api/v2/repository_content_controller.rb:24
3819
3894
  msgid "content view version identifier"
@@ -4028,7 +4103,7 @@ msgid "Failed to delete %{host}: %{errors}"
4028
4103
  msgstr ""
4029
4104
 
4030
4105
  #:
4031
- #: ../app/controllers/katello/concerns/organizations_controller_extensions.rb:19
4106
+ #: ../app/controllers/katello/concerns/organizations_controller_extensions.rb:20
4032
4107
  msgid "Organization %s is being deleted."
4033
4108
  msgstr ""
4034
4109
 
@@ -4095,7 +4170,7 @@ msgstr ""
4095
4170
 
4096
4171
  #: ../app/helpers/katello/hosts_and_hostgroups_helper.rb:255
4097
4172
  #: ../lib/katello/plugin.rb:8 ../lib/katello/plugin.rb:264
4098
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:48
4173
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:57
4099
4174
  msgid "Content"
4100
4175
  msgstr ""
4101
4176
 
@@ -4165,37 +4240,43 @@ msgid ""
4165
4240
  "{names}"
4166
4241
  msgstr ""
4167
4242
 
4168
- #: ../app/lib/actions/katello/activation_key/create.rb:23
4243
+ #: ../app/lib/actions/katello/activation_key/create.rb:21
4169
4244
  #: ../app/lib/actions/katello/content_view/create.rb:10
4170
- #: ../app/lib/actions/katello/content_view/environment_create.rb:18
4245
+ #: ../app/lib/actions/katello/content_view/environment_create.rb:16
4171
4246
  #: ../app/lib/actions/katello/content_view_puppet_environment/create.rb:29
4172
4247
  #: ../app/lib/actions/katello/environment/library_create.rb:24
4173
- #: ../app/lib/actions/katello/organization/create.rb:35
4248
+ #: ../app/lib/actions/katello/organization/create.rb:33
4174
4249
  #: ../app/lib/actions/katello/repository/create.rb:58
4175
- #: ../app/lib/actions/katello/repository/create_root.rb:17 action_names.rb:19
4250
+ #: ../app/lib/actions/katello/repository/create_root.rb:17 action_names.rb:6
4176
4251
  msgid "Create"
4177
4252
  msgstr ""
4178
4253
 
4179
- #: ../app/lib/actions/katello/activation_key/destroy.rb:19 action_names.rb:48
4254
+ #: ../app/lib/actions/katello/activation_key/destroy.rb:19 action_names.rb:7
4180
4255
  msgid "Delete Activation Key"
4181
4256
  msgstr ""
4182
4257
 
4183
4258
  #: ../app/lib/actions/katello/applicability/host/generate.rb:22
4184
- #: action_names.rb:47
4259
+ #: action_names.rb:9
4185
4260
  msgid "Generate host applicability"
4186
4261
  msgstr ""
4187
4262
 
4188
- #: ../app/lib/actions/katello/applicability/hosts/bulk_generate.rb:26
4189
- #: action_names.rb:46
4263
+ #: ../app/lib/actions/katello/applicability/hosts/bulk_generate.rb:16
4264
+ msgid ""
4265
+ "Content Facet for host with id %s is non-existent. Skipping applicability calc"
4266
+ "ulation."
4267
+ msgstr ""
4268
+
4269
+ #: ../app/lib/actions/katello/applicability/hosts/bulk_generate.rb:30
4270
+ #: action_names.rb:8
4190
4271
  msgid "Bulk generate applicability for hosts"
4191
4272
  msgstr ""
4192
4273
 
4193
4274
  #: ../app/lib/actions/katello/applicability/repository/regenerate.rb:25
4194
- #: action_names.rb:53
4275
+ #: action_names.rb:11
4195
4276
  msgid "Generate repository applicability"
4196
4277
  msgstr ""
4197
4278
 
4198
- #: ../app/lib/actions/katello/capsule_content/sync.rb:14 action_names.rb:45
4279
+ #: ../app/lib/actions/katello/capsule_content/sync.rb:14 action_names.rb:12
4199
4280
  msgid "Synchronize smart proxy"
4200
4281
  msgstr ""
4201
4282
 
@@ -4212,11 +4293,11 @@ msgstr ""
4212
4293
  #: ../app/lib/actions/katello/content_view_puppet_module/destroy.rb:41
4213
4294
  #: ../app/lib/actions/katello/provider/destroy.rb:19
4214
4295
  #: ../app/lib/actions/katello/repository/destroy.rb:67
4215
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:252
4216
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:267
4296
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:259
4297
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:274
4217
4298
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js:27
4218
4299
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:90
4219
- #: action_names.rb:20
4300
+ #: action_names.rb:14
4220
4301
  msgid "Delete"
4221
4302
  msgstr ""
4222
4303
 
@@ -4280,7 +4361,7 @@ msgid "Cannot promote environment out of sequence. Use force to bypass restricti
4280
4361
  msgstr ""
4281
4362
 
4282
4363
  #: ../app/lib/actions/katello/content_view/promote_to_environment.rb:43
4283
- #: action_names.rb:41
4364
+ #: action_names.rb:18
4284
4365
  msgid "Promotion to Environment"
4285
4366
  msgstr ""
4286
4367
 
@@ -4294,11 +4375,11 @@ msgid ""
4294
4375
  "arameter."
4295
4376
  msgstr ""
4296
4377
 
4297
- #: ../app/lib/actions/katello/content_view/publish.rb:99 action_names.rb:40
4378
+ #: ../app/lib/actions/katello/content_view/publish.rb:100 action_names.rb:19
4298
4379
  msgid "Publish"
4299
4380
  msgstr ""
4300
4381
 
4301
- #: ../app/lib/actions/katello/content_view/publish.rb:104
4382
+ #: ../app/lib/actions/katello/content_view/publish.rb:105
4302
4383
  msgid "Auto Publish - Triggered by '%s'"
4303
4384
  msgstr ""
4304
4385
 
@@ -4306,7 +4387,7 @@ msgstr ""
4306
4387
  msgid "Cannot delete version while it is in environment %s"
4307
4388
  msgstr ""
4308
4389
 
4309
- #: ../app/lib/actions/katello/content_view/remove.rb:86 action_names.rb:54
4390
+ #: ../app/lib/actions/katello/content_view/remove.rb:86 action_names.rb:20
4310
4391
  msgid "Remove Versions and Associations"
4311
4392
  msgstr ""
4312
4393
 
@@ -4333,12 +4414,12 @@ msgid ""
4333
4414
  msgstr ""
4334
4415
 
4335
4416
  #: ../app/lib/actions/katello/content_view/remove_from_environment.rb:35
4336
- #: action_names.rb:39
4417
+ #: action_names.rb:21
4337
4418
  msgid "Remove from Environment"
4338
4419
  msgstr ""
4339
4420
 
4340
4421
  #: ../app/lib/actions/katello/content_view/remove_version.rb:26
4341
- #: action_names.rb:55
4422
+ #: action_names.rb:22
4342
4423
  msgid "Remove Version"
4343
4424
  msgstr ""
4344
4425
 
@@ -4352,50 +4433,49 @@ msgstr ""
4352
4433
 
4353
4434
  #: ../app/lib/actions/katello/content_view_version/export.rb:27
4354
4435
  #: ../app/lib/actions/katello/repository/export.rb:63
4355
- #: ../app/lib/actions/pulp3/orchestration/content_view_version/export.rb:72
4356
- #: action_names.rb:3
4436
+ #: ../app/lib/actions/pulp3/orchestration/content_view_version/export.rb:90
4437
+ #: action_names.rb:23
4357
4438
  msgid "Export"
4358
4439
  msgstr ""
4359
4440
 
4360
- #: ../app/lib/actions/katello/content_view_version/import.rb:10
4361
- msgid "This API endpoint is only valid for Pulp 3 repositories."
4441
+ #: ../app/lib/actions/katello/content_view_version/import.rb:8
4442
+ msgid "This action will become available after the Pulp 3 content migration"
4362
4443
  msgstr ""
4363
4444
 
4364
- #: ../app/lib/actions/katello/content_view_version/import.rb:19
4365
- msgid ""
4366
- "Content View Version specified in the metadata - '%{name}' already exists. If "
4367
- "you wish to replace the existing version, delete %{name} and try again. "
4445
+ #: ../app/lib/actions/katello/content_view_version/import.rb:26
4446
+ #: action_names.rb:24
4447
+ msgid "Import Content View Version"
4368
4448
  msgstr ""
4369
4449
 
4370
- #: ../app/lib/actions/katello/content_view_version/import.rb:32
4371
- #: action_names.rb:38
4372
- msgid "Import Content View Version"
4450
+ #: ../app/lib/actions/katello/content_view_version/import_library.rb:12
4451
+ #: action_names.rb:25
4452
+ msgid "Import Default Content View"
4373
4453
  msgstr ""
4374
4454
 
4375
4455
  #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:17
4376
- #: action_names.rb:35
4456
+ #: action_names.rb:77
4377
4457
  msgid "Incremental Update"
4378
4458
  msgstr ""
4379
4459
 
4380
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:314
4460
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:318
4381
4461
  msgid "Content View Version %{id} not in all specified environments %{envs}"
4382
4462
  msgstr ""
4383
4463
 
4384
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:321
4464
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:325
4385
4465
  msgid "Cannot specify content for composite views"
4386
4466
  msgstr ""
4387
4467
 
4388
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:324
4468
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:328
4389
4469
  msgid "Cannot specify components for non-composite views"
4390
4470
  msgstr ""
4391
4471
 
4392
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:332
4472
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:336
4393
4473
  msgid ""
4394
4474
  "No Version of Content View %{component} already exists as a component of the c"
4395
4475
  "omposite Content View %{composite} version %{version}"
4396
4476
  msgstr ""
4397
4477
 
4398
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:379
4478
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:395
4399
4479
  msgid ""
4400
4480
  "Adding multiple versions of the same Puppet Module is not supported by increme"
4401
4481
  "ntal update. The following Puppet Modules have duplicate versions in the incr"
@@ -4407,16 +4487,16 @@ msgid "Republish Repositories of %{name} %{version}"
4407
4487
  msgstr ""
4408
4488
 
4409
4489
  #: ../app/lib/actions/katello/content_view_version/republish_repositories.rb:31
4410
- #: action_names.rb:56
4490
+ #: action_names.rb:26
4411
4491
  msgid "Republish Version Repositories"
4412
4492
  msgstr ""
4413
4493
 
4414
- #: ../app/lib/actions/katello/environment/destroy.rb:36 action_names.rb:37
4494
+ #: ../app/lib/actions/katello/environment/destroy.rb:36 action_names.rb:27
4415
4495
  msgid "Delete Lifecycle Environment"
4416
4496
  msgstr ""
4417
4497
 
4418
4498
  #: ../app/lib/actions/katello/environment/publish_repositories.rb:33
4419
- #: action_names.rb:36
4499
+ #: action_names.rb:28
4420
4500
  msgid "Publish Lifecycle Environment Repositories"
4421
4501
  msgstr ""
4422
4502
 
@@ -4424,22 +4504,22 @@ msgstr ""
4424
4504
  msgid "Register host '%s' before attaching subscriptions"
4425
4505
  msgstr ""
4426
4506
 
4507
+ #: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
4508
+ msgid "Attach subscriptions to %s"
4509
+ msgstr ""
4510
+
4427
4511
  #: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
4428
4512
  #: ../app/lib/actions/katello/host/remove_subscriptions.rb:38
4429
4513
  #: ../app/lib/actions/katello/host/update_content_overrides.rb:30
4430
4514
  #: ../app/lib/actions/katello/sync_plan/run.rb:40
4431
- #: ../app/models/katello/content_view_history.rb:64
4432
- #: ../app/models/katello/content_view_history.rb:66
4515
+ #: ../app/models/katello/content_view_history.rb:65
4516
+ #: ../app/models/katello/content_view_history.rb:67
4433
4517
  #: ../app/models/katello/purpose_status.rb:36
4434
4518
  msgid "Unknown"
4435
4519
  msgstr ""
4436
4520
 
4437
- #: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
4438
- msgid "Attach subscriptions to %s"
4439
- msgstr ""
4440
-
4441
4521
  #: ../app/lib/actions/katello/host/attach_subscriptions.rb:49
4442
- #: action_names.rb:34
4522
+ #: action_names.rb:29
4443
4523
  msgid "Attach subscriptions"
4444
4524
  msgstr ""
4445
4525
 
@@ -4447,7 +4527,7 @@ msgstr ""
4447
4527
  msgid "Destroy Content Host %s"
4448
4528
  msgstr ""
4449
4529
 
4450
- #: ../app/lib/actions/katello/host/destroy.rb:32 action_names.rb:33
4530
+ #: ../app/lib/actions/katello/host/destroy.rb:32 action_names.rb:31
4451
4531
  msgid "Destroy Content Host"
4452
4532
  msgstr ""
4453
4533
 
@@ -4460,7 +4540,7 @@ msgid "No applicable errata for %s, skipping"
4460
4540
  msgstr ""
4461
4541
 
4462
4542
  #: ../app/lib/actions/katello/host/erratum/applicable_errata_install.rb:31
4463
- #: action_names.rb:58
4543
+ #: action_names.rb:32
4464
4544
  msgid "Install Applicable Errata"
4465
4545
  msgstr ""
4466
4546
 
@@ -4472,7 +4552,7 @@ msgstr ""
4472
4552
  msgid "Install erratum for %s"
4473
4553
  msgstr ""
4474
4554
 
4475
- #: ../app/lib/actions/katello/host/erratum/install.rb:32 action_names.rb:32
4555
+ #: ../app/lib/actions/katello/host/erratum/install.rb:32 action_names.rb:33
4476
4556
  msgid "Install erratum"
4477
4557
  msgstr ""
4478
4558
 
@@ -4495,7 +4575,7 @@ msgstr ""
4495
4575
  msgid "Install package for %s"
4496
4576
  msgstr ""
4497
4577
 
4498
- #: ../app/lib/actions/katello/host/package/install.rb:23 action_names.rb:30
4578
+ #: ../app/lib/actions/katello/host/package/install.rb:23 action_names.rb:36
4499
4579
  msgid "Install package"
4500
4580
  msgstr ""
4501
4581
 
@@ -4507,7 +4587,7 @@ msgstr ""
4507
4587
  msgid "Remove package for %s"
4508
4588
  msgstr ""
4509
4589
 
4510
- #: ../app/lib/actions/katello/host/package/remove.rb:21 action_names.rb:60
4590
+ #: ../app/lib/actions/katello/host/package/remove.rb:21 action_names.rb:37
4511
4591
  msgid "Remove package"
4512
4592
  msgstr ""
4513
4593
 
@@ -4519,7 +4599,7 @@ msgstr ""
4519
4599
  msgid "Update package for %s"
4520
4600
  msgstr ""
4521
4601
 
4522
- #: ../app/lib/actions/katello/host/package/update.rb:23 action_names.rb:29
4602
+ #: ../app/lib/actions/katello/host/package/update.rb:23 action_names.rb:38
4523
4603
  msgid "Update package"
4524
4604
  msgstr ""
4525
4605
 
@@ -4532,7 +4612,7 @@ msgid "Update of all packages requested"
4532
4612
  msgstr ""
4533
4613
 
4534
4614
  #: ../app/lib/actions/katello/host/package_group/install.rb:20
4535
- #: action_names.rb:61
4615
+ #: action_names.rb:39
4536
4616
  msgid "Install package group"
4537
4617
  msgstr ""
4538
4618
 
@@ -4541,7 +4621,7 @@ msgid "Installation of package group(s) requested: %{groups}"
4541
4621
  msgstr ""
4542
4622
 
4543
4623
  #: ../app/lib/actions/katello/host/package_group/remove.rb:18
4544
- #: action_names.rb:28
4624
+ #: action_names.rb:40
4545
4625
  msgid "Remove package group"
4546
4626
  msgstr ""
4547
4627
 
@@ -4558,7 +4638,7 @@ msgid "Remove subscriptions from %s"
4558
4638
  msgstr ""
4559
4639
 
4560
4640
  #: ../app/lib/actions/katello/host/remove_subscriptions.rb:40
4561
- #: action_names.rb:27
4641
+ #: action_names.rb:44
4562
4642
  msgid "Remove subscriptions"
4563
4643
  msgstr ""
4564
4644
 
@@ -4571,7 +4651,7 @@ msgid "Update Content Overrides to %s"
4571
4651
  msgstr ""
4572
4652
 
4573
4653
  #: ../app/lib/actions/katello/host/update_content_overrides.rb:32
4574
- #: action_names.rb:62
4654
+ #: action_names.rb:42
4575
4655
  msgid "Update Content Overrides"
4576
4656
  msgstr ""
4577
4657
 
@@ -4581,7 +4661,7 @@ msgstr ""
4581
4661
  msgid "Host %s has not been registered with subscription-manager."
4582
4662
  msgstr ""
4583
4663
 
4584
- #: ../app/lib/actions/katello/host/update_content_view.rb:18 action_names.rb:25
4664
+ #: ../app/lib/actions/katello/host/update_content_view.rb:18 action_names.rb:41
4585
4665
  msgid "Update for host"
4586
4666
  msgstr ""
4587
4667
 
@@ -4594,7 +4674,7 @@ msgid "Host %{name} cannot be assigned release version %{release_version}."
4594
4674
  msgstr ""
4595
4675
 
4596
4676
  #: ../app/lib/actions/katello/host/update_release_version.rb:21
4597
- #: action_names.rb:26
4677
+ #: action_names.rb:43
4598
4678
  msgid "Update release version for host"
4599
4679
  msgstr ""
4600
4680
 
@@ -4607,7 +4687,7 @@ msgid "Updating System Purpose for host %s"
4607
4687
  msgstr ""
4608
4688
 
4609
4689
  #: ../app/lib/actions/katello/host/update_system_purpose.rb:25
4610
- #: action_names.rb:24
4690
+ #: action_names.rb:76
4611
4691
  msgid "Updating System Purpose for host"
4612
4692
  msgstr ""
4613
4693
 
@@ -4616,7 +4696,7 @@ msgid "Package Profile Update for %s"
4616
4696
  msgstr ""
4617
4697
 
4618
4698
  #: ../app/lib/actions/katello/host/upload_package_profile.rb:22
4619
- #: action_names.rb:63
4699
+ #: action_names.rb:45
4620
4700
  msgid "Package Profile Update"
4621
4701
  msgstr ""
4622
4702
 
@@ -4624,11 +4704,11 @@ msgstr ""
4624
4704
  msgid "Combined Profile Update for %s"
4625
4705
  msgstr ""
4626
4706
 
4627
- #: ../app/lib/actions/katello/host/upload_profiles.rb:24 action_names.rb:64
4707
+ #: ../app/lib/actions/katello/host/upload_profiles.rb:24 action_names.rb:46
4628
4708
  msgid "Combined Profile Update"
4629
4709
  msgstr ""
4630
4710
 
4631
- #: ../app/lib/actions/katello/organization/destroy.rb:30 action_names.rb:23
4711
+ #: ../app/lib/actions/katello/organization/destroy.rb:30 action_names.rb:47
4632
4712
  msgid "Destroy"
4633
4713
  msgstr ""
4634
4714
 
@@ -4668,7 +4748,7 @@ msgstr ""
4668
4748
  msgid "Cannot delete redhat product content"
4669
4749
  msgstr ""
4670
4750
 
4671
- #: ../app/lib/actions/katello/product/create.rb:38 action_names.rb:65
4751
+ #: ../app/lib/actions/katello/product/create.rb:38 action_names.rb:48
4672
4752
  msgid "Product Create"
4673
4753
  msgstr ""
4674
4754
 
@@ -4682,7 +4762,7 @@ msgid ""
4682
4762
  " %{product}, %{view_versions}"
4683
4763
  msgstr ""
4684
4764
 
4685
- #: ../app/lib/actions/katello/product/destroy.rb:65 action_names.rb:22
4765
+ #: ../app/lib/actions/katello/product/destroy.rb:65 action_names.rb:49
4686
4766
  msgid "Delete Product"
4687
4767
  msgstr ""
4688
4768
 
@@ -4700,8 +4780,8 @@ msgid "Cannot delete provider with attached products"
4700
4780
  msgstr ""
4701
4781
 
4702
4782
  #: ../app/lib/actions/katello/provider/update.rb:12
4703
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:181
4704
- #: action_names.rb:4
4783
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:185
4784
+ #: action_names.rb:10
4705
4785
  msgid "Update"
4706
4786
  msgstr ""
4707
4787
 
@@ -4718,7 +4798,7 @@ msgid "Cannot publish a link repository if multiple component clones are specifi
4718
4798
  msgstr ""
4719
4799
 
4720
4800
  #: ../app/lib/actions/katello/repository/destroy_package_group.rb:21
4721
- #: action_names.rb:18
4801
+ #: action_names.rb:52
4722
4802
  msgid "Delete Package Group"
4723
4803
  msgstr ""
4724
4804
 
@@ -4734,8 +4814,8 @@ msgid ""
4734
4814
  "y."
4735
4815
  msgstr ""
4736
4816
 
4737
- #: ../app/lib/actions/katello/repository/import_upload.rb:58
4738
- #: ../app/lib/actions/katello/repository/upload_files.rb:45 action_names.rb:7
4817
+ #: ../app/lib/actions/katello/repository/import_upload.rb:60
4818
+ #: ../app/lib/actions/katello/repository/upload_files.rb:46 action_names.rb:58
4739
4819
  msgid "Upload into"
4740
4820
  msgstr ""
4741
4821
 
@@ -4748,7 +4828,7 @@ msgid "Can only remove content from within the Default Content View"
4748
4828
  msgstr ""
4749
4829
 
4750
4830
  #: ../app/lib/actions/katello/repository/remove_content.rb:56
4751
- #: action_names.rb:70
4831
+ #: action_names.rb:62
4752
4832
  msgid "Remove Content"
4753
4833
  msgstr ""
4754
4834
 
@@ -4764,19 +4844,19 @@ msgstr ""
4764
4844
  msgid "Cannot skip metadata check on non-yum repositories."
4765
4845
  msgstr ""
4766
4846
 
4767
- #: ../app/lib/actions/katello/repository/sync.rb:92
4847
+ #: ../app/lib/actions/katello/repository/sync.rb:94
4768
4848
  msgid "Synchronize: Validate Content"
4769
4849
  msgstr ""
4770
4850
 
4771
- #: ../app/lib/actions/katello/repository/sync.rb:94
4851
+ #: ../app/lib/actions/katello/repository/sync.rb:96
4772
4852
  msgid "Synchronize: Skip Metadata Check"
4773
4853
  msgstr ""
4774
4854
 
4775
- #: ../app/lib/actions/katello/repository/sync.rb:96 action_names.rb:71
4855
+ #: ../app/lib/actions/katello/repository/sync.rb:98 action_names.rb:63
4776
4856
  msgid "Synchronize"
4777
4857
  msgstr ""
4778
4858
 
4779
- #: ../app/lib/actions/katello/repository/upload_errata.rb:33 action_names.rb:8
4859
+ #: ../app/lib/actions/katello/repository/upload_errata.rb:33 action_names.rb:67
4780
4860
  msgid "Upload errata into"
4781
4861
  msgstr ""
4782
4862
 
@@ -4787,7 +4867,7 @@ msgstr ""
4787
4867
 
4788
4868
  #: ../app/lib/actions/katello/repository_set/disable_repository.rb:6
4789
4869
  #: ../webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepositoryContent.js:10
4790
- #: action_names.rb:73
4870
+ #: action_names.rb:69
4791
4871
  msgid "Disable"
4792
4872
  msgstr ""
4793
4873
 
@@ -4796,7 +4876,7 @@ msgid "Repository not found"
4796
4876
  msgstr ""
4797
4877
 
4798
4878
  #: ../app/lib/actions/katello/repository_set/enable_repository.rb:6
4799
- #: action_names.rb:5
4879
+ #: action_names.rb:70
4800
4880
  msgid "Enable"
4801
4881
  msgstr ""
4802
4882
 
@@ -4804,7 +4884,7 @@ msgstr ""
4804
4884
  msgid "The repository is already enabled"
4805
4885
  msgstr ""
4806
4886
 
4807
- #: ../app/lib/actions/katello/sync_plan/run.rb:36 action_names.rb:74
4887
+ #: ../app/lib/actions/katello/sync_plan/run.rb:36 action_names.rb:71
4808
4888
  msgid "Run Sync Plan:"
4809
4889
  msgstr ""
4810
4890
 
@@ -4914,7 +4994,7 @@ msgstr ""
4914
4994
  msgid "Pulp Consumer %s has already been removed"
4915
4995
  msgstr ""
4916
4996
 
4917
- #: ../app/lib/actions/pulp/consumer/sync_capsule.rb:16
4997
+ #: ../app/lib/actions/pulp/consumer/sync_capsule.rb:18
4918
4998
  msgid "Synchronize capsule content"
4919
4999
  msgstr ""
4920
5000
 
@@ -5018,14 +5098,24 @@ msgstr ""
5018
5098
  msgid "Group %{id} already created."
5019
5099
  msgstr ""
5020
5100
 
5021
- #: ../app/lib/actions/pulp3/orchestration/content_view_version/export.rb:22
5101
+ #: ../app/lib/actions/pulp3/content_migration.rb:19
5102
+ msgid "Content Migration"
5103
+ msgstr ""
5104
+
5105
+ #: ../app/lib/actions/pulp3/orchestration/content_view_version/export.rb:25
5022
5106
  msgid ""
5023
5107
  "Unable to export. 'pulpcore_export_destination' setting is not set to a valid "
5024
5108
  "directory."
5025
5109
  msgstr ""
5026
5110
 
5111
+ #:
5112
+ #: ../app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb:31
5113
+ #: action_names.rb:74
5114
+ msgid "Export Library"
5115
+ msgstr ""
5116
+
5027
5117
  #: ../app/lib/actions/pulp3/orchestration/content_view_version/import.rb:37
5028
- #: action_names.rb:2
5118
+ #: action_names.rb:75
5029
5119
  msgid "Import"
5030
5120
  msgstr ""
5031
5121
 
@@ -5062,11 +5152,11 @@ msgstr ""
5062
5152
  msgid "No errors"
5063
5153
  msgstr ""
5064
5154
 
5065
- #: ../app/lib/katello/errors.rb:126 ../app/services/katello/pulp3/task.rb:82
5155
+ #: ../app/lib/katello/errors.rb:126 ../app/services/katello/pulp3/task.rb:86
5066
5156
  msgid "Task canceled"
5067
5157
  msgstr ""
5068
5158
 
5069
- #: ../app/lib/katello/errors.rb:128 ../app/services/katello/pulp3/task.rb:85
5159
+ #: ../app/lib/katello/errors.rb:128 ../app/services/katello/pulp3/task.rb:89
5070
5160
  msgid "Pulp task error"
5071
5161
  msgstr ""
5072
5162
 
@@ -6021,30 +6111,30 @@ msgstr ""
6021
6111
  msgid "You cannot set an organization's parent_id. This feature is disabled."
6022
6112
  msgstr ""
6023
6113
 
6024
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:58
6114
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:60
6025
6115
  #: ../app/models/katello/content_view_erratum_filter_rule.rb:26
6026
- #: ../app/models/katello/root_repository.rb:78
6027
- #: ../app/models/katello/root_repository.rb:82
6028
- #: ../app/models/katello/root_repository.rb:86
6116
+ #: ../app/models/katello/root_repository.rb:85
6117
+ #: ../app/models/katello/root_repository.rb:89
6118
+ #: ../app/models/katello/root_repository.rb:93
6029
6119
  msgid "must be one of the following: %s"
6030
6120
  msgstr ""
6031
6121
 
6032
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:78
6122
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:80
6033
6123
  msgid "Could not find a smart proxy with pulp feature."
6034
6124
  msgstr ""
6035
6125
 
6036
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:291
6126
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:293
6037
6127
  msgid "Could not remove the lifecycle environment from the smart proxy"
6038
6128
  msgstr ""
6039
6129
 
6040
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:294
6130
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:296
6041
6131
  msgid ""
6042
6132
  "Lifecycle environment was not attached to the smart proxy; therefore, no chang"
6043
6133
  "es were made."
6044
6134
  msgstr ""
6045
6135
 
6046
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:332
6047
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:338
6136
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:334
6137
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:340
6048
6138
  msgid "%s is unreachable. %s"
6049
6139
  msgstr ""
6050
6140
 
@@ -6052,51 +6142,58 @@ msgstr ""
6052
6142
  msgid "Product with ID %s not found in Candlepin. Skipping content import for it."
6053
6143
  msgstr ""
6054
6144
 
6055
- #: ../app/models/katello/content_view.rb:404
6145
+ #: ../app/models/katello/content_view.rb:417
6056
6146
  msgid "Cannot delete view while it exists in environments"
6057
6147
  msgstr ""
6058
6148
 
6059
- #: ../app/models/katello/content_view.rb:409
6149
+ #: ../app/models/katello/content_view.rb:422
6060
6150
  msgid "Cannot delete from %s, view does not exist there."
6061
6151
  msgstr ""
6062
6152
 
6063
- #: ../app/models/katello/content_view.rb:447
6153
+ #: ../app/models/katello/content_view.rb:460
6064
6154
  #: ../app/models/katello/content_view_version_component.rb:13
6065
6155
  msgid "Cannot add component versions to a non-composite content view"
6066
6156
  msgstr ""
6067
6157
 
6068
- #: ../app/models/katello/content_view.rb:453
6158
+ #: ../app/models/katello/content_view.rb:466
6069
6159
  msgid "Cannot set auto publish to a non-composite content view"
6070
6160
  msgstr ""
6071
6161
 
6072
- #: ../app/models/katello/content_view.rb:461
6162
+ #: ../app/models/katello/content_view.rb:474
6073
6163
  msgid "Puppet module conflict: '%{mod}' is in %{versions}."
6074
6164
  msgstr ""
6075
6165
 
6076
- #: ../app/models/katello/content_view.rb:468
6166
+ #: ../app/models/katello/content_view.rb:481
6077
6167
  msgid "Container Image repo '%{repo}' is present in multiple component content views."
6078
6168
  msgstr ""
6079
6169
 
6080
- #: ../app/models/katello/content_view.rb:583
6081
- #: ../app/models/katello/content_view.rb:589
6082
- msgid "User must be logged in."
6170
+ #: ../app/models/katello/content_view.rb:596
6171
+ msgid "Cannot import a composite content view"
6083
6172
  msgstr ""
6084
6173
 
6085
- #: ../app/models/katello/content_view.rb:584
6086
- msgid "Cannot import a composite content view"
6174
+ #: ../app/models/katello/content_view.rb:597
6175
+ msgid "This Content View must be set to Import-only before performing an import"
6176
+ msgstr ""
6177
+
6178
+ #: ../app/models/katello/content_view.rb:602
6179
+ msgid "User must be logged in."
6087
6180
  msgstr ""
6088
6181
 
6089
- #: ../app/models/katello/content_view.rb:590
6182
+ #: ../app/models/katello/content_view.rb:603
6090
6183
  msgid "Cannot publish default content view"
6091
6184
  msgstr ""
6092
6185
 
6093
- #: ../app/models/katello/content_view.rb:606
6186
+ #: ../app/models/katello/content_view.rb:608
6187
+ msgid "Import-only content views can not be published directly"
6188
+ msgstr ""
6189
+
6190
+ #: ../app/models/katello/content_view.rb:626
6094
6191
  msgid ""
6095
6192
  "Consider changing the Lifecycle Environment's Registry Name Pattern to somethi"
6096
6193
  "ng more specific."
6097
6194
  msgstr ""
6098
6195
 
6099
- #: ../app/models/katello/content_view.rb:616
6196
+ #: ../app/models/katello/content_view.rb:636
6100
6197
  msgid ""
6101
6198
  "Make sure all the component content views are published before publishing/prom"
6102
6199
  "oting the composite content view. This restriction is optional and can be modi"
@@ -6104,7 +6201,7 @@ msgid ""
6104
6201
  "site_view flag."
6105
6202
  msgstr ""
6106
6203
 
6107
- #: ../app/models/katello/content_view.rb:626
6204
+ #: ../app/models/katello/content_view.rb:646
6108
6205
  msgid ""
6109
6206
  "The action requested on this composite view cannot be performed until all of t"
6110
6207
  "he component content view versions have been promoted to the target environmen"
@@ -6112,31 +6209,31 @@ msgid ""
6112
6209
  "tor -> Settings -> Content page using the restrict_composite_view flag."
6113
6210
  msgstr ""
6114
6211
 
6115
- #: ../app/models/katello/content_view.rb:640
6116
- #: ../app/models/katello/content_view.rb:659
6212
+ #: ../app/models/katello/content_view.rb:660
6213
+ #: ../app/models/katello/content_view.rb:679
6117
6214
  msgid "hosts"
6118
6215
  msgstr ""
6119
6216
 
6120
- #: ../app/models/katello/content_view.rb:641
6121
- #: ../app/models/katello/content_view.rb:660
6217
+ #: ../app/models/katello/content_view.rb:661
6218
+ #: ../app/models/katello/content_view.rb:680
6122
6219
  msgid "activation keys"
6123
6220
  msgstr ""
6124
6221
 
6125
- #: ../app/models/katello/content_view.rb:646
6222
+ #: ../app/models/katello/content_view.rb:666
6126
6223
  msgid ""
6127
6224
  "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependen"
6128
6225
  "t}: %{names}."
6129
6226
  msgstr ""
6130
6227
 
6131
- #: ../app/models/katello/content_view.rb:658
6228
+ #: ../app/models/katello/content_view.rb:678
6132
6229
  msgid "environments"
6133
6230
  msgstr ""
6134
6231
 
6135
- #: ../app/models/katello/content_view.rb:665
6232
+ #: ../app/models/katello/content_view.rb:685
6136
6233
  msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
6137
6234
  msgstr ""
6138
6235
 
6139
- #: ../app/models/katello/content_view.rb:675
6236
+ #: ../app/models/katello/content_view.rb:695
6140
6237
  #: ../app/views/dashboard/_content_views_widget.html.erb:2
6141
6238
  #: ../lib/katello/plugin.rb:76 ../lib/katello/plugin.rb:217
6142
6239
  #: ../webpack/containers/Application/config.js:57
@@ -6144,46 +6241,50 @@ msgstr ""
6144
6241
  msgid "Content Views"
6145
6242
  msgstr ""
6146
6243
 
6147
- #: ../app/models/katello/content_view.rb:720
6244
+ #: ../app/models/katello/content_view.rb:723
6245
+ msgid "Import-only can not be changed after creation"
6246
+ msgstr ""
6247
+
6248
+ #: ../app/models/katello/content_view.rb:746
6148
6249
  msgid "cannot be deleted if it has been promoted."
6149
6250
  msgstr ""
6150
6251
 
6151
- #: ../app/models/katello/content_view_component.rb:34
6252
+ #: ../app/models/katello/content_view_component.rb:36
6152
6253
  msgid ""
6153
6254
  "Invalid association of the content view id. Content View must match the conten"
6154
6255
  "t view version being saved"
6155
6256
  msgstr ""
6156
6257
 
6157
- #: ../app/models/katello/content_view_component.rb:38
6258
+ #: ../app/models/katello/content_view_component.rb:40
6158
6259
  msgid "Cannot add composite versions to a composite content view"
6159
6260
  msgstr ""
6160
6261
 
6161
- #: ../app/models/katello/content_view_component.rb:42
6262
+ #: ../app/models/katello/content_view_component.rb:44
6162
6263
  #: ../app/models/katello/content_view_version_component.rb:21
6163
6264
  msgid "Cannot add default content view to composite content view"
6164
6265
  msgstr ""
6165
6266
 
6166
- #: ../app/models/katello/content_view_component.rb:46
6267
+ #: ../app/models/katello/content_view_component.rb:48
6167
6268
  msgid "Another component already includes content view with ID %s"
6168
6269
  msgstr ""
6169
6270
 
6170
- #: ../app/models/katello/content_view_component.rb:52
6271
+ #: ../app/models/katello/content_view_component.rb:54
6171
6272
  msgid ""
6172
6273
  "Either set the content view with the latest flag or set the content view versi"
6173
6274
  "on"
6174
6275
  msgstr ""
6175
6276
 
6176
- #: ../app/models/katello/content_view_component.rb:54
6277
+ #: ../app/models/katello/content_view_component.rb:56
6177
6278
  msgid "Cannot associate a component to a non composite content view"
6178
6279
  msgstr ""
6179
6280
 
6180
- #: ../app/models/katello/content_view_component.rb:57
6281
+ #: ../app/models/katello/content_view_component.rb:59
6181
6282
  msgid ""
6182
6283
  "Either set the latest content view or the content view version. Cannot set bot"
6183
6284
  "h"
6184
6285
  msgstr ""
6185
6286
 
6186
- #: ../app/models/katello/content_view_component.rb:60
6287
+ #: ../app/models/katello/content_view_component.rb:62
6187
6288
  msgid "Content View Version not set"
6188
6289
  msgstr ""
6189
6290
 
@@ -6209,81 +6310,85 @@ msgstr ""
6209
6310
  msgid "Security"
6210
6311
  msgstr ""
6211
6312
 
6212
- #: ../app/models/katello/content_view_filter.rb:11 ../lib/katello/plugin.rb:141
6313
+ #: ../app/models/katello/content_view_filter.rb:12 ../lib/katello/plugin.rb:141
6213
6314
  msgid "Packages"
6214
6315
  msgstr ""
6215
6316
 
6216
- #: ../app/models/katello/content_view_filter.rb:11 ../lib/katello/plugin.rb:159
6317
+ #: ../app/models/katello/content_view_filter.rb:12 ../lib/katello/plugin.rb:159
6217
6318
  #: ../webpack/containers/Application/config.js:41
6218
6319
  #: ../webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js:52
6219
6320
  #: ../webpack/scenes/ModuleStreams/ModuleStreamsPage.js:51
6220
6321
  msgid "Module Streams"
6221
6322
  msgstr ""
6222
6323
 
6223
- #: ../app/models/katello/content_view_filter.rb:11
6324
+ #: ../app/models/katello/content_view_filter.rb:12
6224
6325
  msgid "Package Groups"
6225
6326
  msgstr ""
6226
6327
 
6227
- #: ../app/models/katello/content_view_filter.rb:11
6328
+ #: ../app/models/katello/content_view_filter.rb:12
6228
6329
  #: ../app/models/katello/errata_status.rb:9
6229
6330
  #: ../app/views/dashboard/_errata_widget.html.erb:16
6230
6331
  #: ../lib/katello/plugin.rb:150
6231
6332
  msgid "Errata"
6232
6333
  msgstr ""
6233
6334
 
6234
- #: ../app/models/katello/content_view_filter.rb:11
6335
+ #: ../app/models/katello/content_view_filter.rb:12
6235
6336
  msgid "Container Images"
6236
6337
  msgstr ""
6237
6338
 
6238
- #: ../app/models/katello/content_view_filter.rb:11
6339
+ #: ../app/models/katello/content_view_filter.rb:12
6239
6340
  msgid "deb Packages"
6240
6341
  msgstr ""
6241
6342
 
6242
- #: ../app/models/katello/content_view_filter.rb:92
6243
- #: ../app/models/katello/content_view_filter.rb:110
6244
- #: ../app/models/katello/content_view_filter.rb:128
6343
+ #: ../app/models/katello/content_view_filter.rb:93
6344
+ #: ../app/models/katello/content_view_filter.rb:111
6345
+ #: ../app/models/katello/content_view_filter.rb:129
6245
6346
  msgid ""
6246
6347
  "Invalid content type '%{content_type}' provided. Content types can be one of %"
6247
6348
  "{content_types}"
6248
6349
  msgstr ""
6249
6350
 
6250
- #: ../app/models/katello/content_view_filter.rb:158
6351
+ #: ../app/models/katello/content_view_filter.rb:159
6251
6352
  msgid "cannot contain filters if composite view"
6252
6353
  msgstr ""
6253
6354
 
6254
- #: ../app/models/katello/content_view_filter.rb:165
6355
+ #: ../app/models/katello/content_view_filter.rb:163
6356
+ msgid "cannot add filter to import-only view"
6357
+ msgstr ""
6358
+
6359
+ #: ../app/models/katello/content_view_filter.rb:170
6255
6360
  msgid "cannot contain filters whose repositories do not belong to this content view"
6256
6361
  msgstr ""
6257
6362
 
6258
- #: ../app/models/katello/content_view_history.rb:60
6363
+ #: ../app/models/katello/content_view_history.rb:61
6259
6364
  msgid "Exported version"
6260
6365
  msgstr ""
6261
6366
 
6262
- #: ../app/models/katello/content_view_history.rb:62
6367
+ #: ../app/models/katello/content_view_history.rb:63
6263
6368
  msgid "Published new version"
6264
6369
  msgstr ""
6265
6370
 
6266
- #: ../app/models/katello/content_view_history.rb:64
6371
+ #: ../app/models/katello/content_view_history.rb:65
6267
6372
  msgid "Promoted to %{environment}"
6268
6373
  msgstr ""
6269
6374
 
6270
- #: ../app/models/katello/content_view_history.rb:66
6375
+ #: ../app/models/katello/content_view_history.rb:67
6271
6376
  msgid "Deleted from %{environment}"
6272
6377
  msgstr ""
6273
6378
 
6274
- #: ../app/models/katello/content_view_history.rb:68
6379
+ #: ../app/models/katello/content_view_history.rb:69
6275
6380
  msgid "Unknown Action"
6276
6381
  msgstr ""
6277
6382
 
6278
- #: ../app/models/katello/content_view_history.rb:75
6383
+ #: ../app/models/katello/content_view_history.rb:76
6279
6384
  msgid "In Progress"
6280
6385
  msgstr ""
6281
6386
 
6282
- #: ../app/models/katello/content_view_history.rb:77
6387
+ #: ../app/models/katello/content_view_history.rb:78
6283
6388
  msgid "Failed"
6284
6389
  msgstr ""
6285
6390
 
6286
- #: ../app/models/katello/content_view_history.rb:79
6391
+ #: ../app/models/katello/content_view_history.rb:80
6287
6392
  msgid "Success"
6288
6393
  msgstr ""
6289
6394
 
@@ -6291,23 +6396,23 @@ msgstr ""
6291
6396
  msgid "There is already a module named \"%{value}\" in this content view."
6292
6397
  msgstr ""
6293
6398
 
6294
- #: ../app/models/katello/content_view_puppet_module.rb:48
6399
+ #: ../app/models/katello/content_view_puppet_module.rb:56
6295
6400
  msgid "Couldn't find Puppet Module with id '%s'"
6296
6401
  msgstr ""
6297
6402
 
6298
- #: ../app/models/katello/content_view_repository.rb:25
6403
+ #: ../app/models/katello/content_view_repository.rb:29
6299
6404
  msgid "Cannot add repositories to a composite content view"
6300
6405
  msgstr ""
6301
6406
 
6302
- #: ../app/models/katello/content_view_repository.rb:31
6407
+ #: ../app/models/katello/content_view_repository.rb:35
6303
6408
  msgid "Cannot add %s repositories to a content view."
6304
6409
  msgstr ""
6305
6410
 
6306
- #: ../app/models/katello/content_view_repository.rb:37
6411
+ #: ../app/models/katello/content_view_repository.rb:41
6307
6412
  msgid "Cannot add a repository from an Organization other than %s."
6308
6413
  msgstr ""
6309
6414
 
6310
- #: ../app/models/katello/content_view_repository.rb:41
6415
+ #: ../app/models/katello/content_view_repository.rb:45
6311
6416
  msgid "Repositories from published Content Views are not allowed."
6312
6417
  msgstr ""
6313
6418
 
@@ -6465,43 +6570,43 @@ msgstr ""
6465
6570
  msgid "Lifecycle Environment"
6466
6571
  msgstr ""
6467
6572
 
6468
- #: ../app/models/katello/ping.rb:57
6573
+ #: ../app/models/katello/ping.rb:62
6469
6574
  msgid "Not running"
6470
6575
  msgstr ""
6471
6576
 
6472
- #: ../app/models/katello/ping.rb:100
6577
+ #: ../app/models/katello/ping.rb:105
6473
6578
  msgid "Skipped pulp_auth check after failed pulp check"
6474
6579
  msgstr ""
6475
6580
 
6476
- #: ../app/models/katello/ping.rb:118
6581
+ #: ../app/models/katello/ping.rb:123
6477
6582
  msgid "foreman-tasks service not running or is not ready yet"
6478
6583
  msgstr ""
6479
6584
 
6480
- #: ../app/models/katello/ping.rb:124
6585
+ #: ../app/models/katello/ping.rb:129
6481
6586
  msgid "some executors are not responding, check %{status_url}"
6482
6587
  msgstr ""
6483
6588
 
6484
- #: ../app/models/katello/ping.rb:131
6589
+ #: ../app/models/katello/ping.rb:136
6485
6590
  msgid "Candlepin is not running properly"
6486
6591
  msgstr ""
6487
6592
 
6488
- #: ../app/models/katello/ping.rb:169 ../app/models/katello/ping.rb:188
6593
+ #: ../app/models/katello/ping.rb:174 ../app/models/katello/ping.rb:193
6489
6594
  msgid "Pulp does not appear to be running at %s."
6490
6595
  msgstr ""
6491
6596
 
6492
- #: ../app/models/katello/ping.rb:172 ../app/models/katello/ping.rb:191
6597
+ #: ../app/models/katello/ping.rb:177 ../app/models/katello/ping.rb:196
6493
6598
  msgid "Pulp database connection issue at %s."
6494
6599
  msgstr ""
6495
6600
 
6496
- #: ../app/models/katello/ping.rb:176
6601
+ #: ../app/models/katello/ping.rb:181
6497
6602
  msgid "Pulp message bus connection issue at %s."
6498
6603
  msgstr ""
6499
6604
 
6500
- #: ../app/models/katello/ping.rb:180 ../app/models/katello/ping.rb:202
6605
+ #: ../app/models/katello/ping.rb:185 ../app/models/katello/ping.rb:207
6501
6606
  msgid "Not all necessary pulp workers running at %s."
6502
6607
  msgstr ""
6503
6608
 
6504
- #: ../app/models/katello/ping.rb:195
6609
+ #: ../app/models/katello/ping.rb:200
6505
6610
  msgid "Pulp redis connection issue at %s."
6506
6611
  msgstr ""
6507
6612
 
@@ -6576,7 +6681,7 @@ msgstr ""
6576
6681
  msgid "Usage"
6577
6682
  msgstr ""
6578
6683
 
6579
- #: ../app/models/katello/repository.rb:114
6684
+ #: ../app/models/katello/repository.rb:116
6580
6685
  msgid ""
6581
6686
  "for repository '%{name}' is not unique and cannot be created in '%{env}'. Its "
6582
6687
  "Container Repository Name (%{container_name}) conflicts with an existing repos"
@@ -6584,108 +6689,120 @@ msgid ""
6584
6689
  " something more specific."
6585
6690
  msgstr ""
6586
6691
 
6587
- #: ../app/models/katello/repository.rb:210
6692
+ #: ../app/models/katello/repository.rb:212
6588
6693
  msgid "Successfully synchronized."
6589
6694
  msgstr ""
6590
6695
 
6591
- #: ../app/models/katello/repository.rb:501
6696
+ #: ../app/models/katello/repository.rb:503
6592
6697
  msgid "Cannot clone into the Default Content View"
6593
6698
  msgstr ""
6594
6699
 
6595
- #: ../app/models/katello/repository.rb:508
6700
+ #: ../app/models/katello/repository.rb:510
6596
6701
  msgid "View %{view} has not been promoted to %{env}"
6597
6702
  msgstr ""
6598
6703
 
6599
- #: ../app/models/katello/repository.rb:513
6704
+ #: ../app/models/katello/repository.rb:515
6600
6705
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
6601
6706
  msgstr ""
6602
6707
 
6603
- #: ../app/models/katello/repository.rb:680
6708
+ #: ../app/models/katello/repository.rb:706
6604
6709
  msgid "Duplicate branches specified - %{branches}"
6605
6710
  msgstr ""
6606
6711
 
6607
- #: ../app/models/katello/repository.rb:694
6712
+ #: ../app/models/katello/repository.rb:720
6608
6713
  msgid ""
6609
6714
  "Repository cannot be deleted since it has already been included in a published"
6610
6715
  " Content View. Please delete all Content View versions containing this reposit"
6611
6716
  "ory before attempting to delete it."
6612
6717
  msgstr ""
6613
6718
 
6614
- #: ../app/models/katello/repository.rb:745
6719
+ #: ../app/models/katello/repository.rb:771
6615
6720
  msgid "This is not a linked repository"
6616
6721
  msgstr ""
6617
6722
 
6618
- #: ../app/models/katello/root_repository.rb:127
6723
+ #: ../app/models/katello/root_repository.rb:134
6619
6724
  msgid "Cannot set attribute %{attr} for content type %{type}"
6620
6725
  msgstr ""
6621
6726
 
6622
- #: ../app/models/katello/root_repository.rb:135
6727
+ #: ../app/models/katello/root_repository.rb:142
6623
6728
  msgid ""
6624
6729
  "Cannot sync file:// repositories with On Demand or Background Download Policie"
6625
6730
  "s"
6626
6731
  msgstr ""
6627
6732
 
6628
- #: ../app/models/katello/root_repository.rb:141
6733
+ #: ../app/models/katello/root_repository.rb:148
6629
6734
  msgid "cannot be blank when Repository URL is provided."
6630
6735
  msgstr ""
6631
6736
 
6632
- #: ../app/models/katello/root_repository.rb:142
6737
+ #: ../app/models/katello/root_repository.rb:149
6633
6738
  msgid "Upstream Name cannot be blank when Repository URL is provided."
6634
6739
  msgstr ""
6635
6740
 
6636
- #: ../app/models/katello/root_repository.rb:148
6741
+ #: ../app/models/katello/root_repository.rb:155
6637
6742
  msgid ""
6638
6743
  "Container Image Repositories are not protected at this time. They need to be p"
6639
6744
  "ublished via http to be available to containers."
6640
6745
  msgstr ""
6641
6746
 
6642
- #: ../app/models/katello/root_repository.rb:155
6747
+ #: ../app/models/katello/root_repository.rb:162
6643
6748
  msgid "cannot be set for non-yum repositories."
6644
6749
  msgstr ""
6645
6750
 
6646
- #: ../app/models/katello/root_repository.rb:161
6751
+ #: ../app/models/katello/root_repository.rb:168
6647
6752
  msgid ""
6648
6753
  "Checksum type cannot be set for yum repositories with on demand download polic"
6649
6754
  "y."
6650
6755
  msgstr ""
6651
6756
 
6652
- #: ../app/models/katello/root_repository.rb:167
6757
+ #: ../app/models/katello/root_repository.rb:174
6653
6758
  msgid "OSTree Repositories cannot be unprotected."
6654
6759
  msgstr ""
6655
6760
 
6656
- #: ../app/models/katello/root_repository.rb:195
6761
+ #: ../app/models/katello/root_repository.rb:202
6657
6762
  msgid "cannot be set for non-ostree repositories."
6658
6763
  msgstr ""
6659
6764
 
6660
- #: ../app/models/katello/root_repository.rb:202
6765
+ #: ../app/models/katello/root_repository.rb:209
6661
6766
  msgid "Ignorable content can be only set for Yum repositories."
6662
6767
  msgstr ""
6663
6768
 
6664
- #: ../app/models/katello/root_repository.rb:204
6769
+ #: ../app/models/katello/root_repository.rb:211
6665
6770
  msgid "Invalid value specified for ignorable content."
6666
6771
  msgstr ""
6667
6772
 
6668
- #: ../app/models/katello/root_repository.rb:206
6773
+ #: ../app/models/katello/root_repository.rb:213
6669
6774
  msgid "Invalid value specified for ignorable content. Permissible values %s"
6670
6775
  msgstr ""
6671
6776
 
6672
- #: ../app/models/katello/root_repository.rb:213
6777
+ #: ../app/models/katello/root_repository.rb:220
6673
6778
  msgid "Invalid value specified for Container Image repositories."
6674
6779
  msgstr ""
6675
6780
 
6676
- #: ../app/models/katello/root_repository.rb:220
6781
+ #: ../app/models/katello/root_repository.rb:230
6782
+ msgid "are only allowed for Yum repositories."
6783
+ msgstr ""
6784
+
6785
+ #: ../app/models/katello/root_repository.rb:233
6786
+ msgid "invalid: Repositories can only require one OS version."
6787
+ msgstr ""
6788
+
6789
+ #: ../app/models/katello/root_repository.rb:237
6790
+ msgid "must be one of: %s"
6791
+ msgstr ""
6792
+
6793
+ #: ../app/models/katello/root_repository.rb:245
6677
6794
  msgid "Upstream username and password may only be set on custom repositories."
6678
6795
  msgstr ""
6679
6796
 
6680
- #: ../app/models/katello/root_repository.rb:222
6797
+ #: ../app/models/katello/root_repository.rb:247
6681
6798
  msgid "Upstream password requires upstream username be set."
6682
6799
  msgstr ""
6683
6800
 
6684
- #: ../app/models/katello/root_repository.rb:224
6801
+ #: ../app/models/katello/root_repository.rb:249
6685
6802
  msgid "Upstream username requires upstream password be set."
6686
6803
  msgstr ""
6687
6804
 
6688
- #: ../app/models/katello/root_repository.rb:302
6805
+ #: ../app/models/katello/root_repository.rb:327
6689
6806
  msgid "Cannot calculate name for custom repos"
6690
6807
  msgstr ""
6691
6808
 
@@ -6711,9 +6828,9 @@ msgid "Unsubscribed hypervisor"
6711
6828
  msgstr ""
6712
6829
 
6713
6830
  #: ../app/models/katello/subscription_status.rb:25
6714
- #: ../app/views/overrides/organizations/_edit_override.html.erb:19
6831
+ #: ../app/views/overrides/organizations/_edit_override.html.erb:16
6715
6832
  #: ../app/views/overrides/organizations/_index_header_override.html.erb:2
6716
- #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:33
6833
+ #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:45
6717
6834
  msgid "Simple Content Access"
6718
6835
  msgstr ""
6719
6836
 
@@ -7305,28 +7422,73 @@ msgstr ""
7305
7422
  msgid "Failed indexing errata, maximum retries encountered"
7306
7423
  msgstr ""
7307
7424
 
7308
- #: ../app/services/katello/pulp3/content_view_version/import.rb:49
7425
+ #: ../app/services/katello/pulp3/content_view_version/export.rb:81
7426
+ msgid ""
7427
+ "The exported Content View Version '%{content_view} %{current}' cannot be incre"
7428
+ "mentally updated from version '%{from}'. Please do a full export."
7429
+ msgstr ""
7430
+
7431
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:27
7432
+ msgid ""
7433
+ "Content View Version specified in the metadata - '%{name}' already exists. If "
7434
+ "you wish to replace the existing version, delete %{name} and try again. "
7435
+ msgstr ""
7436
+
7437
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:41
7438
+ msgid ""
7439
+ "Prior Content View Version specified in the metadata - '%{name}' does not exis"
7440
+ "t. Please import the metadata for '%{name}' before importing '%{current}' "
7441
+ msgstr ""
7442
+
7443
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:67
7444
+ msgid ""
7445
+ "The following repositories provided in the import metadata are either not avai"
7446
+ "lable in the Library or are of incorrect Respository Type. Please add or enabl"
7447
+ "e the repositories before importing\n"
7448
+ " %{repos}"
7449
+ msgstr ""
7450
+
7451
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:75
7309
7452
  msgid "Invalid path specified."
7310
7453
  msgstr ""
7311
7454
 
7312
- #: ../app/services/katello/pulp3/content_view_version/import.rb:50
7455
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:76
7313
7456
  msgid "The import path must be in a subdirectory under '%s'."
7314
7457
  msgstr ""
7315
7458
 
7316
- #: ../app/services/katello/pulp3/content_view_version/import.rb:51
7459
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:77
7317
7460
  msgid "Pulp user or group unable to read content in '%s'."
7318
7461
  msgstr ""
7319
7462
 
7320
- #: ../app/services/katello/pulp3/content_view_version/import.rb:54
7463
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:80
7321
7464
  msgid "Pulp user or group unable to read '%s'."
7322
7465
  msgstr ""
7323
7466
 
7467
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:83
7468
+ msgid "The TOC file specified in the metadata does not exist. %s "
7469
+ msgstr ""
7470
+
7471
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:105
7472
+ msgid "Red Hat"
7473
+ msgstr ""
7474
+
7475
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:105
7476
+ msgid "Custom"
7477
+ msgstr ""
7478
+
7479
+ #: ../app/services/katello/pulp3/content_view_version/import_validator.rb:106
7480
+ msgid ""
7481
+ "\n"
7482
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{r"
7483
+ "epo_type}'"
7484
+ msgstr ""
7485
+
7324
7486
  #: ../app/services/katello/pulp3/deb.rb:16
7325
7487
  #: ../app/services/katello/pulp3/file_unit.rb:12
7326
7488
  msgid "Artifact Id and relative path are needed to create content"
7327
7489
  msgstr ""
7328
7490
 
7329
- #: ../app/services/katello/pulp3/migration.rb:28
7491
+ #: ../app/services/katello/pulp3/migration.rb:30
7330
7492
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
7331
7493
  msgstr ""
7332
7494
 
@@ -7373,7 +7535,7 @@ msgstr ""
7373
7535
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:83
7374
7536
  #: ../lib/katello/plugin.rb:12 ../webpack/containers/Application/config.js:24
7375
7537
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:69
7376
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:233
7538
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:238
7377
7539
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:229
7378
7540
  msgid "Subscriptions"
7379
7541
  msgstr ""
@@ -7400,7 +7562,7 @@ msgstr ""
7400
7562
  #: ../app/views/dashboard/_content_views_widget.html.erb:17
7401
7563
  #: ../app/views/dashboard/_sync_widget.html.erb:18
7402
7564
  #: ../webpack/components/extensions/about/SystemStatuses.js:24
7403
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:49
7565
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:58
7404
7566
  #: ../webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js:8
7405
7567
  msgid "Status"
7406
7568
  msgstr ""
@@ -7417,7 +7579,7 @@ msgstr ""
7417
7579
  #: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:20
7418
7580
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:7
7419
7581
  #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:67
7420
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:44
7582
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:53
7421
7583
  #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:19
7422
7584
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:15
7423
7585
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:90
@@ -7444,7 +7606,7 @@ msgstr ""
7444
7606
  #: ../webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js:14
7445
7607
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:7
7446
7608
  #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:51
7447
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:45
7609
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:54
7448
7610
  #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:20
7449
7611
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:9
7450
7612
  #: ../webpack/scenes/ModuleStreams/Details/Profiles/TableSchema.js:13
@@ -7526,7 +7688,7 @@ msgstr ""
7526
7688
  #: ../app/views/dashboard/_sync_widget.html.erb:17
7527
7689
  #: ../app/views/katello/sync_management/_products.html.erb:7
7528
7690
  #: ../webpack/components/Content/Details/ContentDetailRepositoryTableSchema.js:31
7529
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:46
7691
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:55
7530
7692
  msgid "Product"
7531
7693
  msgstr ""
7532
7694
 
@@ -7534,6 +7696,16 @@ msgstr ""
7534
7696
  msgid "Finished"
7535
7697
  msgstr ""
7536
7698
 
7699
+ #: ../app/views/foreman/hosts/_registration.html.erb:3
7700
+ msgid "Activation Key(s)"
7701
+ msgstr ""
7702
+
7703
+ #: ../app/views/foreman/hosts/_registration.html.erb:4
7704
+ msgid ""
7705
+ "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat En"
7706
+ "terprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
7707
+ msgstr ""
7708
+
7537
7709
  #: ../app/views/foreman/smart_proxies/_content_sync.html.erb:2
7538
7710
  #: ../lib/katello/plugin.rb:268
7539
7711
  msgid "Content Sync"
@@ -7794,7 +7966,7 @@ msgid "Synchronize Now"
7794
7966
  msgstr ""
7795
7967
 
7796
7968
  #: ../app/views/katello/sync_management/index.html.erb:5
7797
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:264
7969
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:271
7798
7970
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:147
7799
7971
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js:30
7800
7972
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/UnsavedChangesDialog.js:15
@@ -7850,42 +8022,42 @@ msgstr ""
7850
8022
  msgid "There was a problem retrieving Activation Key data from the server."
7851
8023
  msgstr ""
7852
8024
 
7853
- #: ../app/views/overrides/activation_keys/_host_tab_pane.html.erb:20
8025
+ #: ../app/views/overrides/activation_keys/_host_tab_pane.html.erb:16
7854
8026
  msgid "Subscriptions information based on selected activation keys:"
7855
8027
  msgstr ""
7856
8028
 
7857
- #: ../app/views/overrides/activation_keys/_host_tab_pane.html.erb:27
8029
+ #: ../app/views/overrides/activation_keys/_host_tab_pane.html.erb:23
7858
8030
  msgid "Activation keys and subscriptions can be managed"
7859
8031
  msgstr ""
7860
8032
 
7861
- #: ../app/views/overrides/activation_keys/_host_tab_pane.html.erb:28
8033
+ #: ../app/views/overrides/activation_keys/_host_tab_pane.html.erb:24
7862
8034
  msgid "here"
7863
8035
  msgstr ""
7864
8036
 
7865
- #: ../app/views/overrides/activation_keys/_host_tab_pane.html.erb:31
8037
+ #: ../app/views/overrides/activation_keys/_host_tab_pane.html.erb:27
7866
8038
  msgid "Reload data"
7867
8039
  msgstr ""
7868
8040
 
7869
- #: ../app/views/overrides/organizations/_edit_override.html.erb:8
8041
+ #: ../app/views/overrides/organizations/_edit_override.html.erb:6
7870
8042
  msgid "Default System SLA"
7871
8043
  msgstr ""
7872
8044
 
7873
- #: ../app/views/overrides/organizations/_edit_override.html.erb:11
8045
+ #: ../app/views/overrides/organizations/_edit_override.html.erb:8
7874
8046
  msgid "Debug Certificate"
7875
8047
  msgstr ""
7876
8048
 
7877
- #: ../app/views/overrides/organizations/_edit_override.html.erb:12
8049
+ #: ../app/views/overrides/organizations/_edit_override.html.erb:9
7878
8050
  msgid ""
7879
8051
  "This certificate allows a user to view the repositories in any environment fro"
7880
8052
  "m a browser."
7881
8053
  msgstr ""
7882
8054
 
7883
- #: ../app/views/overrides/organizations/_edit_override.html.erb:13
8055
+ #: ../app/views/overrides/organizations/_edit_override.html.erb:10
7884
8056
  msgid "Generate and Download"
7885
8057
  msgstr ""
7886
8058
 
7887
- #: ../app/views/overrides/organizations/_edit_override.html.erb:20
7888
- #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:64
8059
+ #: ../app/views/overrides/organizations/_edit_override.html.erb:17
8060
+ #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:33
7889
8061
  msgid "Toggling Simple Content Access will refresh your manifest."
7890
8062
  msgstr ""
7891
8063
 
@@ -8127,78 +8299,82 @@ msgid "Puppet Modules"
8127
8299
  msgstr ""
8128
8300
 
8129
8301
  #: ../lib/katello/plugin.rb:288
8302
+ msgid "Katello"
8303
+ msgstr ""
8304
+
8305
+ #: ../lib/katello/plugin.rb:293
8130
8306
  msgid "Storage"
8131
8307
  msgstr ""
8132
8308
 
8133
- #: ../lib/katello/plugin.rb:317
8309
+ #: ../lib/katello/plugin.rb:322
8134
8310
  msgid "Katello: Install Package"
8135
8311
  msgstr ""
8136
8312
 
8137
- #: ../lib/katello/plugin.rb:317
8313
+ #: ../lib/katello/plugin.rb:322
8138
8314
  msgid "Install package via Katello interface"
8139
8315
  msgstr ""
8140
8316
 
8141
- #: ../lib/katello/plugin.rb:318
8317
+ #: ../lib/katello/plugin.rb:323
8142
8318
  msgid "Katello: Update Package"
8143
8319
  msgstr ""
8144
8320
 
8145
- #: ../lib/katello/plugin.rb:318
8321
+ #: ../lib/katello/plugin.rb:323
8146
8322
  msgid "Update package via Katello interface"
8147
8323
  msgstr ""
8148
8324
 
8149
- #: ../lib/katello/plugin.rb:319
8325
+ #: ../lib/katello/plugin.rb:324
8150
8326
  msgid "Katello: Remove Package"
8151
8327
  msgstr ""
8152
8328
 
8153
- #: ../lib/katello/plugin.rb:319
8329
+ #: ../lib/katello/plugin.rb:324
8154
8330
  msgid "Remove package via Katello interface"
8155
8331
  msgstr ""
8156
8332
 
8157
- #: ../lib/katello/plugin.rb:320
8333
+ #: ../lib/katello/plugin.rb:325
8158
8334
  msgid "Katello: Install Package Group"
8159
8335
  msgstr ""
8160
8336
 
8161
- #: ../lib/katello/plugin.rb:320
8337
+ #: ../lib/katello/plugin.rb:325
8162
8338
  msgid "Install package group via Katello interface"
8163
8339
  msgstr ""
8164
8340
 
8165
- #: ../lib/katello/plugin.rb:321
8341
+ #: ../lib/katello/plugin.rb:326
8166
8342
  msgid "Katello: Update Package Group"
8167
8343
  msgstr ""
8168
8344
 
8169
- #: ../lib/katello/plugin.rb:321
8345
+ #: ../lib/katello/plugin.rb:326
8170
8346
  msgid "Update package group via Katello interface"
8171
8347
  msgstr ""
8172
8348
 
8173
- #: ../lib/katello/plugin.rb:322
8349
+ #: ../lib/katello/plugin.rb:327
8174
8350
  msgid "Katello: Remove Package Group"
8175
8351
  msgstr ""
8176
8352
 
8177
- #: ../lib/katello/plugin.rb:322
8353
+ #: ../lib/katello/plugin.rb:327
8178
8354
  msgid "Remove package group via Katello interface"
8179
8355
  msgstr ""
8180
8356
 
8181
- #: ../lib/katello/plugin.rb:323
8357
+ #: ../lib/katello/plugin.rb:328
8182
8358
  msgid "Katello: Install Errata"
8183
8359
  msgstr ""
8184
8360
 
8185
- #: ../lib/katello/plugin.rb:323
8361
+ #: ../lib/katello/plugin.rb:328
8186
8362
  msgid "Install errata via Katello interface"
8187
8363
  msgstr ""
8188
8364
 
8189
- #: ../lib/katello/plugin.rb:324
8365
+ #: ../lib/katello/plugin.rb:329
8190
8366
  msgid "Katello: Service Restart"
8191
8367
  msgstr ""
8192
8368
 
8193
- #: ../lib/katello/plugin.rb:324
8369
+ #: ../lib/katello/plugin.rb:329
8194
8370
  msgid "Restart Services via Katello interface"
8195
8371
  msgstr ""
8196
8372
 
8197
- #: ../lib/katello/plugin.rb:325
8373
+ #: ../lib/katello/plugin.rb:330
8198
8374
  msgid "Katello: Module Stream Actions"
8199
8375
  msgstr ""
8200
8376
 
8201
- #: ../lib/katello/plugin.rb:326
8377
+ #: ../lib/katello/plugin.rb:331
8202
8378
  msgid "Perform a module stream action via Katello interface"
8203
8379
  msgstr ""
8204
8380
 
@@ -8221,7 +8397,7 @@ msgstr ""
8221
8397
  #: ../webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js:59
8222
8398
  #: ../webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js:83
8223
8399
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:83
8224
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:281
8400
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:289
8225
8401
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:239
8226
8402
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js:185
8227
8403
  msgid "Loading"
@@ -8374,7 +8550,7 @@ msgstr ""
8374
8550
  msgid "No repositories to show"
8375
8551
  msgstr ""
8376
8552
 
8377
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:30
8553
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:31
8378
8554
  msgid " Content view updated."
8379
8555
  msgstr ""
8380
8556
 
@@ -8409,27 +8585,27 @@ msgid "Solve dependencies"
8409
8585
  msgstr ""
8410
8586
 
8411
8587
  #:
8412
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:47
8588
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:56
8413
8589
  msgid "Sync state"
8414
8590
  msgstr ""
8415
8591
 
8416
8592
  #:
8417
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:112
8593
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:140
8418
8594
  msgid "You currently don't have any repositories to add to this content view."
8419
8595
  msgstr ""
8420
8596
 
8421
8597
  #:
8422
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:113
8598
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:141
8423
8599
  msgid "Please add some repositories."
8424
8600
  msgstr ""
8425
8601
 
8426
8602
  #:
8427
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:114
8603
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:142
8428
8604
  msgid "No matching repositories found"
8429
8605
  msgstr ""
8430
8606
 
8431
8607
  #:
8432
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:115
8608
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:143
8433
8609
  #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:78
8434
8610
  msgid "Try changing your search settings."
8435
8611
  msgstr ""
@@ -8752,72 +8928,72 @@ msgstr ""
8752
8928
  msgid "Disable Red Hat Insights."
8753
8929
  msgstr ""
8754
8930
 
8755
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:80
8931
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:81
8756
8932
  msgid "This is disabled because a manifest task is in progress"
8757
8933
  msgstr ""
8758
8934
 
8759
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:82
8935
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:83
8760
8936
  msgid "This is disabled because no manifest exists"
8761
8937
  msgstr ""
8762
8938
 
8763
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:114
8939
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:118
8764
8940
  msgid "There is no Manifest History to display."
8765
8941
  msgstr ""
8766
8942
 
8767
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:115
8943
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:119
8768
8944
  msgid "Import a Manifest using the manifest tab above."
8769
8945
  msgstr ""
8770
8946
 
8771
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:117
8947
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:121
8772
8948
  msgid "Learn more about adding Subscription Manifests"
8773
8949
  msgstr ""
8774
8950
 
8775
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:123
8951
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:127
8776
8952
  msgid "Updating..."
8777
8953
  msgstr ""
8778
8954
 
8779
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:127
8955
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:131
8780
8956
  msgid "No Manifest Uploaded"
8781
8957
  msgstr ""
8782
8958
 
8783
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:148
8959
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:152
8784
8960
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:74
8785
8961
  msgid "Manage Manifest"
8786
8962
  msgstr ""
8787
8963
 
8788
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:151
8964
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:155
8789
8965
  msgid "Manifest"
8790
8966
  msgstr ""
8791
8967
 
8792
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:155
8968
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:159
8793
8969
  msgid "Red Hat Provider Details"
8794
8970
  msgstr ""
8795
8971
 
8796
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:195
8972
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:199
8797
8973
  msgid "Subscription Manifest"
8798
8974
  msgstr ""
8799
8975
 
8800
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:207
8976
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:214
8801
8977
  msgid "Subscription Allocation"
8802
8978
  msgstr ""
8803
8979
 
8804
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:219
8980
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:226
8805
8981
  msgid "Import New Manifest"
8806
8982
  msgstr ""
8807
8983
 
8808
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:241
8984
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:248
8809
8985
  msgid "Refresh"
8810
8986
  msgstr ""
8811
8987
 
8812
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:260
8988
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:267
8813
8989
  msgid "Confirm delete manifest"
8814
8990
  msgstr ""
8815
8991
 
8816
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:280
8992
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:288
8817
8993
  msgid "Manifest History"
8818
8994
  msgstr ""
8819
8995
 
8820
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:292
8996
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:300
8821
8997
  msgid "Close"
8822
8998
  msgstr ""
8823
8999
 
@@ -8825,7 +9001,13 @@ msgstr ""
8825
9001
  msgid "Timestamp"
8826
9002
  msgstr ""
8827
9003
 
8828
- #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:39
9004
+ #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:29
9005
+ msgid ""
9006
+ "Simple Content Access has been disabled by the upstream organization administr"
9007
+ "ator."
9008
+ msgstr ""
9009
+
9010
+ #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:51
8829
9011
  msgid ""
8830
9012
  "When Simple Content Access is enabled, hosts are not required to have subscrip"
8831
9013
  "tions attached to access repositories."
@@ -8848,37 +9030,37 @@ msgstr ""
8848
9030
  msgid "Exceeds available quantity"
8849
9031
  msgstr ""
8850
9032
 
8851
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:108
9033
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:113
8852
9034
  msgid "This is disabled because disconnected mode is enabled."
8853
9035
  msgstr ""
8854
9036
 
8855
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:110
9037
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:115
8856
9038
  msgid "This is disabled because a manifest related task is in progress."
8857
9039
  msgstr ""
8858
9040
 
8859
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:112
9041
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:117
8860
9042
  msgid "This is disabled because no subscriptions are selected."
8861
9043
  msgstr ""
8862
9044
 
8863
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:114
9045
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:119
8864
9046
  msgid "This is disabled because no manifest has been uploaded."
8865
9047
  msgstr ""
8866
9048
 
8867
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:116
9049
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:121
8868
9050
  msgid ""
8869
9051
  "This is disabled because no connection could be made to the upstream Subscript"
8870
9052
  "ion Allocation."
8871
9053
  msgstr ""
8872
9054
 
8873
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:221
9055
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:226
8874
9056
  msgid "There are no Subscriptions to display"
8875
9057
  msgstr ""
8876
9058
 
8877
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:222
9059
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:227
8878
9060
  msgid "Import a Manifest to manage your Entitlements."
8879
9061
  msgstr ""
8880
9062
 
8881
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:225
9063
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:230
8882
9064
  msgid "Import a Manifest"
8883
9065
  msgstr ""
8884
9066
 
@@ -9052,114 +9234,106 @@ msgstr ""
9052
9234
  msgid "The subscription is no longer available"
9053
9235
  msgstr ""
9054
9236
 
9055
- #: action_names.rb:6
9056
- msgid "Verify checksum"
9057
- msgstr ""
9058
-
9059
- #: action_names.rb:9
9060
- msgid "Update redhat repository"
9237
+ #: action_names.rb:2
9238
+ msgid "Action with sub plans"
9061
9239
  msgstr ""
9062
9240
 
9063
- #: action_names.rb:10
9064
- msgid "Update content urls"
9241
+ #: action_names.rb:3
9242
+ msgid "Import facts"
9065
9243
  msgstr ""
9066
9244
 
9067
- #: action_names.rb:11
9068
- msgid "Update http proxy details"
9245
+ #: action_names.rb:4
9246
+ msgid "Import Puppet classes"
9069
9247
  msgstr ""
9070
9248
 
9071
- #: action_names.rb:12
9072
- msgid "Index package groups"
9249
+ #: action_names.rb:5
9250
+ msgid "Abstract async task"
9073
9251
  msgstr ""
9074
9252
 
9075
9253
  #: action_names.rb:13
9076
- msgid "Instance update"
9077
- msgstr ""
9078
-
9079
- #: action_names.rb:14
9080
- msgid "Index errata"
9254
+ msgid "Sync capsule"
9081
9255
  msgstr ""
9082
9256
 
9083
9257
  #: action_names.rb:15
9084
- msgid "Filtered index content"
9258
+ msgid "Errata mail"
9085
9259
  msgstr ""
9086
9260
 
9087
9261
  #: action_names.rb:16
9088
- msgid "Discover"
9262
+ msgid "Incremental Update of Content View Version(s) "
9089
9263
  msgstr ""
9090
9264
 
9091
9265
  #: action_names.rb:17
9092
- msgid "Errata mail"
9266
+ msgid "Promote"
9093
9267
  msgstr ""
9094
9268
 
9095
- #: action_names.rb:21
9096
- msgid "Reindex subscriptions"
9269
+ #: action_names.rb:30
9270
+ msgid "Auto attach subscriptions"
9097
9271
  msgstr ""
9098
9272
 
9099
- #: action_names.rb:31
9273
+ #: action_names.rb:34
9100
9274
  msgid "Hypervisors"
9101
9275
  msgstr ""
9102
9276
 
9103
- #: action_names.rb:42
9104
- msgid "Promote"
9277
+ #: action_names.rb:35
9278
+ msgid "Hypervisors update"
9105
9279
  msgstr ""
9106
9280
 
9107
- #: action_names.rb:43
9108
- msgid "Incremental Update of Content View Version(s) "
9281
+ #: action_names.rb:50
9282
+ msgid "Reindex subscriptions"
9109
9283
  msgstr ""
9110
9284
 
9111
- #: action_names.rb:44
9112
- msgid "Sync capsule"
9285
+ #: action_names.rb:51
9286
+ msgid "Update http proxy"
9113
9287
  msgstr ""
9114
9288
 
9115
- #: action_names.rb:49
9116
- msgid "Import facts"
9289
+ #: action_names.rb:53
9290
+ msgid "Discover"
9117
9291
  msgstr ""
9118
9292
 
9119
- #: action_names.rb:50
9120
- msgid "Action with sub plans"
9293
+ #: action_names.rb:54
9294
+ msgid "Fetch pxe files"
9121
9295
  msgstr ""
9122
9296
 
9123
- #: action_names.rb:51
9124
- msgid "Import Puppet classes"
9297
+ #: action_names.rb:55
9298
+ msgid "Filtered index content"
9125
9299
  msgstr ""
9126
9300
 
9127
- #: action_names.rb:52
9128
- msgid "Abstract async task"
9301
+ #: action_names.rb:56
9302
+ msgid "Index content"
9129
9303
  msgstr ""
9130
9304
 
9131
9305
  #: action_names.rb:57
9132
- msgid "Auto attach subscriptions"
9306
+ msgid "Index errata"
9133
9307
  msgstr ""
9134
9308
 
9135
9309
  #: action_names.rb:59
9136
- msgid "Hypervisors update"
9310
+ msgid "Index module streams"
9137
9311
  msgstr ""
9138
9312
 
9139
- #: action_names.rb:66
9140
- msgid "Update http proxy"
9313
+ #: action_names.rb:60
9314
+ msgid "Index package groups"
9141
9315
  msgstr ""
9142
9316
 
9143
- #: action_names.rb:67
9144
- msgid "Fetch pxe files"
9317
+ #: action_names.rb:61
9318
+ msgid "Instance update"
9145
9319
  msgstr ""
9146
9320
 
9147
- #: action_names.rb:68
9148
- msgid "Index content"
9321
+ #: action_names.rb:64
9322
+ msgid "Update content urls"
9149
9323
  msgstr ""
9150
9324
 
9151
- #: action_names.rb:69
9152
- msgid "Index module streams"
9325
+ #: action_names.rb:65
9326
+ msgid "Update http proxy details"
9153
9327
  msgstr ""
9154
9328
 
9155
- #: action_names.rb:75
9156
- msgid "Copy version units to library"
9329
+ #: action_names.rb:66
9330
+ msgid "Update redhat repository"
9157
9331
  msgstr ""
9158
9332
 
9159
- #: action_names.rb:76
9160
- msgid "Remote action:"
9333
+ #: action_names.rb:68
9334
+ msgid "Verify checksum"
9161
9335
  msgstr ""
9162
9336
 
9163
- #: action_names.rb:77
9164
- msgid "Report"
9337
+ #: action_names.rb:73
9338
+ msgid "Copy version units to library"
9165
9339
  msgstr ""