katello 3.16.2 → 3.17.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 (381) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/katello/katello.scss +3 -7
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +1 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +8 -0
  5. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +10 -4
  6. data/app/controllers/katello/api/v2/host_tracer_controller.rb +33 -8
  7. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +11 -11
  8. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +0 -15
  9. data/app/controllers/katello/api/v2/repositories_controller.rb +5 -11
  10. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +16 -0
  11. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -4
  12. data/app/controllers/katello/concerns/api/v2/hostgroups_controller_extensions.rb +1 -1
  13. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +5 -11
  14. data/app/helpers/katello/concerns/dashboard_helper_extensions.rb +10 -0
  15. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +6 -7
  16. data/app/lib/actions/candlepin/product/content_add.rb +2 -1
  17. data/app/lib/actions/candlepin/product/content_update_enablement.rb +18 -0
  18. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
  19. data/app/lib/actions/katello/capsule_content/refresh_repos.rb +1 -1
  20. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  21. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +3 -17
  22. data/app/lib/actions/katello/content_view_version/incremental_update.rb +2 -3
  23. data/app/lib/actions/katello/organization/simple_content_access/disable.rb +17 -0
  24. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +17 -0
  25. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +36 -0
  26. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +13 -0
  27. data/app/lib/actions/katello/product/content_create.rb +3 -3
  28. data/app/lib/actions/katello/product/destroy.rb +4 -25
  29. data/app/lib/actions/katello/repository/content_update.rb +41 -0
  30. data/app/lib/actions/katello/repository/destroy.rb +1 -5
  31. data/app/lib/actions/katello/repository/export.rb +1 -1
  32. data/app/lib/actions/katello/repository/multi_clone_contents.rb +15 -13
  33. data/app/lib/actions/katello/repository/sync.rb +25 -35
  34. data/app/lib/actions/katello/repository/update.rb +19 -30
  35. data/app/lib/actions/katello/repository/update_cv_repo_cert_guard.rb +17 -0
  36. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +1 -0
  37. data/app/lib/actions/pulp/orchestration/repository/sync.rb +1 -2
  38. data/app/lib/actions/pulp/repository/sync.rb +1 -2
  39. data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
  40. data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -3
  41. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  42. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +2 -1
  43. data/app/lib/actions/pulp3/orchestration/repository/sync.rb +1 -3
  44. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -0
  45. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  46. data/app/lib/actions/pulp3/repository/multi_copy_content.rb +1 -1
  47. data/app/lib/actions/pulp3/repository/save_version.rb +16 -20
  48. data/app/lib/actions/pulp3/repository/sync.rb +1 -1
  49. data/app/lib/actions/pulp3/repository/update_cv_repository_cert_guard.rb +2 -6
  50. data/app/lib/actions/pulp3/repository/upload_file.rb +1 -1
  51. data/app/lib/katello/resources/candlepin/product.rb +11 -0
  52. data/app/lib/katello/resources/cdn.rb +2 -3
  53. data/app/lib/katello/util/cdn_var_substitutor.rb +7 -9
  54. data/app/lib/katello/validators/hostgroup_kickstart_repository_validator.rb +11 -11
  55. data/app/models/katello/activation_key.rb +1 -1
  56. data/app/models/katello/concerns/content_facet_host_extensions.rb +7 -0
  57. data/app/models/katello/concerns/host_managed_extensions.rb +39 -0
  58. data/app/models/katello/concerns/hostgroup_extensions.rb +46 -24
  59. data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -19
  60. data/app/models/katello/concerns/widget_extensions.rb +23 -0
  61. data/app/models/katello/content_view.rb +9 -1
  62. data/app/models/katello/content_view_package_filter.rb +1 -1
  63. data/app/models/katello/content_view_version.rb +7 -0
  64. data/app/models/katello/erratum.rb +13 -0
  65. data/app/models/katello/erratum_cve.rb +8 -0
  66. data/app/models/katello/glue/pulp/repo.rb +1 -1
  67. data/app/models/katello/host/content_facet.rb +18 -1
  68. data/app/models/katello/host_collection.rb +6 -0
  69. data/app/models/katello/hostgroup/content_facet.rb +18 -0
  70. data/app/models/katello/installed_package.rb +8 -0
  71. data/app/models/katello/kt_environment.rb +9 -1
  72. data/app/models/katello/model.rb +16 -0
  73. data/app/models/katello/pool.rb +17 -0
  74. data/app/models/katello/product.rb +6 -0
  75. data/app/models/katello/purpose_addons_status.rb +1 -0
  76. data/app/models/katello/purpose_role_status.rb +1 -0
  77. data/app/models/katello/purpose_sla_status.rb +1 -0
  78. data/app/models/katello/purpose_usage_status.rb +1 -0
  79. data/app/models/katello/repository.rb +3 -6
  80. data/app/models/katello/root_repository.rb +24 -16
  81. data/app/models/katello/subscription_status.rb +1 -1
  82. data/app/models/katello/trace_status.rb +1 -1
  83. data/app/models/setting/content.rb +6 -2
  84. data/app/services/cert/certs.rb +2 -10
  85. data/app/services/katello/event_daemon.rb +7 -8
  86. data/app/services/katello/host_status_manager.rb +13 -0
  87. data/app/services/katello/pulp3/migration.rb +1 -1
  88. data/app/services/katello/pulp3/repository/yum.rb +6 -72
  89. data/app/services/katello/pulp3/repository.rb +11 -10
  90. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  91. data/app/services/katello/pulp3/task.rb +3 -3
  92. data/app/services/katello/pulp3/task_group.rb +0 -6
  93. data/app/services/katello/smart_proxy_helper.rb +16 -13
  94. data/app/views/foreman/smart_proxies/_content_sync.html.erb +1 -1
  95. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  96. data/config/routes/api/rhsm.rb +0 -1
  97. data/config/routes/api/v2.rb +8 -2
  98. data/config/routes/overrides.rb +0 -4
  99. data/db/migrate/20141222151001_add_host_content_view_environment.rb +1 -1
  100. data/db/migrate/20180904122343_create_hostgroup_content_facet.katello.rb +16 -0
  101. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +53 -0
  102. data/db/migrate/20200610112009_remove_audits_of_root_repo_with_content_id.rb +9 -0
  103. data/db/migrate/20200701150946_add_auto_enabled_to_root_repository.rb +5 -0
  104. data/db/seeds.d/75-job_templates.rb +2 -2
  105. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +3 -1
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +5 -2
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html +1 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html +2 -2
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html +1 -1
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +4 -1
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-packages-modal.controller.js +4 -1
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js +1 -0
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-traces-modal.controller.js +4 -3
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html +7 -1
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +1 -0
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html +1 -0
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js +1 -1
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details-info.controller.js +7 -1
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-add-subscriptions.html +1 -1
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +1 -0
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +14 -6
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions-list.html +1 -1
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +6 -6
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +5 -2
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +1 -1
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +1 -2
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-traces-resolve.factory.js +18 -0
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +45 -4
  132. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +1 -1
  133. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +1 -1
  134. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1 -1
  135. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +1 -1
  136. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +1 -1
  137. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +1 -1
  138. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +1 -1
  139. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +1 -1
  140. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +1 -1
  141. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +1 -1
  142. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/product-bulk-action.factory.js +0 -1
  143. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +0 -6
  144. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -7
  145. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +11 -1
  146. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +1 -1
  147. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +16 -4
  148. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +0 -1
  149. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +0 -15
  150. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html +0 -6
  151. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  152. data/lib/katello/engine.rb +6 -5
  153. data/lib/katello/permission_creator.rb +3 -3
  154. data/lib/katello/permissions/host_permissions.rb +0 -1
  155. data/lib/katello/plugin.rb +20 -16
  156. data/lib/katello/tasks/pulp3_post_migration_check.rake +1 -2
  157. data/lib/katello/tasks/reimport.rake +1 -1
  158. data/lib/katello/tasks/reports.rake +0 -12
  159. data/lib/katello/tasks/test.rake +15 -0
  160. data/lib/katello/version.rb +1 -1
  161. data/locale/action_names.rb +48 -48
  162. data/locale/bn/katello.po +137 -14
  163. data/locale/cs/katello.po +137 -14
  164. data/locale/de/katello.po +138 -15
  165. data/locale/en/katello.po +137 -14
  166. data/locale/es/katello.po +138 -15
  167. data/locale/fr/katello.po +138 -15
  168. data/locale/gu/katello.po +137 -14
  169. data/locale/hi/katello.po +137 -14
  170. data/locale/it/katello.po +138 -15
  171. data/locale/ja/katello.po +138 -15
  172. data/locale/katello.pot +969 -769
  173. data/locale/kn/katello.po +137 -14
  174. data/locale/ko/katello.po +138 -15
  175. data/locale/mr/katello.po +137 -14
  176. data/locale/or/katello.po +137 -14
  177. data/locale/pa/katello.po +137 -14
  178. data/locale/pt/katello.po +137 -14
  179. data/locale/pt_BR/katello.po +138 -15
  180. data/locale/ru/katello.po +138 -15
  181. data/locale/ta/katello.po +137 -14
  182. data/locale/te/katello.po +137 -14
  183. data/locale/zh_CN/katello.po +138 -15
  184. data/locale/zh_TW/katello.po +138 -15
  185. data/package.json +8 -25
  186. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js +3 -0
  187. data/webpack/components/ActionableDetail.js +63 -0
  188. data/webpack/components/Content/ContentTable.js +2 -2
  189. data/webpack/components/Content/Details/ContentDetailRepositoryTableSchema.js +1 -1
  190. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  191. data/webpack/components/Content/__tests__/ContentTable.test.js +2 -2
  192. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +1 -1
  193. data/webpack/components/EditableSwitch.js +30 -0
  194. data/webpack/components/EditableTextInput/EditableTextInput.js +120 -0
  195. data/webpack/components/EditableTextInput/__tests__/editableTextInput.test.js +52 -0
  196. data/webpack/components/EditableTextInput/editableTextInput.scss +14 -0
  197. data/webpack/components/EditableTextInput/index.js +3 -0
  198. data/webpack/{scenes/ContentViews/components → components}/Loading.js +8 -5
  199. data/webpack/{move_to_pf → components}/LoadingState/LoadingState.js +0 -0
  200. data/webpack/{move_to_pf → components}/LoadingState/LoadingState.scss +0 -0
  201. data/webpack/{move_to_pf → components}/LoadingState/LoadingState.test.js +0 -0
  202. data/webpack/{move_to_pf → components}/LoadingState/__snapshots__/LoadingState.test.js.snap +0 -0
  203. data/webpack/{move_to_pf → components}/LoadingState/index.js +0 -0
  204. data/webpack/components/MultiSelect/index.js +1 -1
  205. data/webpack/{move_to_pf → components}/OptionTooltip/OptionTooltip.scss +0 -0
  206. data/webpack/{move_to_pf → components}/OptionTooltip/__tests__/OptionTooltip.test.js +0 -0
  207. data/webpack/{move_to_pf → components}/OptionTooltip/__tests__/__snapshots__/OptionTooltip.test.js.snap +0 -0
  208. data/webpack/{move_to_pf → components}/OptionTooltip/index.js +0 -0
  209. data/webpack/components/Search/Search.js +124 -0
  210. data/webpack/components/Search/Search.test.js +2 -1
  211. data/webpack/components/Search/__snapshots__/Search.test.js.snap +2 -0
  212. data/webpack/components/Search/__tests__/search.test.js +124 -0
  213. data/webpack/components/Search/index.js +11 -87
  214. data/webpack/{move_to_pf → components}/Select/Select.js +0 -0
  215. data/webpack/components/SelectOrg/SetOrganization.js +2 -2
  216. data/webpack/components/TabWrapper/TabWrapper.js +26 -0
  217. data/webpack/components/TabWrapper/index.js +3 -0
  218. data/webpack/components/TabbedView/TabbedView.js +38 -0
  219. data/webpack/components/TabbedView/TabbedView.scss +3 -0
  220. data/webpack/components/TabbedView/index.js +3 -0
  221. data/webpack/components/Table/EmptyStateMessage.js +61 -0
  222. data/webpack/{scenes/ContentViews/Table/TableWrapper.js → components/Table/MainTable.js} +23 -12
  223. data/webpack/components/Table/TableWrapper.js +94 -0
  224. data/webpack/{move_to_pf → components}/TooltipButton/TooltipButton.js +0 -0
  225. data/webpack/{move_to_pf → components}/TooltipButton/TooltipButton.scss +0 -0
  226. data/webpack/{move_to_pf → components}/TooltipButton/TooltipButton.test.js +0 -0
  227. data/webpack/{move_to_pf → components}/TooltipButton/__snapshots__/TooltipButton.test.js.snap +0 -0
  228. data/webpack/{move_to_pf → components}/TooltipButton/index.js +0 -0
  229. data/webpack/components/TypeAhead/TypeAhead.js +109 -0
  230. data/webpack/{move_to_pf → components}/TypeAhead/TypeAhead.scss +0 -0
  231. data/webpack/components/TypeAhead/helpers/commonPropTypes.js +35 -0
  232. data/webpack/components/TypeAhead/helpers/helpers.js +32 -0
  233. data/webpack/components/TypeAhead/index.js +3 -0
  234. data/webpack/{move_to_pf/TypeAhead → components/TypeAhead/pf3Search}/TypeAheadInput.js +3 -6
  235. data/webpack/{move_to_pf/TypeAhead → components/TypeAhead/pf3Search}/TypeAheadItems.js +3 -7
  236. data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +52 -0
  237. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +44 -0
  238. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.scss +11 -0
  239. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +57 -0
  240. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +66 -0
  241. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.scss +5 -0
  242. data/webpack/components/extensions/about/__tests__/SystemStatuses.test.js +1 -1
  243. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/CollapseSubscriptionGroupButton.js +0 -0
  244. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/CollapseSubscriptionGroupButton.test.js +0 -0
  245. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/Table.js +0 -0
  246. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/Table.test.js +0 -0
  247. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableBody.js +0 -0
  248. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableBody.test.js +0 -0
  249. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableBodyMessage.js +0 -0
  250. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableBodyMessage.test.js +0 -0
  251. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableFixtures.js +0 -0
  252. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableSelectionCell.js +0 -0
  253. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableSelectionCell.test.js +0 -0
  254. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableSelectionHeaderCell.js +0 -0
  255. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/TableSelectionHeaderCell.test.js +0 -0
  256. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/__snapshots__/CollapseSubscriptionGroupButton.test.js.snap +0 -0
  257. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/__snapshots__/Table.test.js.snap +0 -0
  258. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/__snapshots__/TableBody.test.js.snap +0 -0
  259. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/__snapshots__/TableBodyMessage.test.js.snap +0 -0
  260. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/__snapshots__/TableSelectionCell.test.js.snap +0 -0
  261. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/__snapshots__/TableSelectionHeaderCell.test.js.snap +0 -0
  262. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/components/index.js +0 -0
  263. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/EntitlementsInlineEditFormatter.js +1 -1
  264. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/__tests__/EntitlementsInlineEditFormatter.test.js +0 -0
  265. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +0 -0
  266. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/cellFormatter.js +0 -0
  267. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/collapseableAndSelectionCellFormatter.js +0 -0
  268. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/ellipsisCellFormatter.js +0 -0
  269. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/headerFormatter.js +0 -0
  270. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/index.js +0 -0
  271. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/selectionCellFormatter.js +0 -0
  272. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/formatters/selectionHeaderCellFormatter.js +0 -0
  273. data/webpack/{move_to_foreman/components/common/table → components/pf3Table}/index.js +0 -0
  274. data/webpack/{move_to_pf → components}/react-bootstrap-select/index.js +0 -0
  275. data/webpack/containers/Application/config.js +5 -0
  276. data/webpack/containers/Application/overrides.scss +5 -0
  277. data/webpack/global_test_setup.js +3 -1
  278. data/webpack/redux/OrganizationProducts/OrganizationProductsActions.js +1 -1
  279. data/webpack/redux/OrganizationProducts/__tests__/OrganizationProductsActions.test.js +2 -2
  280. data/webpack/redux/actions/RedHatRepositories/enabled.js +1 -1
  281. data/webpack/redux/actions/RedHatRepositories/helpers.js +1 -1
  282. data/webpack/redux/actions/RedHatRepositories/repositorySetRepositories.js +1 -1
  283. data/webpack/redux/reducers/index.js +2 -0
  284. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +1 -1
  285. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +1 -1
  286. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +1 -1
  287. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +2 -2
  288. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +1 -1
  289. data/webpack/scenes/ContentViews/ContentViewSelectors.js +1 -2
  290. data/webpack/scenes/ContentViews/ContentViewsActions.js +4 -4
  291. data/webpack/scenes/ContentViews/ContentViewsConstants.js +4 -1
  292. data/webpack/scenes/ContentViews/ContentViewsPage.js +12 -6
  293. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +44 -0
  294. data/webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js +23 -0
  295. data/webpack/scenes/ContentViews/{details → Details}/ContentViewDetailSelectors.js +3 -0
  296. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +70 -0
  297. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +116 -0
  298. data/webpack/scenes/ContentViews/{details → Details}/DetailsContainer.js +8 -4
  299. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +101 -0
  300. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +106 -0
  301. data/webpack/scenes/ContentViews/Details/contentViewInfo.scss +8 -0
  302. data/webpack/scenes/ContentViews/Details/index.js +7 -0
  303. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +51 -36
  304. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +47 -44
  305. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +31 -0
  306. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +2 -1
  307. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +173 -23
  308. data/webpack/scenes/ContentViews/components/ContentViewIcon.js +26 -0
  309. data/webpack/scenes/ContentViews/components/{contentViewName.scss → contentViewIcon.scss} +0 -0
  310. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetailsActions.js +1 -1
  311. data/webpack/scenes/ModuleStreams/Details/Profiles/TableSchema.js +1 -1
  312. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetailsActions.test.js +2 -2
  313. data/webpack/scenes/ModuleStreams/ModuleStreamsActions.js +1 -1
  314. data/webpack/scenes/ModuleStreams/ModuleStreamsTableSchema.js +1 -1
  315. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamsTable.test.js +1 -1
  316. data/webpack/scenes/Organizations/OrganizationSelectors.js +14 -0
  317. data/webpack/scenes/Products/ProductActions.js +1 -1
  318. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +1 -1
  319. data/webpack/scenes/Settings/SettingsConstants.js +3 -0
  320. data/webpack/scenes/Settings/SettingsReducer.js +33 -0
  321. data/webpack/scenes/Settings/SettingsSelectors.js +4 -0
  322. data/webpack/scenes/Settings/index.js +2 -1
  323. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js +1 -1
  324. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +1 -1
  325. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +59 -73
  326. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.scss +15 -0
  327. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +43 -1
  328. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +8 -0
  329. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js +1 -1
  330. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +78 -0
  331. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +2 -0
  332. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js +56 -1
  333. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +114 -0
  334. data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +6 -6
  335. data/webpack/scenes/Subscriptions/Manifest/__tests__/manifest.fixtures.js +36 -0
  336. data/webpack/scenes/Subscriptions/Manifest/index.js +3 -1
  337. data/webpack/scenes/Subscriptions/SubscriptionActions.js +1 -1
  338. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +4 -0
  339. data/webpack/scenes/Subscriptions/SubscriptionHelpers.js +0 -3
  340. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +38 -11
  341. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +30 -18
  342. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +0 -3
  343. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js +1 -1
  344. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +2 -2
  345. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js +1 -1
  346. data/webpack/scenes/Subscriptions/__tests__/SubscriptionHelpers.test.js +0 -11
  347. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsActions.test.js.snap +2 -2
  348. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +4 -4
  349. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsReducer.test.js.snap +26 -1
  350. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionTypeFormatter.js +2 -2
  351. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +27 -21
  352. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +6 -2
  353. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -2
  354. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionTypeFormatter.test.js.snap +3 -3
  355. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Table.js +1 -1
  356. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +28 -3
  357. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +5 -10
  358. data/webpack/scenes/Subscriptions/index.js +6 -2
  359. data/webpack/test-utils/nockWrapper.js +39 -5
  360. data/webpack/test-utils/react-testing-lib-wrapper.js +35 -9
  361. data/webpack/{move_to_foreman/common → utils}/helpers.js +12 -8
  362. data/webpack/utils/useEventListener.js +37 -0
  363. metadata +143 -83
  364. data/app/lib/actions/katello/repository/verify_checksum.rb +0 -28
  365. data/app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb +0 -22
  366. data/app/lib/actions/pulp3/repository/presenters/repair_presenter.rb +0 -85
  367. data/app/lib/actions/pulp3/repository/repair.rb +0 -29
  368. data/app/services/katello/host_trace_manager.rb +0 -38
  369. data/vendor/assets/stylesheets/katello/jquery.loadmask.css.scss +0 -40
  370. data/vendor/assets/stylesheets/katello/ui.spinner.css.scss +0 -3
  371. data/webpack/__mocks__/foremanReact/components/ForemanModal/ForemanModalActions.js +0 -2
  372. data/webpack/__mocks__/foremanReact/components/ForemanModal/ForemanModalSelectors.js +0 -2
  373. data/webpack/__mocks__/foremanReact/components/ForemanModal/index.js +0 -4
  374. data/webpack/__mocks__/foremanReact/components/Settings/SettingsActions.js +0 -4
  375. data/webpack/__mocks__/foremanReact/components/Settings/SettingsConstants.js +0 -2
  376. data/webpack/move_to_pf/TypeAhead/TypeAhead.js +0 -138
  377. data/webpack/move_to_pf/TypeAhead/helpers.js +0 -5
  378. data/webpack/scenes/ContentViews/components/ContentViewName.js +0 -33
  379. data/webpack/scenes/ContentViews/components/EmptyStateMessage.js +0 -43
  380. data/webpack/scenes/ContentViews/details/ContentViewDetailActions.js +0 -12
  381. data/webpack/scenes/ContentViews/expansions/RepositoriesExpansion.js +0 -12
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-06-23 16:04+0000\n"
12
- "PO-Revision-Date: 2020-06-23 16:04+0000\n"
11
+ "POT-Creation-Date: 2020-07-31 15:47+0000\n"
12
+ "PO-Revision-Date: 2020-07-31 15:47+0000\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -87,7 +87,7 @@ msgid "Organization not found"
87
87
  msgstr ""
88
88
 
89
89
  #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:374
90
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:259
90
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:261
91
91
  #: ../app/controllers/katello/api/v2/products_controller.rb:141
92
92
  msgid "Couldn't find activation key '%s'"
93
93
  msgstr ""
@@ -101,23 +101,23 @@ msgid "At least one activation key must be provided"
101
101
  msgstr ""
102
102
 
103
103
  #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:395
104
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:283
104
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:285
105
105
  #: ../app/controllers/katello/api/v2/environments_controller.rb:162
106
106
  msgid "Couldn't find environment '%s'"
107
107
  msgstr ""
108
108
 
109
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:17
109
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:19
110
110
  msgid "List activation keys"
111
111
  msgstr ""
112
112
 
113
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:20
114
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:32
115
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:60
116
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:88
117
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:96
113
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:22
114
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:34
115
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:62
116
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:90
117
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:98
118
118
  #: ../app/controllers/katello/api/v2/content_credentials_controller.rb:30
119
119
  #: ../app/controllers/katello/api/v2/content_credentials_controller.rb:46
120
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:27
120
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:34
121
121
  #: ../app/controllers/katello/api/v2/environments_controller.rb:48
122
122
  #: ../app/controllers/katello/api/v2/environments_controller.rb:123
123
123
  #: ../app/controllers/katello/api/v2/environments_controller.rb:132
@@ -136,18 +136,18 @@ msgstr ""
136
136
  msgid "organization identifier"
137
137
  msgstr ""
138
138
 
139
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:21
140
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:28
139
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:23
140
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:35
141
141
  #: ../app/controllers/katello/concerns/api/v2/repository_content_controller.rb:28
142
142
  msgid "environment identifier"
143
143
  msgstr ""
144
144
 
145
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:22
145
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:24
146
146
  #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:13
147
147
  #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:35
148
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:50
149
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:58
150
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:74
148
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:52
149
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:60
150
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:78
151
151
  #: ../app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb:9
152
152
  #: ../app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb:21
153
153
  #: ../app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb:40
@@ -155,301 +155,308 @@ msgstr ""
155
155
  msgid "content view identifier"
156
156
  msgstr ""
157
157
 
158
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:23
158
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:25
159
159
  msgid "activation key name to filter by"
160
160
  msgstr ""
161
161
 
162
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:31
163
- msgid "Create an activation key"
164
- msgstr ""
165
-
166
162
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:33
167
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:61
168
- msgid "name"
169
- msgstr ""
170
-
171
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:34
172
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:62
173
- msgid "description"
163
+ msgid "Create an activation key"
174
164
  msgstr ""
175
165
 
176
166
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:35
177
- msgid "environment"
167
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:63
168
+ msgid "name"
178
169
  msgstr ""
179
170
 
180
171
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:36
181
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:63
182
- msgid "environment id"
172
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:64
173
+ msgid "description"
183
174
  msgstr ""
184
175
 
185
176
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:37
186
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:64
187
- msgid "content view id"
177
+ msgid "environment"
188
178
  msgstr ""
189
179
 
190
180
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:38
191
181
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:65
192
- msgid "maximum number of registered content hosts"
182
+ msgid "environment id"
193
183
  msgstr ""
194
184
 
195
185
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:39
196
186
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:66
197
- msgid "can the activation key have unlimited hosts"
187
+ msgid "content view id"
198
188
  msgstr ""
199
189
 
200
190
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:40
201
191
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:67
202
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:220
203
- msgid "content release version"
192
+ msgid "maximum number of registered content hosts"
204
193
  msgstr ""
205
194
 
206
195
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:41
207
196
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:68
208
- msgid "service level"
197
+ msgid "can the activation key have unlimited hosts"
209
198
  msgstr ""
210
199
 
211
200
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:42
212
201
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:69
213
- msgid "auto attach subscriptions upon registration"
202
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:226
203
+ msgid "content release version"
214
204
  msgstr ""
215
205
 
216
206
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:43
217
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:44
218
207
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:70
208
+ msgid "service level"
209
+ msgstr ""
210
+
211
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:44
219
212
  #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:71
213
+ msgid "auto attach subscriptions upon registration"
214
+ msgstr ""
215
+
216
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:45
217
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:46
218
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:72
219
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:73
220
220
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:20
221
221
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:21
222
222
  msgid "Sets the system purpose usage"
223
223
  msgstr ""
224
224
 
225
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:45
226
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:72
225
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:47
226
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:74
227
227
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:22
228
228
  msgid "Sets the system add-ons"
229
229
  msgstr ""
230
230
 
231
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:58
231
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:60
232
232
  msgid "Update an activation key"
233
233
  msgstr ""
234
234
 
235
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:59
236
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:79
237
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:87
238
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:95
239
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:131
240
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:142
241
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:165
242
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:175
243
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:185
244
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:203
245
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:219
235
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:61
236
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:81
237
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:89
238
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:97
239
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:133
240
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:144
241
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:167
242
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:177
243
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:187
244
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:205
245
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:221
246
246
  msgid "ID of the activation key"
247
247
  msgstr ""
248
248
 
249
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:78
249
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:80
250
250
  msgid "Destroy an activation key"
251
251
  msgstr ""
252
252
 
253
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:86
253
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:88
254
254
  msgid "Show an activation key"
255
255
  msgstr ""
256
256
 
257
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:93
257
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:95
258
258
  msgid "Copy an activation key"
259
259
  msgstr ""
260
260
 
261
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:94
261
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:96
262
262
  msgid "Name of new activation key"
263
263
  msgstr ""
264
264
 
265
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:98
265
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:100
266
266
  msgid "New name cannot be blank"
267
267
  msgstr ""
268
268
 
269
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:115
269
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:117
270
270
  msgid "List host collections the activation key does not belong to"
271
271
  msgstr ""
272
272
 
273
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:117
273
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:119
274
274
  #: ../app/controllers/katello/api/v2/host_collections_controller.rb:32
275
275
  msgid "host collection name to filter by"
276
276
  msgstr ""
277
277
 
278
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:130
278
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:132
279
279
  msgid "Show release versions available for an activation key"
280
280
  msgstr ""
281
281
 
282
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:141
282
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:143
283
283
  msgid "Show content available for an activation key"
284
284
  msgstr ""
285
285
 
286
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:143
287
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:166
286
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:145
287
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:172
288
288
  msgid "Get all content available, not just that provided by subscriptions"
289
289
  msgstr ""
290
290
 
291
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:144
291
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:146
292
292
  msgid ""
293
293
  "Limit content to just that available in the activation key's content view vers"
294
294
  "ion"
295
295
  msgstr ""
296
296
 
297
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:166
297
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:168
298
298
  msgid "List of host collection IDs to associate with activation key"
299
299
  msgstr ""
300
300
 
301
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:176
301
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:178
302
302
  msgid "List of host collection IDs to disassociate from the activation key"
303
303
  msgstr ""
304
304
 
305
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:184
305
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:186
306
306
  msgid "Attach a subscription"
307
307
  msgstr ""
308
308
 
309
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:186
309
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:188
310
310
  #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:75
311
311
  msgid "Subscription identifier"
312
312
  msgstr ""
313
313
 
314
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:187
314
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:189
315
315
  msgid "Quantity of this subscription to add"
316
316
  msgstr ""
317
317
 
318
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:188
319
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:205
320
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:132
321
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:171
318
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:190
319
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:207
320
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:134
321
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:173
322
322
  msgid "Array of subscriptions to add"
323
323
  msgstr ""
324
324
 
325
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:189
326
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:206
325
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:191
326
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:208
327
327
  msgid "Subscription Pool uuid"
328
328
  msgstr ""
329
329
 
330
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:190
331
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:134
332
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:173
330
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:192
331
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:136
332
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:175
333
333
  msgid "Quantity of this subscriptions to add"
334
334
  msgstr ""
335
335
 
336
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:202
336
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:204
337
337
  msgid "Unattach a subscription"
338
338
  msgstr ""
339
339
 
340
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:204
340
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:206
341
341
  msgid "Subscription ID"
342
342
  msgstr ""
343
343
 
344
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:218
344
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:220
345
345
  msgid "Override content for activation_key"
346
346
  msgstr ""
347
347
 
348
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:220
348
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:222
349
349
  msgid "Array of Content override parameters to be added in bulk"
350
350
  msgstr ""
351
351
 
352
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:221
353
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:149
354
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:194
352
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:223
353
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:155
354
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:200
355
355
  msgid "Label of the content"
356
356
  msgstr ""
357
357
 
358
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:222
359
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:150
360
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:195
358
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:224
359
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:156
360
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:201
361
361
  msgid "Override value. Provide a boolean value if name is 'enabled'"
362
362
  msgstr ""
363
363
 
364
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:223
364
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:225
365
365
  msgid ""
366
366
  "Override parameter key or name. Note if name is not provided the default name "
367
367
  "will be 'enabled'"
368
368
  msgstr ""
369
369
 
370
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:224
371
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:152
372
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:197
370
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:226
371
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:158
372
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:203
373
373
  msgid "Set true to remove an override and reset it to 'default'"
374
374
  msgstr ""
375
375
 
376
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:294
376
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:296
377
377
  #: ../app/controllers/katello/api/v2/host_collections_controller.rb:183
378
378
  msgid "Couldn't find host collection '%s'"
379
379
  msgstr ""
380
380
 
381
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:301
381
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:303
382
382
  msgid "Either organization ID or environment ID needs to be specified"
383
383
  msgstr ""
384
384
 
385
- #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:308
385
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:310
386
386
  msgid "Couldn't find content view '%s'"
387
387
  msgstr ""
388
388
 
389
+ #: ../app/controllers/katello/api/v2/activation_keys_controller.rb:356
390
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:179
391
+ msgid ""
392
+ "The specified organization is in Simple Content Access mode. Attaching subscri"
393
+ "ptions is disabled"
394
+ msgstr ""
395
+
389
396
  #: ../app/controllers/katello/api/v2/ansible_collections_controller.rb:6
390
397
  msgid "an ansible collection"
391
398
  msgstr ""
392
399
 
393
- #: ../app/controllers/katello/api/v2/api_controller.rb:22
400
+ #: ../app/controllers/katello/api/v2/api_controller.rb:23
394
401
  msgid "Search string"
395
402
  msgstr ""
396
403
 
397
- #: ../app/controllers/katello/api/v2/api_controller.rb:23
398
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:11
404
+ #: ../app/controllers/katello/api/v2/api_controller.rb:24
405
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:12
399
406
  msgid "Page number, starting at 1"
400
407
  msgstr ""
401
408
 
402
- #: ../app/controllers/katello/api/v2/api_controller.rb:24
409
+ #: ../app/controllers/katello/api/v2/api_controller.rb:25
403
410
  msgid "Number of results per page to return"
404
411
  msgstr ""
405
412
 
406
- #: ../app/controllers/katello/api/v2/api_controller.rb:25
413
+ #: ../app/controllers/katello/api/v2/api_controller.rb:26
407
414
  msgid "Sort field and order, eg. 'id DESC'"
408
415
  msgstr ""
409
416
 
410
- #: ../app/controllers/katello/api/v2/api_controller.rb:26
417
+ #: ../app/controllers/katello/api/v2/api_controller.rb:27
411
418
  msgid "Whether or not to show all results"
412
419
  msgstr ""
413
420
 
414
- #: ../app/controllers/katello/api/v2/api_controller.rb:27
421
+ #: ../app/controllers/katello/api/v2/api_controller.rb:28
415
422
  msgid "Field to sort the results on"
416
423
  msgstr ""
417
424
 
418
- #: ../app/controllers/katello/api/v2/api_controller.rb:28
425
+ #: ../app/controllers/katello/api/v2/api_controller.rb:29
419
426
  msgid "How to order the sorted results (e.g. ASC for ascending)"
420
427
  msgstr ""
421
428
 
422
- #: ../app/controllers/katello/api/v2/api_controller.rb:31
429
+ #: ../app/controllers/katello/api/v2/api_controller.rb:32
423
430
  msgid "root-node of single-resource responses (optional)"
424
431
  msgstr ""
425
432
 
426
- #: ../app/controllers/katello/api/v2/api_controller.rb:32
433
+ #: ../app/controllers/katello/api/v2/api_controller.rb:33
427
434
  msgid "root-node of collection contained in responses (default: 'results')"
428
435
  msgstr ""
429
436
 
430
- #: ../app/controllers/katello/api/v2/api_controller.rb:107
437
+ #: ../app/controllers/katello/api/v2/api_controller.rb:108
431
438
  msgid ""
432
439
  "Your search query was invalid. Please revise it and try again. The full error "
433
440
  "has been sent to the application logs."
434
441
  msgstr ""
435
442
 
436
- #: ../app/controllers/katello/api/v2/api_controller.rb:142
443
+ #: ../app/controllers/katello/api/v2/api_controller.rb:143
437
444
  msgid "One of parameters [ %s ] required but not specified."
438
445
  msgstr ""
439
446
 
440
- #: ../app/controllers/katello/api/v2/api_controller.rb:160
447
+ #: ../app/controllers/katello/api/v2/api_controller.rb:161
441
448
  msgid "Couldn't find organization '%s'"
442
449
  msgstr ""
443
450
 
444
- #: ../app/controllers/katello/api/v2/api_controller.rb:193
451
+ #: ../app/controllers/katello/api/v2/api_controller.rb:194
445
452
  msgid "You have not set a default organization on the user %s."
446
453
  msgstr ""
447
454
 
448
- #: ../app/controllers/katello/api/v2/api_controller.rb:205
455
+ #: ../app/controllers/katello/api/v2/api_controller.rb:206
449
456
  msgid "The requested resource does not belong to the specified Organization"
450
457
  msgstr ""
451
458
 
452
- #: ../app/controllers/katello/api/v2/api_controller.rb:211
459
+ #: ../app/controllers/katello/api/v2/api_controller.rb:212
453
460
  msgid "Host has not been registered with subscription-manager"
454
461
  msgstr ""
455
462
 
@@ -583,7 +590,7 @@ msgstr ""
583
590
 
584
591
  #: ../app/controllers/katello/api/v2/content_credentials_controller.rb:100
585
592
  #: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:94
586
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:375
593
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:377
587
594
  msgid "No file uploaded"
588
595
  msgstr ""
589
596
 
@@ -609,9 +616,9 @@ msgid "Checksum of file to upload"
609
616
  msgstr ""
610
617
 
611
618
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:13
612
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:352
613
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:363
614
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:392
619
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:354
620
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:365
621
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:394
615
622
  msgid ""
616
623
  "content type ('deb', 'docker_manifest', 'file', 'ostree', 'puppet_module', 'rp"
617
624
  "m', 'srpm')"
@@ -623,7 +630,7 @@ msgstr ""
623
630
 
624
631
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:21
625
632
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:33
626
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:388
633
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:390
627
634
  msgid "Repository id"
628
635
  msgstr ""
629
636
 
@@ -722,9 +729,9 @@ msgstr ""
722
729
  #: ../app/controllers/katello/api/v2/content_view_filter_rules_controller.rb:68
723
730
  #: ../app/controllers/katello/api/v2/content_view_filter_rules_controller.rb:76
724
731
  #: ../app/controllers/katello/api/v2/content_view_filter_rules_controller.rb:102
725
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:51
726
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:59
727
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:75
732
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:53
733
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:61
734
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:79
728
735
  msgid "filter identifier"
729
736
  msgstr ""
730
737
 
@@ -856,47 +863,54 @@ msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
856
863
  msgstr ""
857
864
 
858
865
  #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:38
859
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:61
866
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:63
860
867
  msgid ""
861
868
  "add all packages without errata to the included/excluded list. (package filter"
862
869
  " only)"
863
870
  msgstr ""
864
871
 
865
872
  #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:40
866
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:63
873
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:65
874
+ msgid ""
875
+ "add all module streams without errata to the included/excluded list. (module s"
876
+ "tream filter only)"
877
+ msgstr ""
878
+
879
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:42
880
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:67
867
881
  msgid "specifies if content should be included or excluded, default: inclusion=false"
868
882
  msgstr ""
869
883
 
870
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:41
871
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:64
884
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:43
885
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:68
872
886
  msgid "list of repository ids"
873
887
  msgstr ""
874
888
 
875
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:42
876
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:65
889
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:44
890
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:69
877
891
  msgid "description of the filter"
878
892
  msgstr ""
879
893
 
880
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:48
881
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:49
894
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:50
895
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:51
882
896
  msgid "show filter info"
883
897
  msgstr ""
884
898
 
885
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:56
886
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:57
899
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:58
900
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:59
887
901
  msgid "update a filter"
888
902
  msgstr ""
889
903
 
890
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:60
904
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:62
891
905
  msgid "new name for the filter"
892
906
  msgstr ""
893
907
 
894
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:72
895
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:73
908
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:76
909
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:77
896
910
  msgid "delete a filter"
897
911
  msgstr ""
898
912
 
899
- #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:90
913
+ #: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:94
900
914
  msgid "Couldn't find ContentViewFilter with id=%s"
901
915
  msgstr ""
902
916
 
@@ -906,12 +920,12 @@ msgstr ""
906
920
 
907
921
  #: ../app/controllers/katello/api/v2/content_view_histories_controller.rb:8
908
922
  #: ../app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb:32
909
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:109
910
923
  #: ../app/controllers/katello/api/v2/content_views_controller.rb:116
911
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:148
912
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:162
913
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:175
914
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:206
924
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:123
925
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:155
926
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:169
927
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:182
928
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:213
915
929
  msgid "content view numeric identifier"
916
930
  msgstr ""
917
931
 
@@ -983,8 +997,8 @@ msgid "List content view versions"
983
997
  msgstr ""
984
998
 
985
999
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:17
986
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:71
987
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:80
1000
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:78
1001
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:87
988
1002
  msgid "Content view identifier"
989
1003
  msgstr ""
990
1004
 
@@ -1005,7 +1019,7 @@ msgid "Filter versions that are components in the specified composite version"
1005
1019
  msgstr ""
1006
1020
 
1007
1021
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:22
1008
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:56
1022
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:63
1009
1023
  #: ../app/controllers/katello/api/v2/errata_controller.rb:12
1010
1024
  #: ../app/controllers/katello/api/v2/errata_controller.rb:67
1011
1025
  #: ../app/controllers/katello/api/v2/packages_controller.rb:33
@@ -1070,22 +1084,22 @@ msgid "Export a content view version"
1070
1084
  msgstr ""
1071
1085
 
1072
1086
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:87
1073
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:299
1087
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:300
1074
1088
  msgid "Export to ISO format"
1075
1089
  msgstr ""
1076
1090
 
1077
1091
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:88
1078
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:300
1092
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:301
1079
1093
  msgid "maximum size of each ISO in MB"
1080
1094
  msgstr ""
1081
1095
 
1082
1096
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:89
1083
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:301
1097
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:302
1084
1098
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
1085
1099
  msgstr ""
1086
1100
 
1087
1101
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:93
1088
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:304
1102
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:305
1089
1103
  msgid "ISO export must be enabled when specifying ISO size"
1090
1104
  msgstr ""
1091
1105
 
@@ -1094,7 +1108,7 @@ msgid "This content view has on demand repositories that cannot be exported: %{r
1094
1108
  msgstr ""
1095
1109
 
1096
1110
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:104
1097
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:311
1111
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:312
1098
1112
  msgid "Invalid date provided."
1099
1113
  msgstr ""
1100
1114
 
@@ -1145,52 +1159,56 @@ msgid "Search string for host to perform an action on"
1145
1159
  msgstr ""
1146
1160
 
1147
1161
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:139
1148
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:45
1162
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:47
1149
1163
  msgid "List of host ids to perform an action on"
1150
1164
  msgstr ""
1151
1165
 
1152
1166
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:142
1153
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:48
1167
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:50
1154
1168
  msgid "List of host ids to exclude and not run an action on"
1155
1169
  msgstr ""
1156
1170
 
1157
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:188
1171
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:147
1172
+ msgid "Incremental update requires at least one content unit"
1173
+ msgstr ""
1174
+
1175
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:191
1158
1176
  msgid "The default content view cannot be promoted"
1159
1177
  msgstr ""
1160
1178
 
1161
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:197
1179
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:200
1162
1180
  msgid "At least one Content View Version must be specified"
1163
1181
  msgstr ""
1164
1182
 
1165
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:208
1183
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:211
1166
1184
  msgid "You are not allowed to publish Content View %s"
1167
1185
  msgstr ""
1168
1186
 
1169
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:212
1187
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:215
1170
1188
  msgid "You are not allowed to promote to Environments %s"
1171
1189
  msgstr ""
1172
1190
 
1173
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:217
1191
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:220
1174
1192
  msgid "Could not find Environment with ids: %s"
1175
1193
  msgstr ""
1176
1194
 
1177
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:270
1195
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:273
1178
1196
  msgid "Could not find %{count} errata. Only found: %{found}"
1179
1197
  msgstr ""
1180
1198
 
1181
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:276
1199
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:279
1182
1200
  msgid "package_ids is not an array"
1183
1201
  msgstr ""
1184
1202
 
1185
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:280
1203
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:283
1186
1204
  msgid "deb_ids is not an array"
1187
1205
  msgstr ""
1188
1206
 
1189
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:284
1207
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:287
1190
1208
  msgid "puppet_module_ids is not an array"
1191
1209
  msgstr ""
1192
1210
 
1193
- #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:293
1211
+ #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:296
1194
1212
  msgid "Could not find environments for promotion"
1195
1213
  msgstr ""
1196
1214
 
@@ -1216,183 +1234,183 @@ msgstr ""
1216
1234
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
1217
1235
  msgstr ""
1218
1236
 
1219
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:25
1220
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:26
1237
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:32
1238
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:33
1221
1239
  msgid "List content views"
1222
1240
  msgstr ""
1223
1241
 
1224
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:29
1242
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:36
1225
1243
  msgid "Filter out default content views"
1226
1244
  msgstr ""
1227
1245
 
1228
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:30
1246
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:37
1229
1247
  msgid "Filter out composite content views"
1230
1248
  msgstr ""
1231
1249
 
1232
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:31
1250
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:38
1233
1251
  msgid "Filter only composite content views"
1234
1252
  msgstr ""
1235
1253
 
1236
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:32
1254
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:39
1237
1255
  msgid "Do not include this array of content views"
1238
1256
  msgstr ""
1239
1257
 
1240
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:33
1241
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:57
1258
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:40
1259
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:64
1242
1260
  msgid "Name of the content view"
1243
1261
  msgstr ""
1244
1262
 
1245
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:54
1246
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:55
1263
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:61
1264
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:62
1247
1265
  msgid "Create a content view"
1248
1266
  msgstr ""
1249
1267
 
1250
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:58
1268
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:65
1251
1269
  msgid "Content view label"
1252
1270
  msgstr ""
1253
1271
 
1254
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:59
1272
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:66
1255
1273
  msgid "Composite content view"
1256
1274
  msgstr ""
1257
1275
 
1258
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:70
1276
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:77
1259
1277
  msgid "Update a content view"
1260
1278
  msgstr ""
1261
1279
 
1262
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:72
1280
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:79
1263
1281
  msgid "New name for the content view"
1264
1282
  msgstr ""
1265
1283
 
1266
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:79
1284
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:86
1267
1285
  msgid "Publish a content view"
1268
1286
  msgstr ""
1269
1287
 
1270
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:81
1288
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:88
1271
1289
  msgid "Description for the new published content view version"
1272
1290
  msgstr ""
1273
1291
 
1274
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:82
1292
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:89
1275
1293
  msgid "Override the major version number"
1276
1294
  msgstr ""
1277
1295
 
1278
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:83
1296
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:90
1279
1297
  msgid "Override the minor version number"
1280
1298
  msgstr ""
1281
1299
 
1282
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:84
1300
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:91
1283
1301
  msgid "Specify the list of units in each repo"
1284
1302
  msgstr ""
1285
1303
 
1286
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:85
1304
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:92
1287
1305
  msgid "repo label"
1288
1306
  msgstr ""
1289
1307
 
1290
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:86
1308
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:93
1291
1309
  msgid "list of rpm filename strings to include in published version"
1292
1310
  msgstr ""
1293
1311
 
1294
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:90
1312
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:97
1295
1313
  msgid ""
1296
1314
  "Directly setting package lists on composite content views is not allowed. Plea"
1297
1315
  "se update the components, then re-publish the composite."
1298
1316
  msgstr ""
1299
1317
 
1300
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:94
1318
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:101
1301
1319
  msgid ""
1302
1320
  "A CV version already exists with the same major and minor version (%{major}.%{"
1303
1321
  "minor})"
1304
1322
  msgstr ""
1305
1323
 
1306
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:98
1324
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:105
1307
1325
  msgid "Both major and minor parameters have to be used to override a CV version"
1308
1326
  msgstr ""
1309
1327
 
1310
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:108
1328
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:115
1311
1329
  msgid "Show a content view"
1312
1330
  msgstr ""
1313
1331
 
1314
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:115
1332
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:122
1315
1333
  msgid "Get puppet modules that are available to be added to the content view"
1316
1334
  msgstr ""
1317
1335
 
1318
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:117
1336
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:124
1319
1337
  msgid "module name to restrict modules for"
1320
1338
  msgstr ""
1321
1339
 
1322
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:147
1340
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:154
1323
1341
  msgid "Get puppet modules names that are available to be added to the content view"
1324
1342
  msgstr ""
1325
1343
 
1326
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:161
1344
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:168
1327
1345
  msgid "Remove a content view from an environment"
1328
1346
  msgstr ""
1329
1347
 
1330
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:163
1348
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:170
1331
1349
  msgid "environment numeric identifier"
1332
1350
  msgstr ""
1333
1351
 
1334
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:166
1352
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:173
1335
1353
  msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
1336
1354
  msgstr ""
1337
1355
 
1338
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:174
1356
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:181
1339
1357
  msgid ""
1340
1358
  "Remove versions and/or environments from a content view and reassign systems a"
1341
1359
  "nd keys"
1342
1360
  msgstr ""
1343
1361
 
1344
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:176
1362
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:183
1345
1363
  msgid "environment numeric identifiers to be removed"
1346
1364
  msgstr ""
1347
1365
 
1348
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:177
1366
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:184
1349
1367
  msgid "content view version identifiers to be deleted"
1350
1368
  msgstr ""
1351
1369
 
1352
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:178
1370
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:185
1353
1371
  msgid "content view to reassign orphaned systems to"
1354
1372
  msgstr ""
1355
1373
 
1356
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:179
1374
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:186
1357
1375
  msgid "environment to reassign orphaned systems to"
1358
1376
  msgstr ""
1359
1377
 
1360
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:180
1378
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:187
1361
1379
  msgid "content view to reassign orphaned activation keys to"
1362
1380
  msgstr ""
1363
1381
 
1364
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:181
1382
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:188
1365
1383
  msgid "environment to reassign orphaned activation keys to"
1366
1384
  msgstr ""
1367
1385
 
1368
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:189
1386
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:196
1369
1387
  msgid ""
1370
1388
  "There either were no environments nor versions specified or there were invalid"
1371
1389
  " environments/versions specified. Please check environment_ids and content_vie"
1372
1390
  "w_version_ids parameters."
1373
1391
  msgstr ""
1374
1392
 
1375
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:205
1393
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:212
1376
1394
  msgid "Delete a content view"
1377
1395
  msgstr ""
1378
1396
 
1379
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:212
1397
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:219
1380
1398
  msgid "Make copy of a content view"
1381
1399
  msgstr ""
1382
1400
 
1383
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:213
1401
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:220
1384
1402
  msgid "Content view numeric identifier"
1385
1403
  msgstr ""
1386
1404
 
1387
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:214
1405
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:221
1388
1406
  msgid "New content view name"
1389
1407
  msgstr ""
1390
1408
 
1391
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:226
1409
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:233
1392
1410
  msgid "The default content view cannot be edited, published, or deleted."
1393
1411
  msgstr ""
1394
1412
 
1395
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:249
1413
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:256
1396
1414
  msgid "Always Use Latest (currently %{version})"
1397
1415
  msgstr ""
1398
1416
 
@@ -1441,7 +1459,7 @@ msgid "ID of the environment"
1441
1459
  msgstr ""
1442
1460
 
1443
1461
  #: ../app/controllers/katello/api/v2/environments_controller.rb:68
1444
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:42
1462
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:44
1445
1463
  #: ../app/controllers/katello/api/v2/products_controller.rb:76
1446
1464
  msgid "ID of the organization"
1447
1465
  msgstr ""
@@ -1545,8 +1563,8 @@ msgstr ""
1545
1563
  #: ../app/controllers/katello/api/v2/errata_controller.rb:15
1546
1564
  #: ../app/controllers/katello/api/v2/errata_controller.rb:69
1547
1565
  #: ../app/controllers/katello/api/v2/packages_controller.rb:36
1548
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:256
1549
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:298
1566
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:257
1567
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:299
1550
1568
  #: ../app/controllers/katello/api/v2/srpms_controller.rb:8
1551
1569
  msgid "Repository identifier"
1552
1570
  msgstr ""
@@ -1637,7 +1655,7 @@ msgid "gpg key numeric identifier"
1637
1655
  msgstr ""
1638
1656
 
1639
1657
  #: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:61
1640
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:327
1658
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:328
1641
1659
  msgid "Update a repository"
1642
1660
  msgstr ""
1643
1661
 
@@ -1978,7 +1996,7 @@ msgid "List of hypervisor guest uuids"
1978
1996
  msgstr ""
1979
1997
 
1980
1998
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:25
1981
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:72
1999
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:74
1982
2000
  msgid "List of products installed on the host"
1983
2001
  msgstr ""
1984
2002
 
@@ -1987,137 +2005,143 @@ msgid "List a host's subscriptions"
1987
2005
  msgstr ""
1988
2006
 
1989
2007
  #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:36
1990
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:49
1991
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:60
1992
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:113
1993
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:131
1994
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:165
2008
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:51
2009
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:62
2010
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:115
2011
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:133
2012
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:171
1995
2013
  msgid "Id of the host"
1996
2014
  msgstr ""
1997
2015
 
1998
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:48
2016
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:50
1999
2017
  msgid "Trigger an auto-attach of subscriptions"
2000
2018
  msgstr ""
2001
2019
 
2002
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:52
2020
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:54
2003
2021
  msgid ""
2004
2022
  "This host's organization is in Simple Content Access mode. Auto-attach is disa"
2005
2023
  "bled"
2006
2024
  msgstr ""
2007
2025
 
2008
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:59
2026
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:61
2009
2027
  msgid "Unregister the host as a subscription consumer"
2010
2028
  msgstr ""
2011
2029
 
2012
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:67
2030
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:69
2013
2031
  msgid "Register a host with subscription and information"
2014
2032
  msgstr ""
2015
2033
 
2016
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:68
2034
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:70
2017
2035
  msgid "Name of the host"
2018
2036
  msgstr ""
2019
2037
 
2020
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:69
2038
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:71
2021
2039
  msgid "UUID to use for registered host, random uuid is generated if not provided"
2022
2040
  msgstr ""
2023
2041
 
2024
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:70
2042
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:72
2025
2043
  msgid ""
2026
2044
  "Key-value hash of subscription-manager facts, nesting uses a period delimiter "
2027
2045
  "(.)"
2028
2046
  msgstr ""
2029
2047
 
2030
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:71
2048
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:73
2031
2049
  msgid "UUIDs of the virtual guests from the host's hypervisor"
2032
2050
  msgstr ""
2033
2051
 
2034
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:75
2052
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:77
2035
2053
  msgid "Release version of the content host"
2036
2054
  msgstr ""
2037
2055
 
2038
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:76
2056
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:78
2039
2057
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
2040
2058
  msgstr ""
2041
2059
 
2042
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:77
2060
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:79
2043
2061
  msgid "Lifecycle Environment ID"
2044
2062
  msgstr ""
2045
2063
 
2046
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:78
2064
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:80
2047
2065
  msgid "Content View ID"
2048
2066
  msgstr ""
2049
2067
 
2050
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:114
2051
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:154
2068
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:116
2069
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:156
2052
2070
  msgid "Array of subscriptions to remove"
2053
2071
  msgstr ""
2054
2072
 
2055
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:115
2056
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:133
2057
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:155
2058
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:172
2073
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:117
2074
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:135
2075
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:157
2076
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:174
2059
2077
  msgid "Subscription Pool id"
2060
2078
  msgstr ""
2061
2079
 
2062
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:116
2080
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:118
2063
2081
  msgid ""
2064
2082
  "If specified, remove the first instance of a subscription with matching id and"
2065
2083
  " quantity"
2066
2084
  msgstr ""
2067
2085
 
2068
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:130
2086
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:132
2069
2087
  msgid "Add a subscription to a host"
2070
2088
  msgstr ""
2071
2089
 
2072
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:145
2090
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:140
2091
+ msgid ""
2092
+ "This host's organization is in Simple Content Access mode. Attaching subscript"
2093
+ "ions is disabled."
2094
+ msgstr ""
2095
+
2096
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:151
2073
2097
  msgid "Set content overrides for the host"
2074
2098
  msgstr ""
2075
2099
 
2076
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:146
2100
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:152
2077
2101
  msgid "Id of the content host"
2078
2102
  msgstr ""
2079
2103
 
2080
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:147
2104
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:153
2081
2105
  msgid "Override to a boolean value or 'default'"
2082
2106
  msgstr ""
2083
2107
 
2084
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:148
2085
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:193
2108
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:154
2109
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:199
2086
2110
  msgid "Array of Content override parameters"
2087
2111
  msgstr ""
2088
2112
 
2089
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:151
2090
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:196
2113
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:157
2114
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:202
2091
2115
  msgid ""
2092
2116
  "Override key or name. Note if name is not provided the default name will be 'e"
2093
2117
  "nabled'"
2094
2118
  msgstr ""
2095
2119
 
2096
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:164
2120
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:170
2097
2121
  msgid "Get content and overrides for the host"
2098
2122
  msgstr ""
2099
2123
 
2100
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:167
2124
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:173
2101
2125
  msgid "Limit content to just that available in the host's content view version"
2102
2126
  msgstr ""
2103
2127
 
2104
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:183
2128
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:189
2105
2129
  msgid "Show releases available for the content host"
2106
2130
  msgstr ""
2107
2131
 
2108
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:184
2132
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:190
2109
2133
  msgid "id of host"
2110
2134
  msgstr ""
2111
2135
 
2112
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:195
2136
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:201
2113
2137
  msgid "Couldn't find specified Content View and Lifecycle Environment."
2114
2138
  msgstr ""
2115
2139
 
2116
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:199
2140
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:205
2117
2141
  msgid "subscriptions not specified"
2118
2142
  msgstr ""
2119
2143
 
2120
- #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:216
2144
+ #: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:222
2121
2145
  msgid "unknown permission for %s"
2122
2146
  msgstr ""
2123
2147
 
@@ -2133,148 +2157,152 @@ msgstr ""
2133
2157
  msgid "Array of Trace IDs"
2134
2158
  msgstr ""
2135
2159
 
2136
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:44
2160
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:46
2137
2161
  msgid "Search string for hosts to perform an action on"
2138
2162
  msgstr ""
2139
2163
 
2140
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:53
2164
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:55
2141
2165
  msgid "Add one or more host collections to one or more hosts"
2142
2166
  msgstr ""
2143
2167
 
2144
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:55
2145
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:78
2168
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:57
2169
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:80
2146
2170
  msgid "List of host collection ids"
2147
2171
  msgstr ""
2148
2172
 
2149
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:66
2173
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:68
2150
2174
  msgid ""
2151
2175
  "Successfully added %{count} content host(s) to host collection %{host_collecti"
2152
2176
  "on}."
2153
2177
  msgstr ""
2154
2178
 
2155
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:76
2179
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:78
2156
2180
  msgid "Remove one or more host collections from one or more hosts"
2157
2181
  msgstr ""
2158
2182
 
2159
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:89
2183
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:91
2160
2184
  msgid ""
2161
2185
  "Successfully removed %{count} content host(s) from host collection %{host_coll"
2162
2186
  "ection}."
2163
2187
  msgstr ""
2164
2188
 
2165
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:99
2189
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:101
2166
2190
  msgid "Fetch applicable errata for one or more hosts."
2167
2191
  msgstr ""
2168
2192
 
2169
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:107
2193
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:109
2170
2194
  msgid "Fetch installable errata for one or more hosts."
2171
2195
  msgstr ""
2172
2196
 
2173
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:114
2197
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:116
2174
2198
  msgid "Install content on one or more hosts"
2175
2199
  msgstr ""
2176
2200
 
2177
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:117
2201
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:119
2178
2202
  msgid ""
2179
2203
  "The type of content. The following types are supported: 'package', 'package_g"
2180
2204
  "roup' and 'errata'."
2181
2205
  msgstr ""
2182
2206
 
2183
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:119
2207
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:121
2184
2208
  msgid "List of content (e.g. package names, package group names or errata ids)"
2185
2209
  msgstr ""
2186
2210
 
2187
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:124
2211
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:126
2188
2212
  msgid "Update content on one or more hosts"
2189
2213
  msgstr ""
2190
2214
 
2191
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:127
2192
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:138
2215
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:129
2216
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:140
2193
2217
  msgid ""
2194
2218
  "The type of content. The following types are supported: 'package' and 'packag"
2195
2219
  "e_group."
2196
2220
  msgstr ""
2197
2221
 
2198
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:129
2199
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:140
2222
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:131
2223
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:142
2200
2224
  msgid "List of content (e.g. package or package group names)"
2201
2225
  msgstr ""
2202
2226
 
2203
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:130
2227
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:132
2204
2228
  msgid "Updates all packages on the host(s)"
2205
2229
  msgstr ""
2206
2230
 
2207
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:135
2231
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:137
2208
2232
  msgid "Remove content on one or more hosts"
2209
2233
  msgstr ""
2210
2234
 
2211
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:145
2235
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:147
2212
2236
  msgid "Destroy one or more hosts"
2213
2237
  msgstr ""
2214
2238
 
2215
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:152
2239
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:154
2216
2240
  msgid "Remove subscriptions from one or more hosts"
2217
2241
  msgstr ""
2218
2242
 
2219
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:156
2243
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:158
2220
2244
  msgid "Quantity of specified subscription to remove"
2221
2245
  msgstr ""
2222
2246
 
2223
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:169
2247
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:171
2224
2248
  msgid "Add subscriptions to one or more hosts"
2225
2249
  msgstr ""
2226
2250
 
2227
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:184
2251
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:190
2228
2252
  msgid "Trigger an auto-attach of subscriptions on one or more hosts"
2229
2253
  msgstr ""
2230
2254
 
2231
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:191
2255
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:197
2232
2256
  msgid "Set content overrides to one or more hosts"
2233
2257
  msgstr ""
2234
2258
 
2235
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:209
2259
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:215
2236
2260
  msgid "Assign the environment and content view to one or more hosts"
2237
2261
  msgstr ""
2238
2262
 
2239
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:218
2263
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:224
2240
2264
  msgid "Assign the release version to one or more hosts"
2241
2265
  msgstr ""
2242
2266
 
2243
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:226
2267
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:232
2244
2268
  msgid "Fetch traces for one or more hosts"
2245
2269
  msgstr ""
2246
2270
 
2247
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:233
2271
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:239
2248
2272
  msgid ""
2249
2273
  "Given a set of hosts and errata, lists the content view versions and environme"
2250
2274
  "nts that need updating."
2251
2275
  msgstr ""
2252
2276
 
2253
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:236
2277
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:242
2254
2278
  msgid "List of Errata ids"
2255
2279
  msgstr ""
2256
2280
 
2257
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:262
2281
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:268
2258
2282
  msgid "Fetch available module streams for hosts."
2259
2283
  msgstr ""
2260
2284
 
2261
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:279
2285
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:285
2262
2286
  msgid "Could not find all specified errata ids: %s"
2263
2287
  msgstr ""
2264
2288
 
2265
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:310
2289
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:305
2290
+ msgid "Organization ID is required"
2291
+ msgstr ""
2292
+
2293
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:320
2266
2294
  msgid "Maximum number of content hosts exceeded for host collection(s): %s"
2267
2295
  msgstr ""
2268
2296
 
2269
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:333
2297
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:343
2270
2298
  msgid "A content_type must be provided."
2271
2299
  msgstr ""
2272
2300
 
2273
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:334
2301
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:344
2274
2302
  msgid "No content has been provided."
2275
2303
  msgstr ""
2276
2304
 
2277
- #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:337
2305
+ #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:347
2278
2306
  msgid "Invalid content type %s"
2279
2307
  msgstr ""
2280
2308
 
@@ -2381,7 +2409,7 @@ msgid "Update organization"
2381
2409
  msgstr ""
2382
2410
 
2383
2411
  #: ../app/controllers/katello/api/v2/organizations_controller.rb:59
2384
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:167
2412
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:163
2385
2413
  msgid "Red Hat CDN URL"
2386
2414
  msgstr ""
2387
2415
 
@@ -2396,7 +2424,7 @@ msgstr ""
2396
2424
  #: ../app/controllers/katello/api/v2/organizations_controller.rb:85
2397
2425
  #: ../app/controllers/katello/api/v2/organizations_controller.rb:92
2398
2426
  #: ../app/controllers/katello/api/v2/products_controller.rb:90
2399
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:264
2427
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:265
2400
2428
  #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:24
2401
2429
  #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:128
2402
2430
  #: ../app/controllers/katello/api/v2/sync_plans_controller.rb:21
@@ -2406,10 +2434,12 @@ msgstr ""
2406
2434
  #: ../app/controllers/katello/api/v2/sync_plans_controller.rb:82
2407
2435
  #: ../app/controllers/katello/api/v2/sync_plans_controller.rb:89
2408
2436
  #: ../app/controllers/katello/api/v2/sync_plans_controller.rb:100
2409
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:19
2410
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:36
2411
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:48
2412
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:61
2437
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:20
2438
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:37
2439
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:49
2440
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:62
2441
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:82
2442
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:90
2413
2443
  msgid "Organization ID"
2414
2444
  msgstr ""
2415
2445
 
@@ -2935,272 +2965,279 @@ msgstr ""
2935
2965
  msgid "ID of a HTTP Proxy"
2936
2966
  msgstr ""
2937
2967
 
2938
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:64
2939
- msgid "Product the repository belongs to"
2968
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:60
2969
+ msgid ""
2970
+ "if true, the repositories will be automatically enabled on a registered host s"
2971
+ "ubscribed to this product. Default: true"
2940
2972
  msgstr ""
2941
2973
 
2942
2974
  #: ../app/controllers/katello/api/v2/repositories_controller.rb:65
2975
+ msgid "Product the repository belongs to"
2976
+ msgstr ""
2977
+
2978
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:66
2943
2979
  msgid "type of repo"
2944
2980
  msgstr ""
2945
2981
 
2946
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:68
2982
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:69
2947
2983
  msgid "List of enabled repositories"
2948
2984
  msgstr ""
2949
2985
 
2950
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:69
2986
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:70
2951
2987
  msgid "List of repositories for a content view"
2952
2988
  msgstr ""
2953
2989
 
2954
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:70
2990
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:71
2955
2991
  msgid "List of repositories in an organization"
2956
2992
  msgstr ""
2957
2993
 
2958
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:71
2994
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:72
2959
2995
  msgid "List repositories in the environment"
2960
2996
  msgstr ""
2961
2997
 
2962
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:72
2998
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:73
2963
2999
  msgid "List of repositories for a product"
2964
3000
  msgstr ""
2965
3001
 
2966
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:73
3002
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:74
2967
3003
  msgid "List of repositories belonging to a product in an environment"
2968
3004
  msgstr ""
2969
3005
 
2970
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:74
3006
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:75
2971
3007
  msgid "ID of an organization to show repositories in"
2972
3008
  msgstr ""
2973
3009
 
2974
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:75
3010
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:76
2975
3011
  msgid "ID of a product to show repositories of"
2976
3012
  msgstr ""
2977
3013
 
2978
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:76
3014
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:77
2979
3015
  msgid "ID of an environment to show repositories in"
2980
3016
  msgstr ""
2981
3017
 
2982
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:77
3018
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:78
2983
3019
  msgid "ID of a content view to show repositories in"
2984
3020
  msgstr ""
2985
3021
 
2986
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:78
3022
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:79
2987
3023
  msgid "ID of a content view version to show repositories in"
2988
3024
  msgstr ""
2989
3025
 
2990
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:79
3026
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:80
2991
3027
  msgid "Id of a deb package to find repositories that contain the deb"
2992
3028
  msgstr ""
2993
3029
 
2994
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:80
3030
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:81
2995
3031
  msgid "Id of an erratum to find repositories that contain the erratum"
2996
3032
  msgstr ""
2997
3033
 
2998
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:81
3034
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:82
2999
3035
  msgid "Id of a rpm package to find repositories that contain the rpm"
3000
3036
  msgstr ""
3001
3037
 
3002
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:82
3038
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:83
3003
3039
  msgid "Id of a file to find repositories that contain the file"
3004
3040
  msgstr ""
3005
3041
 
3006
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:83
3042
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:84
3007
3043
  msgid ""
3008
3044
  "Id of an ansible collection to find repositories that contain the ansible coll"
3009
3045
  "ection"
3010
3046
  msgstr ""
3011
3047
 
3012
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:84
3048
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:85
3013
3049
  msgid "Id of an ostree branch to find repositories that contain that branch"
3014
3050
  msgstr ""
3015
3051
 
3016
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:85
3052
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:86
3017
3053
  msgid "show repositories in Library and the default content view"
3018
3054
  msgstr ""
3019
3055
 
3020
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:86
3056
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:87
3021
3057
  msgid "show archived repositories"
3022
3058
  msgstr ""
3023
3059
 
3024
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:87
3060
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:88
3025
3061
  msgid "limit to only repositories of this type"
3026
3062
  msgstr ""
3027
3063
 
3028
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:88
3064
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:89
3029
3065
  msgid "name of the repository"
3030
3066
  msgstr ""
3031
3067
 
3032
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:89
3068
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:90
3033
3069
  msgid "label of the repository"
3034
3070
  msgstr ""
3035
3071
 
3036
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:90
3072
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:91
3073
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:331
3037
3074
  msgid "description of the repository"
3038
3075
  msgstr ""
3039
3076
 
3040
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:91
3077
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:92
3041
3078
  msgid ""
3042
3079
  "interpret specified object to return only Repositories that can be associated "
3043
3080
  "with specified object. Only 'content_view' & 'content_view_version' are suppo"
3044
3081
  "rted."
3045
3082
  msgstr ""
3046
3083
 
3047
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:93
3084
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:94
3048
3085
  msgid ""
3049
3086
  "only repositories having at least one of the specified content type ex: rpm , "
3050
3087
  "erratum"
3051
3088
  msgstr ""
3052
3089
 
3053
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:211
3090
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:212
3054
3091
  msgid "Create a custom repository"
3055
3092
  msgstr ""
3056
3093
 
3057
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:212
3094
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:213
3058
3095
  msgid "Name of the repository"
3059
3096
  msgstr ""
3060
3097
 
3061
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:213
3098
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:214
3062
3099
  msgid "Description of the repository"
3063
3100
  msgstr ""
3064
3101
 
3065
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:219
3102
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:220
3066
3103
  msgid "Invalid params provided - content_type must be one of %s"
3067
3104
  msgstr ""
3068
3105
 
3069
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:247
3106
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:248
3070
3107
  msgid "Show the available repository types"
3071
3108
  msgstr ""
3072
3109
 
3073
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:248
3110
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:249
3074
3111
  msgid "When set to 'True' repository types that are creatable will be returned"
3075
3112
  msgstr ""
3076
3113
 
3077
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:255
3114
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:256
3078
3115
  msgid ""
3079
3116
  "Forces a republish of the specified repository, regenerating metadata and syml"
3080
3117
  "inks on the filesystem."
3081
3118
  msgstr ""
3082
3119
 
3083
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:262
3120
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:263
3084
3121
  msgid "Show a repository"
3085
3122
  msgstr ""
3086
3123
 
3087
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:263
3088
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:270
3089
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:328
3090
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:361
3124
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:264
3125
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:271
3126
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:329
3127
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:363
3091
3128
  msgid "repository ID"
3092
3129
  msgstr ""
3093
3130
 
3094
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:269
3131
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:270
3095
3132
  msgid "Sync a repository"
3096
3133
  msgstr ""
3097
3134
 
3098
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:271
3135
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:272
3099
3136
  msgid "temporarily override feed URL for sync"
3100
3137
  msgstr ""
3101
3138
 
3102
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:272
3139
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:273
3103
3140
  msgid "perform an incremental import"
3104
3141
  msgstr ""
3105
3142
 
3106
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:273
3143
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:274
3107
3144
  msgid ""
3108
3145
  "Force sync even if no upstream changes are detected. Only used with yum reposi"
3109
3146
  "tories."
3110
3147
  msgstr ""
3111
3148
 
3112
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:274
3149
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:275
3113
3150
  msgid ""
3114
3151
  "Force a sync and validate the checksums of all content. Only used with yum rep"
3115
3152
  "ositories."
3116
3153
  msgstr ""
3117
3154
 
3118
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:284
3155
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:285
3119
3156
  msgid "source URL is malformed"
3120
3157
  msgstr ""
3121
3158
 
3122
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:288
3159
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:289
3123
3160
  msgid "attempted to sync without a feed URL"
3124
3161
  msgstr ""
3125
3162
 
3126
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:297
3163
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:298
3127
3164
  msgid "Export a repository"
3128
3165
  msgstr ""
3129
3166
 
3130
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:315
3167
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:316
3131
3168
  msgid "Repository content type must be 'yum' to export."
3132
3169
  msgstr ""
3133
3170
 
3134
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:317
3171
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:318
3135
3172
  msgid "On demand repositories cannot be exported."
3136
3173
  msgstr ""
3137
3174
 
3138
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:338
3175
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:340
3139
3176
  msgid "Destroy a custom repository"
3140
3177
  msgstr ""
3141
3178
 
3142
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:353
3143
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:391
3179
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:355
3180
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:393
3144
3181
  msgid "Whether or not to sync an external capsule after upload. Default: true"
3145
3182
  msgstr ""
3146
3183
 
3147
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:356
3184
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:358
3148
3185
  msgid "No content ids provided"
3149
3186
  msgstr ""
3150
3187
 
3151
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:360
3188
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:362
3152
3189
  msgid "Upload content into the repository"
3153
3190
  msgstr ""
3154
3191
 
3155
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:362
3192
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:364
3156
3193
  msgid "Content files to upload. Can be a single file or array of files."
3157
3194
  msgstr ""
3158
3195
 
3159
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:365
3196
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:367
3160
3197
  msgid "Cannot upload Container Image content."
3161
3198
  msgstr ""
3162
3199
 
3163
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:387
3200
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:389
3164
3201
  msgid "Import uploads into a repository"
3165
3202
  msgstr ""
3166
3203
 
3167
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:389
3204
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:391
3168
3205
  msgid "Do not wait for the ImportUpload action to finish. Default: false"
3169
3206
  msgstr ""
3170
3207
 
3171
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:390
3208
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:392
3172
3209
  msgid "Whether or not to regenerate the repository on disk. Default: true"
3173
3210
  msgstr ""
3174
3211
 
3175
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:393
3212
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:395
3176
3213
  msgid "Array of uploads to import"
3177
3214
  msgstr ""
3178
3215
 
3179
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:398
3216
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:400
3180
3217
  msgid "Needs to only be set for file repositories or docker tags"
3181
3218
  msgstr ""
3182
3219
 
3183
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:399
3220
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:401
3184
3221
  msgid "Needs to only be set for docker tags"
3185
3222
  msgstr ""
3186
3223
 
3187
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:406
3224
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:408
3188
3225
  msgid "No uploads param specified. An array of uploads to import is required."
3189
3226
  msgstr ""
3190
3227
 
3191
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:426
3228
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:428
3192
3229
  msgid "Return the content of a repo gpg key, used directly by yum"
3193
3230
  msgstr ""
3194
3231
 
3195
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:459
3232
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:461
3196
3233
  msgid "Couldn't find %{content_type} with id '%{id}'"
3197
3234
  msgstr ""
3198
3235
 
3199
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:533
3236
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:536
3200
3237
  msgid "Red Hat products cannot be manipulated."
3201
3238
  msgstr ""
3202
3239
 
3203
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:537
3240
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:540
3204
3241
  msgid "Red Hat repositories cannot be manipulated."
3205
3242
  msgstr ""
3206
3243
 
@@ -3520,74 +3557,86 @@ msgstr ""
3520
3557
  msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
3521
3558
  msgstr ""
3522
3559
 
3523
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:12
3560
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:13
3524
3561
  msgid "Number of results per page to return."
3525
3562
  msgstr ""
3526
3563
 
3527
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:13
3564
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:14
3528
3565
  msgid "The order to sort the results in. ['asc', 'desc'] Defaults to 'desc'."
3529
3566
  msgstr ""
3530
3567
 
3531
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:14
3568
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:15
3532
3569
  msgid "The field to sort the data by. Defaults to the created date."
3533
3570
  msgstr ""
3534
3571
 
3535
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:18
3572
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:19
3536
3573
  msgid "List available subscriptions from Red Hat Subscription Management"
3537
3574
  msgstr ""
3538
3575
 
3539
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:21
3576
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:22
3540
3577
  msgid "Return only the upstream pools which map to the given Katello pool IDs"
3541
3578
  msgstr ""
3542
3579
 
3543
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:22
3580
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:23
3544
3581
  msgid "Only returns id and quantity fields"
3545
3582
  msgstr ""
3546
3583
 
3547
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:23
3584
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:24
3548
3585
  msgid "Return only subscriptions which can be attached to the upstream allocation"
3549
3586
  msgstr ""
3550
3587
 
3551
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:35
3588
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:36
3552
3589
  msgid "Update the quantity of one or more subscriptions on an upstream allocation"
3553
3590
  msgstr ""
3554
3591
 
3555
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:37
3592
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:38
3556
3593
  msgid "Array of Pools to be updated. Only pools originating upstream are accepted."
3557
3594
  msgstr ""
3558
3595
 
3559
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:38
3596
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:39
3560
3597
  msgid "Katello ID of local pool to update"
3561
3598
  msgstr ""
3562
3599
 
3563
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:39
3600
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:40
3564
3601
  msgid "Desired quantity of the pool"
3565
3602
  msgstr ""
3566
3603
 
3567
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:47
3604
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:48
3568
3605
  msgid "Remove one or more subscriptions from an upstream subscription allocation"
3569
3606
  msgstr ""
3570
3607
 
3571
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:49
3608
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:50
3572
3609
  msgid "Array of local pool IDs. Only pools originating upstream are accepted."
3573
3610
  msgstr ""
3574
3611
 
3575
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:56
3612
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:57
3576
3613
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
3577
3614
  msgstr ""
3578
3615
 
3579
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:57
3616
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:58
3580
3617
  msgid "Array of pools to add"
3581
3618
  msgstr ""
3582
3619
 
3583
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:58
3620
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:59
3584
3621
  msgid "Candlepin ID of pool to add"
3585
3622
  msgstr ""
3586
3623
 
3587
- #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:59
3624
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:60
3588
3625
  msgid "Quantity of entitlements to bind"
3589
3626
  msgstr ""
3590
3627
 
3628
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:70
3629
+ msgid "Check if a connection can be made to Red Hat Subscription Management."
3630
+ msgstr ""
3631
+
3632
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:81
3633
+ msgid "Enable simple content access for a manifest"
3634
+ msgstr ""
3635
+
3636
+ #: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:89
3637
+ msgid "Disable simple content access for a manifest"
3638
+ msgstr ""
3639
+
3591
3640
  #: ../app/controllers/katello/application_controller.rb:64
3592
3641
  msgid ""
3593
3642
  "Permission Denied. User '%{user}' does not have permissions to access organiza"
@@ -3606,6 +3655,18 @@ msgid ""
3606
3655
  "ving trouble with this, please contact an Administrator."
3607
3656
  msgstr ""
3608
3657
 
3658
+ #:
3659
+ #: ../app/controllers/katello/concerns/api/v2/associations_permission_check.rb:31
3660
+ msgid ""
3661
+ "One or more ids (%{ids}) were not found for %{assoc}. You may not have permis"
3662
+ "sions to see them."
3663
+ msgstr ""
3664
+
3665
+ #:
3666
+ #: ../app/controllers/katello/concerns/api/v2/associations_permission_check.rb:35
3667
+ msgid "Unfiltered params array: %s."
3668
+ msgstr ""
3669
+
3609
3670
  #: ../app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb:33
3610
3671
  msgid "No hosts have been specified."
3611
3672
  msgstr ""
@@ -3861,7 +3922,11 @@ msgstr ""
3861
3922
  msgid "Operators"
3862
3923
  msgstr ""
3863
3924
 
3864
- #: ../app/controllers/katello/concerns/hosts_controller_extensions.rb:25
3925
+ #: ../app/controllers/katello/concerns/hosts_controller_extensions.rb:24
3926
+ msgid "Unregister host %s before assigning an organization"
3927
+ msgstr ""
3928
+
3929
+ #: ../app/controllers/katello/concerns/hosts_controller_extensions.rb:36
3865
3930
  msgid "Failed to delete %{host}: %{errors}"
3866
3931
  msgstr ""
3867
3932
 
@@ -3931,12 +3996,12 @@ msgstr ""
3931
3996
  msgid "Inherit from Repository"
3932
3997
  msgstr ""
3933
3998
 
3934
- #: ../app/helpers/katello/hosts_and_hostgroups_helper.rb:256
3935
- #: ../lib/katello/plugin.rb:8 ../lib/katello/plugin.rb:260
3999
+ #: ../app/helpers/katello/hosts_and_hostgroups_helper.rb:255
4000
+ #: ../lib/katello/plugin.rb:8 ../lib/katello/plugin.rb:265
3936
4001
  msgid "Content"
3937
4002
  msgstr ""
3938
4003
 
3939
- #: ../app/helpers/katello/hosts_and_hostgroups_helper.rb:258
4004
+ #: ../app/helpers/katello/hosts_and_hostgroups_helper.rb:257
3940
4005
  msgid "Host content and subscription details"
3941
4006
  msgstr ""
3942
4007
 
@@ -4009,30 +4074,30 @@ msgstr ""
4009
4074
  #: ../app/lib/actions/katello/environment/library_create.rb:24
4010
4075
  #: ../app/lib/actions/katello/organization/create.rb:35
4011
4076
  #: ../app/lib/actions/katello/repository/create.rb:58
4012
- #: ../app/lib/actions/katello/repository/create_root.rb:17 action_names.rb:14
4077
+ #: ../app/lib/actions/katello/repository/create_root.rb:17 action_names.rb:6
4013
4078
  msgid "Create"
4014
4079
  msgstr ""
4015
4080
 
4016
- #: ../app/lib/actions/katello/activation_key/destroy.rb:19 action_names.rb:66
4081
+ #: ../app/lib/actions/katello/activation_key/destroy.rb:19 action_names.rb:7
4017
4082
  msgid "Delete Activation Key"
4018
4083
  msgstr ""
4019
4084
 
4020
4085
  #: ../app/lib/actions/katello/applicability/host/generate.rb:22
4021
- #: action_names.rb:65
4086
+ #: action_names.rb:9
4022
4087
  msgid "Generate host applicability"
4023
4088
  msgstr ""
4024
4089
 
4025
4090
  #: ../app/lib/actions/katello/applicability/hosts/bulk_generate.rb:26
4026
- #: action_names.rb:64
4091
+ #: action_names.rb:10
4027
4092
  msgid "Bulk generate applicability for hosts"
4028
4093
  msgstr ""
4029
4094
 
4030
4095
  #: ../app/lib/actions/katello/applicability/repository/regenerate.rb:25
4031
- #: action_names.rb:63
4096
+ #: action_names.rb:11
4032
4097
  msgid "Generate repository applicability"
4033
4098
  msgstr ""
4034
4099
 
4035
- #: ../app/lib/actions/katello/capsule_content/sync.rb:14 action_names.rb:62
4100
+ #: ../app/lib/actions/katello/capsule_content/sync.rb:14 action_names.rb:12
4036
4101
  msgid "Synchronize smart proxy"
4037
4102
  msgstr ""
4038
4103
 
@@ -4049,11 +4114,11 @@ msgstr ""
4049
4114
  #: ../app/lib/actions/katello/content_view_puppet_module/destroy.rb:41
4050
4115
  #: ../app/lib/actions/katello/provider/destroy.rb:19
4051
4116
  #: ../app/lib/actions/katello/repository/destroy.rb:61
4052
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:276
4053
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:295
4117
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:256
4118
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:275
4054
4119
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js:27
4055
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:77
4056
- #: action_names.rb:16
4120
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:102
4121
+ #: action_names.rb:14
4057
4122
  msgid "Delete"
4058
4123
  msgstr ""
4059
4124
 
@@ -4078,33 +4143,37 @@ msgstr ""
4078
4143
  msgid "Incremental Update of %{content_view_count} Content View Version(s) "
4079
4144
  msgstr ""
4080
4145
 
4081
- #: ../app/lib/actions/katello/content_view/incremental_updates.rb:95
4146
+ #: ../app/lib/actions/katello/content_view/incremental_updates.rb:96
4082
4147
  msgid "with"
4083
4148
  msgstr ""
4084
4149
 
4085
- #: ../app/lib/actions/katello/content_view/incremental_updates.rb:102
4150
+ #: ../app/lib/actions/katello/content_view/incremental_updates.rb:103
4086
4151
  msgid ", and"
4087
4152
  msgstr ""
4088
4153
 
4089
- #: ../app/lib/actions/katello/content_view/incremental_updates.rb:117
4154
+ #: ../app/lib/actions/katello/content_view/incremental_updates.rb:118
4090
4155
  msgid " %{errata_count} Errata"
4091
4156
  msgstr ""
4092
4157
 
4093
- #: ../app/lib/actions/katello/content_view/incremental_updates.rb:121
4158
+ #: ../app/lib/actions/katello/content_view/incremental_updates.rb:122
4159
+ msgid " %{modulemd_count} Module Stream(s)"
4160
+ msgstr ""
4161
+
4162
+ #: ../app/lib/actions/katello/content_view/incremental_updates.rb:126
4094
4163
  msgid " %{package_count} Package(s)"
4095
4164
  msgstr ""
4096
4165
 
4097
- #: ../app/lib/actions/katello/content_view/incremental_updates.rb:125
4166
+ #: ../app/lib/actions/katello/content_view/incremental_updates.rb:130
4098
4167
  msgid " %{puppet_module_count} Puppet Module(s)"
4099
4168
  msgstr ""
4100
4169
 
4101
4170
  #:
4102
- #: ../app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb:16
4171
+ #: ../app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb:17
4103
4172
  msgid "Incremental Update incomplete."
4104
4173
  msgstr ""
4105
4174
 
4106
4175
  #:
4107
- #: ../app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb:27
4176
+ #: ../app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb:28
4108
4177
  msgid "Added Content:"
4109
4178
  msgstr ""
4110
4179
 
@@ -4113,7 +4182,7 @@ msgid "Cannot promote environment out of sequence. Use force to bypass restricti
4113
4182
  msgstr ""
4114
4183
 
4115
4184
  #: ../app/lib/actions/katello/content_view/promote_to_environment.rb:38
4116
- #: action_names.rb:58
4185
+ #: action_names.rb:18
4117
4186
  msgid "Promotion to Environment"
4118
4187
  msgstr ""
4119
4188
 
@@ -4127,7 +4196,7 @@ msgid ""
4127
4196
  "arameter."
4128
4197
  msgstr ""
4129
4198
 
4130
- #: ../app/lib/actions/katello/content_view/publish.rb:72 action_names.rb:57
4199
+ #: ../app/lib/actions/katello/content_view/publish.rb:72 action_names.rb:19
4131
4200
  msgid "Publish"
4132
4201
  msgstr ""
4133
4202
 
@@ -4139,7 +4208,7 @@ msgstr ""
4139
4208
  msgid "Cannot delete version while it is in environment %s"
4140
4209
  msgstr ""
4141
4210
 
4142
- #: ../app/lib/actions/katello/content_view/remove.rb:86 action_names.rb:56
4211
+ #: ../app/lib/actions/katello/content_view/remove.rb:86 action_names.rb:20
4143
4212
  msgid "Remove Versions and Associations"
4144
4213
  msgstr ""
4145
4214
 
@@ -4166,12 +4235,12 @@ msgid ""
4166
4235
  msgstr ""
4167
4236
 
4168
4237
  #: ../app/lib/actions/katello/content_view/remove_from_environment.rb:35
4169
- #: action_names.rb:55
4238
+ #: action_names.rb:21
4170
4239
  msgid "Remove from Environment"
4171
4240
  msgstr ""
4172
4241
 
4173
4242
  #: ../app/lib/actions/katello/content_view/remove_version.rb:26
4174
- #: action_names.rb:54
4243
+ #: action_names.rb:22
4175
4244
  msgid "Remove Version"
4176
4245
  msgstr ""
4177
4246
 
@@ -4184,28 +4253,28 @@ msgid "Create Repositories"
4184
4253
  msgstr ""
4185
4254
 
4186
4255
  #: ../app/lib/actions/katello/content_view_version/export.rb:27
4187
- #: ../app/lib/actions/katello/repository/export.rb:63 action_names.rb:11
4256
+ #: ../app/lib/actions/katello/repository/export.rb:63 action_names.rb:23
4188
4257
  msgid "Export"
4189
4258
  msgstr ""
4190
4259
 
4191
4260
  #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:15
4192
- #: action_names.rb:53
4261
+ #: action_names.rb:24
4193
4262
  msgid "Incremental Update"
4194
4263
  msgstr ""
4195
4264
 
4196
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:218
4265
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:278
4197
4266
  msgid "Content View Version %{id} not in all specified environments %{envs}"
4198
4267
  msgstr ""
4199
4268
 
4200
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:225
4269
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:285
4201
4270
  msgid "Cannot specify content for composite views"
4202
4271
  msgstr ""
4203
4272
 
4204
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:228
4273
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:288
4205
4274
  msgid "Cannot specify components for non-composite views"
4206
4275
  msgstr ""
4207
4276
 
4208
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:236
4277
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:296
4209
4278
  msgid ""
4210
4279
  "No Version of Content View %{component} already exists as a component of the c"
4211
4280
  "omposite Content View %{composite} version %{version}"
@@ -4216,24 +4285,24 @@ msgid "Republish Repositories of %{name} %{version}"
4216
4285
  msgstr ""
4217
4286
 
4218
4287
  #: ../app/lib/actions/katello/content_view_version/republish_repositories.rb:31
4219
- #: action_names.rb:52
4288
+ #: action_names.rb:25
4220
4289
  msgid "Republish Version Repositories"
4221
4290
  msgstr ""
4222
4291
 
4223
- #: ../app/lib/actions/katello/environment/destroy.rb:36 action_names.rb:51
4292
+ #: ../app/lib/actions/katello/environment/destroy.rb:36 action_names.rb:26
4224
4293
  msgid "Delete Lifecycle Environment"
4225
4294
  msgstr ""
4226
4295
 
4227
4296
  #: ../app/lib/actions/katello/environment/publish_repositories.rb:33
4228
- #: action_names.rb:50
4297
+ #: action_names.rb:27
4229
4298
  msgid "Publish Lifecycle Environment Repositories"
4230
4299
  msgstr ""
4231
4300
 
4232
- #: ../app/lib/actions/katello/host/attach_subscriptions.rb:43
4233
- msgid "Attach subscriptions to %s"
4301
+ #: ../app/lib/actions/katello/host/attach_subscriptions.rb:13
4302
+ msgid "Register host '%s' before attaching subscriptions"
4234
4303
  msgstr ""
4235
4304
 
4236
- #: ../app/lib/actions/katello/host/attach_subscriptions.rb:43
4305
+ #: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
4237
4306
  #: ../app/lib/actions/katello/host/remove_subscriptions.rb:38
4238
4307
  #: ../app/lib/actions/katello/host/update_content_overrides.rb:30
4239
4308
  #: ../app/lib/actions/katello/sync_plan/run.rb:40
@@ -4243,8 +4312,12 @@ msgstr ""
4243
4312
  msgid "Unknown"
4244
4313
  msgstr ""
4245
4314
 
4246
- #: ../app/lib/actions/katello/host/attach_subscriptions.rb:45
4247
- #: action_names.rb:48
4315
+ #: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
4316
+ msgid "Attach subscriptions to %s"
4317
+ msgstr ""
4318
+
4319
+ #: ../app/lib/actions/katello/host/attach_subscriptions.rb:49
4320
+ #: action_names.rb:28
4248
4321
  msgid "Attach subscriptions"
4249
4322
  msgstr ""
4250
4323
 
@@ -4252,7 +4325,7 @@ msgstr ""
4252
4325
  msgid "Destroy Content Host %s"
4253
4326
  msgstr ""
4254
4327
 
4255
- #: ../app/lib/actions/katello/host/destroy.rb:32 action_names.rb:18
4328
+ #: ../app/lib/actions/katello/host/destroy.rb:32 action_names.rb:30
4256
4329
  msgid "Destroy Content Host"
4257
4330
  msgstr ""
4258
4331
 
@@ -4265,7 +4338,7 @@ msgid "No applicable errata for %s, skipping"
4265
4338
  msgstr ""
4266
4339
 
4267
4340
  #: ../app/lib/actions/katello/host/erratum/applicable_errata_install.rb:31
4268
- #: action_names.rb:47
4341
+ #: action_names.rb:31
4269
4342
  msgid "Install Applicable Errata"
4270
4343
  msgstr ""
4271
4344
 
@@ -4277,7 +4350,7 @@ msgstr ""
4277
4350
  msgid "Install erratum for %s"
4278
4351
  msgstr ""
4279
4352
 
4280
- #: ../app/lib/actions/katello/host/erratum/install.rb:32 action_names.rb:19
4353
+ #: ../app/lib/actions/katello/host/erratum/install.rb:32 action_names.rb:32
4281
4354
  msgid "Install erratum"
4282
4355
  msgstr ""
4283
4356
 
@@ -4293,7 +4366,7 @@ msgstr ""
4293
4366
  msgid "Install package for %s"
4294
4367
  msgstr ""
4295
4368
 
4296
- #: ../app/lib/actions/katello/host/package/install.rb:23 action_names.rb:20
4369
+ #: ../app/lib/actions/katello/host/package/install.rb:23 action_names.rb:35
4297
4370
  msgid "Install package"
4298
4371
  msgstr ""
4299
4372
 
@@ -4305,7 +4378,7 @@ msgstr ""
4305
4378
  msgid "Remove package for %s"
4306
4379
  msgstr ""
4307
4380
 
4308
- #: ../app/lib/actions/katello/host/package/remove.rb:21 action_names.rb:44
4381
+ #: ../app/lib/actions/katello/host/package/remove.rb:21 action_names.rb:36
4309
4382
  msgid "Remove package"
4310
4383
  msgstr ""
4311
4384
 
@@ -4317,7 +4390,7 @@ msgstr ""
4317
4390
  msgid "Update package for %s"
4318
4391
  msgstr ""
4319
4392
 
4320
- #: ../app/lib/actions/katello/host/package/update.rb:23 action_names.rb:21
4393
+ #: ../app/lib/actions/katello/host/package/update.rb:23 action_names.rb:37
4321
4394
  msgid "Update package"
4322
4395
  msgstr ""
4323
4396
 
@@ -4330,7 +4403,7 @@ msgid "Update of all packages requested"
4330
4403
  msgstr ""
4331
4404
 
4332
4405
  #: ../app/lib/actions/katello/host/package_group/install.rb:20
4333
- #: action_names.rb:22
4406
+ #: action_names.rb:38
4334
4407
  msgid "Install package group"
4335
4408
  msgstr ""
4336
4409
 
@@ -4339,7 +4412,7 @@ msgid "Installation of package group(s) requested: %{groups}"
4339
4412
  msgstr ""
4340
4413
 
4341
4414
  #: ../app/lib/actions/katello/host/package_group/remove.rb:18
4342
- #: action_names.rb:43
4415
+ #: action_names.rb:39
4343
4416
  msgid "Remove package group"
4344
4417
  msgstr ""
4345
4418
 
@@ -4356,7 +4429,7 @@ msgid "Remove subscriptions from %s"
4356
4429
  msgstr ""
4357
4430
 
4358
4431
  #: ../app/lib/actions/katello/host/remove_subscriptions.rb:40
4359
- #: action_names.rb:23
4432
+ #: action_names.rb:40
4360
4433
  msgid "Remove subscriptions"
4361
4434
  msgstr ""
4362
4435
 
@@ -4391,7 +4464,7 @@ msgid "Host %{name} cannot be assigned release version %{release_version}."
4391
4464
  msgstr ""
4392
4465
 
4393
4466
  #: ../app/lib/actions/katello/host/update_release_version.rb:21
4394
- #: action_names.rb:24
4467
+ #: action_names.rb:43
4395
4468
  msgid "Update release version for host"
4396
4469
  msgstr ""
4397
4470
 
@@ -4404,7 +4477,7 @@ msgid "Package Profile Update for %s"
4404
4477
  msgstr ""
4405
4478
 
4406
4479
  #: ../app/lib/actions/katello/host/upload_package_profile.rb:22
4407
- #: action_names.rb:40
4480
+ #: action_names.rb:44
4408
4481
  msgid "Package Profile Update"
4409
4482
  msgstr ""
4410
4483
 
@@ -4412,11 +4485,11 @@ msgstr ""
4412
4485
  msgid "Combined Profile Update for %s"
4413
4486
  msgstr ""
4414
4487
 
4415
- #: ../app/lib/actions/katello/host/upload_profiles.rb:24 action_names.rb:39
4488
+ #: ../app/lib/actions/katello/host/upload_profiles.rb:24 action_names.rb:45
4416
4489
  msgid "Combined Profile Update"
4417
4490
  msgstr ""
4418
4491
 
4419
- #: ../app/lib/actions/katello/organization/destroy.rb:30 action_names.rb:38
4492
+ #: ../app/lib/actions/katello/organization/destroy.rb:30 action_names.rb:46
4420
4493
  msgid "Destroy"
4421
4494
  msgstr ""
4422
4495
 
@@ -4444,11 +4517,19 @@ msgstr ""
4444
4517
  msgid "Manifest refreshed"
4445
4518
  msgstr ""
4446
4519
 
4520
+ #: ../app/lib/actions/katello/organization/simple_content_access/disable.rb:11
4521
+ msgid "Disable Simple Content Access"
4522
+ msgstr ""
4523
+
4524
+ #: ../app/lib/actions/katello/organization/simple_content_access/enable.rb:11
4525
+ msgid "Enable Simple Content Access"
4526
+ msgstr ""
4527
+
4447
4528
  #: ../app/lib/actions/katello/product/content_destroy.rb:6
4448
4529
  msgid "Cannot delete redhat product content"
4449
4530
  msgstr ""
4450
4531
 
4451
- #: ../app/lib/actions/katello/product/create.rb:38 action_names.rb:25
4532
+ #: ../app/lib/actions/katello/product/create.rb:38 action_names.rb:47
4452
4533
  msgid "Product Create"
4453
4534
  msgstr ""
4454
4535
 
@@ -4462,7 +4543,7 @@ msgid ""
4462
4543
  " %{product}, %{view_versions}"
4463
4544
  msgstr ""
4464
4545
 
4465
- #: ../app/lib/actions/katello/product/destroy.rb:61 action_names.rb:17
4546
+ #: ../app/lib/actions/katello/product/destroy.rb:61 action_names.rb:48
4466
4547
  msgid "Delete Product"
4467
4548
  msgstr ""
4468
4549
 
@@ -4480,8 +4561,8 @@ msgid "Cannot delete provider with attached products"
4480
4561
  msgstr ""
4481
4562
 
4482
4563
  #: ../app/lib/actions/katello/provider/update.rb:12
4483
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:186
4484
- #: action_names.rb:2
4564
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:182
4565
+ #: action_names.rb:8
4485
4566
  msgid "Update"
4486
4567
  msgstr ""
4487
4568
 
@@ -4498,7 +4579,7 @@ msgid "Cannot publish a link repository if multiple component clones are specifi
4498
4579
  msgstr ""
4499
4580
 
4500
4581
  #: ../app/lib/actions/katello/repository/destroy_package_group.rb:21
4501
- #: action_names.rb:12
4582
+ #: action_names.rb:50
4502
4583
  msgid "Delete Package Group"
4503
4584
  msgstr ""
4504
4585
 
@@ -4515,7 +4596,7 @@ msgid ""
4515
4596
  msgstr ""
4516
4597
 
4517
4598
  #: ../app/lib/actions/katello/repository/import_upload.rb:57
4518
- #: ../app/lib/actions/katello/repository/upload_files.rb:45 action_names.rb:5
4599
+ #: ../app/lib/actions/katello/repository/upload_files.rb:45 action_names.rb:54
4519
4600
  msgid "Upload into"
4520
4601
  msgstr ""
4521
4602
 
@@ -4527,7 +4608,8 @@ msgstr ""
4527
4608
  msgid "Can only remove content from within the Default Content View"
4528
4609
  msgstr ""
4529
4610
 
4530
- #: ../app/lib/actions/katello/repository/remove_content.rb:56 action_names.rb:8
4611
+ #: ../app/lib/actions/katello/repository/remove_content.rb:56
4612
+ #: action_names.rb:60
4531
4613
  msgid "Remove Content"
4532
4614
  msgstr ""
4533
4615
 
@@ -4551,7 +4633,7 @@ msgstr ""
4551
4633
  msgid "Synchronize: Skip Metadata Check"
4552
4634
  msgstr ""
4553
4635
 
4554
- #: ../app/lib/actions/katello/repository/sync.rb:87 action_names.rb:33
4636
+ #: ../app/lib/actions/katello/repository/sync.rb:87 action_names.rb:61
4555
4637
  msgid "Synchronize"
4556
4638
  msgstr ""
4557
4639
 
@@ -4559,18 +4641,18 @@ msgstr ""
4559
4641
  msgid "Updating repository authentication configuration"
4560
4642
  msgstr ""
4561
4643
 
4562
- #: ../app/lib/actions/katello/repository/upload_errata.rb:33 action_names.rb:35
4644
+ #: ../app/lib/actions/katello/repository/upload_errata.rb:33 action_names.rb:67
4563
4645
  msgid "Upload errata into"
4564
4646
  msgstr ""
4565
4647
 
4566
4648
  #: ../app/lib/actions/katello/repository/upload_package_group.rb:28
4567
- #: action_names.rb:36
4649
+ #: action_names.rb:68
4568
4650
  msgid "Create Package Group"
4569
4651
  msgstr ""
4570
4652
 
4571
4653
  #: ../app/lib/actions/katello/repository_set/disable_repository.rb:6
4572
4654
  #: ../webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepositoryContent.js:10
4573
- #: action_names.rb:3
4655
+ #: action_names.rb:64
4574
4656
  msgid "Disable"
4575
4657
  msgstr ""
4576
4658
 
@@ -4579,7 +4661,7 @@ msgid "Repository not found"
4579
4661
  msgstr ""
4580
4662
 
4581
4663
  #: ../app/lib/actions/katello/repository_set/enable_repository.rb:6
4582
- #: action_names.rb:4
4664
+ #: action_names.rb:65
4583
4665
  msgid "Enable"
4584
4666
  msgstr ""
4585
4667
 
@@ -4587,7 +4669,7 @@ msgstr ""
4587
4669
  msgid "The repository is already enabled"
4588
4670
  msgstr ""
4589
4671
 
4590
- #: ../app/lib/actions/katello/sync_plan/run.rb:36 action_names.rb:37
4672
+ #: ../app/lib/actions/katello/sync_plan/run.rb:36 action_names.rb:69
4591
4673
  msgid "Run Sync Plan:"
4592
4674
  msgstr ""
4593
4675
 
@@ -4801,7 +4883,7 @@ msgid "Group %{id} already created."
4801
4883
  msgstr ""
4802
4884
 
4803
4885
  #: ../app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb:15
4804
- msgid "Total tasks: "
4886
+ msgid "Total steps: "
4805
4887
  msgstr ""
4806
4888
 
4807
4889
  #: ../app/lib/katello/errors.rb:38
@@ -4809,37 +4891,58 @@ msgid "Host collection is empty."
4809
4891
  msgstr ""
4810
4892
 
4811
4893
  #: ../app/lib/katello/errors.rb:44
4812
- msgid "No hosts registered with subscription-manager found in selection."
4894
+ msgid "Content host must be unregistered before performing this action."
4813
4895
  msgstr ""
4814
4896
 
4815
4897
  #: ../app/lib/katello/errors.rb:50
4898
+ msgid "No hosts registered with subscription-manager found in selection."
4899
+ msgstr ""
4900
+
4901
+ #: ../app/lib/katello/errors.rb:56
4816
4902
  msgid ""
4817
4903
  "A smart proxy seems to have been refreshed without pulpcore being running. Yo"
4818
4904
  "u may want to "
4819
4905
  msgstr ""
4820
4906
 
4821
- #: ../app/lib/katello/errors.rb:81
4907
+ #: ../app/lib/katello/errors.rb:87
4822
4908
  msgid "No errors"
4823
4909
  msgstr ""
4824
4910
 
4825
- #: ../app/lib/katello/errors.rb:112 ../app/lib/katello/errors.rb:134
4911
+ #: ../app/lib/katello/errors.rb:118 ../app/lib/katello/errors.rb:140
4826
4912
  msgid "Task canceled"
4827
4913
  msgstr ""
4828
4914
 
4829
- #: ../app/lib/katello/errors.rb:115 ../app/lib/katello/errors.rb:136
4915
+ #: ../app/lib/katello/errors.rb:121 ../app/lib/katello/errors.rb:142
4830
4916
  msgid "Pulp task error"
4831
4917
  msgstr ""
4832
4918
 
4833
- #: ../app/lib/katello/errors.rb:145
4919
+ #: ../app/lib/katello/errors.rb:151
4834
4920
  msgid ""
4835
4921
  "The Subscription Allocation providing the imported manifest has been removed. "
4836
4922
  "Please create a new Subscription Allocation and import the new manifest."
4837
4923
  msgstr ""
4838
4924
 
4839
- #: ../app/lib/katello/errors.rb:154
4925
+ #: ../app/lib/katello/errors.rb:160
4840
4926
  msgid "No URL found for a container registry. Please check the configuration."
4841
4927
  msgstr ""
4842
4928
 
4929
+ #: ../app/lib/katello/errors.rb:166
4930
+ msgid ""
4931
+ "You are currently operating in disconnected mode where access to Red Hat Subcr"
4932
+ "iption Management is prohibited. If you would like to change this, please upda"
4933
+ "te the content setting 'Disconnected mode'."
4934
+ msgstr ""
4935
+
4936
+ #: ../app/lib/katello/errors.rb:173
4937
+ msgid "Current organization has no manifest imported."
4938
+ msgstr ""
4939
+
4940
+ #: ../app/lib/katello/errors.rb:179
4941
+ msgid ""
4942
+ "This Organization's subscription manifest has expired. Please import a new man"
4943
+ "ifest."
4944
+ msgstr ""
4945
+
4843
4946
  #: ../app/lib/katello/http_resource.rb:93
4844
4947
  #: ../app/lib/katello/http_resource.rb:107
4845
4948
  #: ../app/lib/katello/http_resource.rb:121
@@ -4861,10 +4964,6 @@ msgstr ""
4861
4964
  msgid "Current organization not set."
4862
4965
  msgstr ""
4863
4966
 
4864
- #: ../app/lib/katello/resources/candlepin.rb:145
4865
- msgid "Current organization has no manifest imported."
4866
- msgstr ""
4867
-
4868
4967
  #: ../app/lib/katello/resources/cdn.rb:119
4869
4968
  msgid "CDN loading error: %s not found"
4870
4969
  msgstr ""
@@ -5706,6 +5805,14 @@ msgstr ""
5706
5805
  msgid "is already attached to the capsule"
5707
5806
  msgstr ""
5708
5807
 
5808
+ #: ../app/models/katello/concerns/host_managed_extensions.rb:56
5809
+ msgid "Content_Host_Status"
5810
+ msgstr ""
5811
+
5812
+ #: ../app/models/katello/concerns/host_managed_extensions.rb:112
5813
+ msgid "Mark Content Host Statuses as Unknown for %s"
5814
+ msgstr ""
5815
+
5709
5816
  #: ../app/models/katello/concerns/location_extensions.rb:37
5710
5817
  msgid ""
5711
5818
  "Cannot delete the last Location. Foreman needs at least one Location to put ne"
@@ -5734,56 +5841,56 @@ msgstr ""
5734
5841
  msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
5735
5842
  msgstr ""
5736
5843
 
5737
- #: ../app/models/katello/concerns/organization_extensions.rb:118
5844
+ #: ../app/models/katello/concerns/organization_extensions.rb:132
5738
5845
  msgid "Could not delete organization '%s'."
5739
5846
  msgstr ""
5740
5847
 
5741
- #: ../app/models/katello/concerns/organization_extensions.rb:120
5848
+ #: ../app/models/katello/concerns/organization_extensions.rb:134
5742
5849
  msgid ""
5743
5850
  "The current organization cannot be deleted. Please switch to a different organ"
5744
5851
  "ization before deleting."
5745
5852
  msgstr ""
5746
5853
 
5747
- #: ../app/models/katello/concerns/organization_extensions.rb:122
5854
+ #: ../app/models/katello/concerns/organization_extensions.rb:136
5748
5855
  msgid "At least one organization must exist."
5749
5856
  msgstr ""
5750
5857
 
5751
- #: ../app/models/katello/concerns/organization_extensions.rb:147
5858
+ #: ../app/models/katello/concerns/organization_extensions.rb:161
5752
5859
  msgid "Informable Type must be one of the following [ %{list} ]"
5753
5860
  msgstr ""
5754
5861
 
5755
- #: ../app/models/katello/concerns/organization_extensions.rb:185
5862
+ #: ../app/models/katello/concerns/organization_extensions.rb:199
5756
5863
  msgid "You cannot set an organization's parent. This feature is disabled."
5757
5864
  msgstr ""
5758
5865
 
5759
- #: ../app/models/katello/concerns/organization_extensions.rb:189
5866
+ #: ../app/models/katello/concerns/organization_extensions.rb:203
5760
5867
  msgid "You cannot set an organization's parent_id. This feature is disabled."
5761
5868
  msgstr ""
5762
5869
 
5763
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:57
5870
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:58
5764
5871
  #: ../app/models/katello/content_view_erratum_filter_rule.rb:26
5765
- #: ../app/models/katello/root_repository.rb:78
5766
- #: ../app/models/katello/root_repository.rb:82
5767
- #: ../app/models/katello/root_repository.rb:86
5872
+ #: ../app/models/katello/root_repository.rb:79
5873
+ #: ../app/models/katello/root_repository.rb:83
5874
+ #: ../app/models/katello/root_repository.rb:87
5768
5875
  msgid "must be one of the following: %s"
5769
5876
  msgstr ""
5770
5877
 
5771
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:71
5878
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:72
5772
5879
  msgid "Could not find a smart proxy with pulp feature."
5773
5880
  msgstr ""
5774
5881
 
5775
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:273
5882
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:274
5776
5883
  msgid "Could not remove the lifecycle environment from the smart proxy"
5777
5884
  msgstr ""
5778
5885
 
5779
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:276
5886
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:277
5780
5887
  msgid ""
5781
5888
  "Lifecycle environment was not attached to the smart proxy; therefore, no chang"
5782
5889
  "es were made."
5783
5890
  msgstr ""
5784
5891
 
5785
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:314
5786
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:320
5892
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:315
5893
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:321
5787
5894
  msgid "%s is unreachable. %s"
5788
5895
  msgstr ""
5789
5896
 
@@ -5791,46 +5898,46 @@ msgstr ""
5791
5898
  msgid "Product with ID %s not found in Candlepin. Skipping content import for it."
5792
5899
  msgstr ""
5793
5900
 
5794
- #: ../app/models/katello/content_view.rb:390
5901
+ #: ../app/models/katello/content_view.rb:392
5795
5902
  msgid "Cannot delete view while it exists in environments"
5796
5903
  msgstr ""
5797
5904
 
5798
- #: ../app/models/katello/content_view.rb:395
5905
+ #: ../app/models/katello/content_view.rb:397
5799
5906
  msgid "Cannot delete from %s, view does not exist there."
5800
5907
  msgstr ""
5801
5908
 
5802
- #: ../app/models/katello/content_view.rb:433
5909
+ #: ../app/models/katello/content_view.rb:435
5803
5910
  #: ../app/models/katello/content_view_version_component.rb:13
5804
5911
  msgid "Cannot add component versions to a non-composite content view"
5805
5912
  msgstr ""
5806
5913
 
5807
- #: ../app/models/katello/content_view.rb:439
5914
+ #: ../app/models/katello/content_view.rb:441
5808
5915
  msgid "Cannot set auto publish to a non-composite content view"
5809
5916
  msgstr ""
5810
5917
 
5811
- #: ../app/models/katello/content_view.rb:447
5918
+ #: ../app/models/katello/content_view.rb:449
5812
5919
  msgid "Puppet module conflict: '%{mod}' is in %{versions}."
5813
5920
  msgstr ""
5814
5921
 
5815
- #: ../app/models/katello/content_view.rb:454
5922
+ #: ../app/models/katello/content_view.rb:456
5816
5923
  msgid "Container Image repo '%{repo}' is present in multiple component content views."
5817
5924
  msgstr ""
5818
5925
 
5819
- #: ../app/models/katello/content_view.rb:569
5926
+ #: ../app/models/katello/content_view.rb:571
5820
5927
  msgid "User must be logged in."
5821
5928
  msgstr ""
5822
5929
 
5823
- #: ../app/models/katello/content_view.rb:570
5930
+ #: ../app/models/katello/content_view.rb:572
5824
5931
  msgid "Cannot publish default content view"
5825
5932
  msgstr ""
5826
5933
 
5827
- #: ../app/models/katello/content_view.rb:586
5934
+ #: ../app/models/katello/content_view.rb:588
5828
5935
  msgid ""
5829
5936
  "Consider changing the Lifecycle Environment's Registry Name Pattern to somethi"
5830
5937
  "ng more specific."
5831
5938
  msgstr ""
5832
5939
 
5833
- #: ../app/models/katello/content_view.rb:596
5940
+ #: ../app/models/katello/content_view.rb:598
5834
5941
  msgid ""
5835
5942
  "Make sure all the component content views are published before publishing/prom"
5836
5943
  "oting the composite content view. This restriction is optional and can be modi"
@@ -5838,7 +5945,7 @@ msgid ""
5838
5945
  "site_view flag."
5839
5946
  msgstr ""
5840
5947
 
5841
- #: ../app/models/katello/content_view.rb:606
5948
+ #: ../app/models/katello/content_view.rb:608
5842
5949
  msgid ""
5843
5950
  "The action requested on this composite view cannot be performed until all of t"
5844
5951
  "he component content view versions have been promoted to the target environmen"
@@ -5846,39 +5953,39 @@ msgid ""
5846
5953
  "tor -> Settings -> Content page using the restrict_composite_view flag."
5847
5954
  msgstr ""
5848
5955
 
5849
- #: ../app/models/katello/content_view.rb:620
5850
- #: ../app/models/katello/content_view.rb:639
5956
+ #: ../app/models/katello/content_view.rb:622
5957
+ #: ../app/models/katello/content_view.rb:641
5851
5958
  msgid "hosts"
5852
5959
  msgstr ""
5853
5960
 
5854
- #: ../app/models/katello/content_view.rb:621
5855
- #: ../app/models/katello/content_view.rb:640
5961
+ #: ../app/models/katello/content_view.rb:623
5962
+ #: ../app/models/katello/content_view.rb:642
5856
5963
  msgid "activation keys"
5857
5964
  msgstr ""
5858
5965
 
5859
- #: ../app/models/katello/content_view.rb:626
5966
+ #: ../app/models/katello/content_view.rb:628
5860
5967
  msgid ""
5861
5968
  "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependen"
5862
5969
  "t}: %{names}."
5863
5970
  msgstr ""
5864
5971
 
5865
- #: ../app/models/katello/content_view.rb:638
5972
+ #: ../app/models/katello/content_view.rb:640
5866
5973
  msgid "environments"
5867
5974
  msgstr ""
5868
5975
 
5869
- #: ../app/models/katello/content_view.rb:645
5976
+ #: ../app/models/katello/content_view.rb:647
5870
5977
  msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
5871
5978
  msgstr ""
5872
5979
 
5873
- #: ../app/models/katello/content_view.rb:655
5980
+ #: ../app/models/katello/content_view.rb:657
5874
5981
  #: ../app/views/dashboard/_content_views_widget.html.erb:2
5875
5982
  #: ../lib/katello/plugin.rb:76 ../lib/katello/plugin.rb:217
5876
- #: ../webpack/containers/Application/config.js:56
5877
- #: ../webpack/scenes/ContentViews/ContentViewsPage.js:24
5983
+ #: ../webpack/containers/Application/config.js:57
5984
+ #: ../webpack/scenes/ContentViews/ContentViewsPage.js:26
5878
5985
  msgid "Content Views"
5879
5986
  msgstr ""
5880
5987
 
5881
- #: ../app/models/katello/content_view.rb:700
5988
+ #: ../app/models/katello/content_view.rb:702
5882
5989
  msgid "cannot be deleted if it has been promoted."
5883
5990
  msgstr ""
5884
5991
 
@@ -5948,7 +6055,7 @@ msgid "Packages"
5948
6055
  msgstr ""
5949
6056
 
5950
6057
  #: ../app/models/katello/content_view_filter.rb:11 ../lib/katello/plugin.rb:159
5951
- #: ../webpack/containers/Application/config.js:40
6058
+ #: ../webpack/containers/Application/config.js:41
5952
6059
  #: ../webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js:52
5953
6060
  #: ../webpack/scenes/ModuleStreams/ModuleStreamsPage.js:51
5954
6061
  msgid "Module Streams"
@@ -6164,80 +6271,80 @@ msgid ""
6164
6271
  " '%{host_collection}'."
6165
6272
  msgstr ""
6166
6273
 
6167
- #: ../app/models/katello/kt_environment.rb:44
6168
- #: ../app/models/katello/kt_environment.rb:47
6274
+ #: ../app/models/katello/kt_environment.rb:46
6275
+ #: ../app/models/katello/kt_environment.rb:49
6169
6276
  msgid "of environment must be unique within one organization"
6170
6277
  msgstr ""
6171
6278
 
6172
- #: ../app/models/katello/kt_environment.rb:45
6173
- #: ../app/models/katello/kt_environment.rb:48
6174
- #: ../app/models/katello/kt_environment.rb:49
6279
+ #: ../app/models/katello/kt_environment.rb:47
6280
+ #: ../app/models/katello/kt_environment.rb:50
6281
+ #: ../app/models/katello/kt_environment.rb:51
6175
6282
  msgid ": '%s' is a built-in environment"
6176
6283
  msgstr ""
6177
6284
 
6178
- #: ../app/models/katello/kt_environment.rb:121
6285
+ #: ../app/models/katello/kt_environment.rb:123
6179
6286
  msgid "An environment is missing a prior"
6180
6287
  msgstr ""
6181
6288
 
6182
- #: ../app/models/katello/kt_environment.rb:176
6289
+ #: ../app/models/katello/kt_environment.rb:178
6183
6290
  msgid "Library lifecycle environments may not be deleted."
6184
6291
  msgstr ""
6185
6292
 
6186
- #: ../app/models/katello/kt_environment.rb:181
6293
+ #: ../app/models/katello/kt_environment.rb:183
6187
6294
  msgid ""
6188
6295
  "Lifecycle Environment %s has associated Hosts. Please unregister or move the a"
6189
6296
  "ssociated Hosts before trying to delete this lifecycle environment."
6190
6297
  msgstr ""
6191
6298
 
6192
- #: ../app/models/katello/kt_environment.rb:187
6299
+ #: ../app/models/katello/kt_environment.rb:189
6193
6300
  msgid ""
6194
6301
  "Lifecycle Environment %s has associated Activation Keys. Please change or remo"
6195
6302
  "ve the associated Activation Keys before trying to delete this lifecycle envir"
6196
6303
  "onment."
6197
6304
  msgstr ""
6198
6305
 
6199
- #: ../app/models/katello/kt_environment.rb:255
6306
+ #: ../app/models/katello/kt_environment.rb:257
6200
6307
  #: ../app/views/overrides/activation_keys/_host_environment_select.html.erb:13
6201
6308
  msgid "Lifecycle Environment"
6202
6309
  msgstr ""
6203
6310
 
6204
- #: ../app/models/katello/ping.rb:54
6311
+ #: ../app/models/katello/ping.rb:52
6205
6312
  msgid "Not running"
6206
6313
  msgstr ""
6207
6314
 
6208
- #: ../app/models/katello/ping.rb:97
6315
+ #: ../app/models/katello/ping.rb:95
6209
6316
  msgid "Skipped pulp_auth check after failed pulp check"
6210
6317
  msgstr ""
6211
6318
 
6212
- #: ../app/models/katello/ping.rb:115
6319
+ #: ../app/models/katello/ping.rb:113
6213
6320
  msgid "foreman-tasks service not running or is not ready yet"
6214
6321
  msgstr ""
6215
6322
 
6216
- #: ../app/models/katello/ping.rb:121
6323
+ #: ../app/models/katello/ping.rb:119
6217
6324
  msgid "some executors are not responding, check %{status_url}"
6218
6325
  msgstr ""
6219
6326
 
6220
- #: ../app/models/katello/ping.rb:128
6327
+ #: ../app/models/katello/ping.rb:126
6221
6328
  msgid "Candlepin is not running properly"
6222
6329
  msgstr ""
6223
6330
 
6224
- #: ../app/models/katello/ping.rb:166 ../app/models/katello/ping.rb:185
6331
+ #: ../app/models/katello/ping.rb:164 ../app/models/katello/ping.rb:183
6225
6332
  msgid "Pulp does not appear to be running at %s."
6226
6333
  msgstr ""
6227
6334
 
6228
- #: ../app/models/katello/ping.rb:169 ../app/models/katello/ping.rb:188
6335
+ #: ../app/models/katello/ping.rb:167 ../app/models/katello/ping.rb:186
6229
6336
  msgid "Pulp database connection issue at %s."
6230
6337
  msgstr ""
6231
6338
 
6232
- #: ../app/models/katello/ping.rb:173
6339
+ #: ../app/models/katello/ping.rb:171
6233
6340
  msgid "Pulp message bus connection issue at %s."
6234
6341
  msgstr ""
6235
6342
 
6236
- #: ../app/models/katello/ping.rb:177 ../app/models/katello/ping.rb:199
6343
+ #: ../app/models/katello/ping.rb:175 ../app/models/katello/ping.rb:197
6237
6344
  msgid "Not all necessary pulp workers running at %s."
6238
6345
  msgstr ""
6239
6346
 
6240
- #: ../app/models/katello/ping.rb:192
6347
+ #: ../app/models/katello/ping.rb:190
6241
6348
  msgid "Pulp redis connection issue at %s."
6242
6349
  msgstr ""
6243
6350
 
@@ -6258,10 +6365,6 @@ msgstr ""
6258
6365
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
6259
6366
  msgstr ""
6260
6367
 
6261
- #: ../app/models/katello/pulp3/content_guard.rb:8
6262
- msgid "No Content Guard configured!"
6263
- msgstr ""
6264
-
6265
6368
  #: ../app/models/katello/pulp_sync_status.rb:94
6266
6369
  msgid "One or more packages failed to sync properly."
6267
6370
  msgstr ""
@@ -6282,16 +6385,16 @@ msgstr ""
6282
6385
  msgid "Could not find Repository for module %s."
6283
6386
  msgstr ""
6284
6387
 
6285
- #: ../app/models/katello/purpose_addons_status.rb:4
6388
+ #: ../app/models/katello/purpose_addons_status.rb:5
6286
6389
  msgid "Addons"
6287
6390
  msgstr ""
6288
6391
 
6289
- #: ../app/models/katello/purpose_role_status.rb:4
6392
+ #: ../app/models/katello/purpose_role_status.rb:5
6290
6393
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionPurposeAttributes.js:6
6291
6394
  msgid "Role"
6292
6395
  msgstr ""
6293
6396
 
6294
- #: ../app/models/katello/purpose_sla_status.rb:4
6397
+ #: ../app/models/katello/purpose_sla_status.rb:5
6295
6398
  msgid "Service Level"
6296
6399
  msgstr ""
6297
6400
 
@@ -6312,11 +6415,11 @@ msgstr ""
6312
6415
  msgid "Not Specified"
6313
6416
  msgstr ""
6314
6417
 
6315
- #: ../app/models/katello/purpose_usage_status.rb:4
6418
+ #: ../app/models/katello/purpose_usage_status.rb:5
6316
6419
  msgid "Usage"
6317
6420
  msgstr ""
6318
6421
 
6319
- #: ../app/models/katello/repository.rb:112
6422
+ #: ../app/models/katello/repository.rb:114
6320
6423
  msgid ""
6321
6424
  "for repository '%{name}' is not unique and cannot be created in '%{env}'. Its "
6322
6425
  "Container Repository Name (%{container_name}) conflicts with an existing repos"
@@ -6324,108 +6427,112 @@ msgid ""
6324
6427
  " something more specific."
6325
6428
  msgstr ""
6326
6429
 
6327
- #: ../app/models/katello/repository.rb:208
6430
+ #: ../app/models/katello/repository.rb:210
6328
6431
  msgid "Successfully synchronized."
6329
6432
  msgstr ""
6330
6433
 
6331
- #: ../app/models/katello/repository.rb:488
6434
+ #: ../app/models/katello/repository.rb:501
6332
6435
  msgid "Cannot clone into the Default Content View"
6333
6436
  msgstr ""
6334
6437
 
6335
- #: ../app/models/katello/repository.rb:495
6438
+ #: ../app/models/katello/repository.rb:508
6336
6439
  msgid "View %{view} has not been promoted to %{env}"
6337
6440
  msgstr ""
6338
6441
 
6339
- #: ../app/models/katello/repository.rb:500
6442
+ #: ../app/models/katello/repository.rb:513
6340
6443
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
6341
6444
  msgstr ""
6342
6445
 
6343
- #: ../app/models/katello/repository.rb:665
6446
+ #: ../app/models/katello/repository.rb:678
6344
6447
  msgid "Duplicate branches specified - %{branches}"
6345
6448
  msgstr ""
6346
6449
 
6347
- #: ../app/models/katello/repository.rb:679
6450
+ #: ../app/models/katello/repository.rb:692
6348
6451
  msgid ""
6349
6452
  "Repository cannot be deleted since it has already been included in a published"
6350
6453
  " Content View. Please delete all Content View versions containing this reposit"
6351
6454
  "ory before attempting to delete it."
6352
6455
  msgstr ""
6353
6456
 
6354
- #: ../app/models/katello/repository.rb:730
6457
+ #: ../app/models/katello/repository.rb:743
6355
6458
  msgid "This is not a linked repository"
6356
6459
  msgstr ""
6357
6460
 
6358
- #: ../app/models/katello/root_repository.rb:136
6461
+ #: ../app/models/katello/root_repository.rb:127
6359
6462
  msgid "Cannot set attribute %{attr} for content type %{type}"
6360
6463
  msgstr ""
6361
6464
 
6362
- #: ../app/models/katello/root_repository.rb:144
6465
+ #: ../app/models/katello/root_repository.rb:135
6363
6466
  msgid ""
6364
6467
  "Cannot sync file:// repositories with On Demand or Background Download Policie"
6365
6468
  "s"
6366
6469
  msgstr ""
6367
6470
 
6368
- #: ../app/models/katello/root_repository.rb:150
6471
+ #: ../app/models/katello/root_repository.rb:141
6369
6472
  msgid "cannot be blank when Repository URL is provided."
6370
6473
  msgstr ""
6371
6474
 
6372
- #: ../app/models/katello/root_repository.rb:151
6475
+ #: ../app/models/katello/root_repository.rb:142
6373
6476
  msgid "Upstream Name cannot be blank when Repository URL is provided."
6374
6477
  msgstr ""
6375
6478
 
6376
- #: ../app/models/katello/root_repository.rb:157
6479
+ #: ../app/models/katello/root_repository.rb:148
6377
6480
  msgid ""
6378
6481
  "Container Image Repositories are not protected at this time. They need to be p"
6379
6482
  "ublished via http to be available to containers."
6380
6483
  msgstr ""
6381
6484
 
6382
- #: ../app/models/katello/root_repository.rb:164
6485
+ #: ../app/models/katello/root_repository.rb:155
6383
6486
  msgid "cannot be set for non-yum repositories."
6384
6487
  msgstr ""
6385
6488
 
6386
- #: ../app/models/katello/root_repository.rb:170
6489
+ #: ../app/models/katello/root_repository.rb:161
6387
6490
  msgid ""
6388
6491
  "Checksum type cannot be set for yum repositories with on demand download polic"
6389
6492
  "y."
6390
6493
  msgstr ""
6391
6494
 
6392
- #: ../app/models/katello/root_repository.rb:176
6495
+ #: ../app/models/katello/root_repository.rb:167
6393
6496
  msgid "OSTree Repositories cannot be unprotected."
6394
6497
  msgstr ""
6395
6498
 
6396
- #: ../app/models/katello/root_repository.rb:204
6499
+ #: ../app/models/katello/root_repository.rb:195
6397
6500
  msgid "cannot be set for non-ostree repositories."
6398
6501
  msgstr ""
6399
6502
 
6400
- #: ../app/models/katello/root_repository.rb:211
6503
+ #: ../app/models/katello/root_repository.rb:202
6401
6504
  msgid "Ignorable content can be only set for Yum repositories."
6402
6505
  msgstr ""
6403
6506
 
6404
- #: ../app/models/katello/root_repository.rb:213
6507
+ #: ../app/models/katello/root_repository.rb:204
6405
6508
  msgid "Invalid value specified for ignorable content."
6406
6509
  msgstr ""
6407
6510
 
6408
- #: ../app/models/katello/root_repository.rb:215
6511
+ #: ../app/models/katello/root_repository.rb:206
6409
6512
  msgid "Invalid value specified for ignorable content. Permissible values %s"
6410
6513
  msgstr ""
6411
6514
 
6412
- #: ../app/models/katello/root_repository.rb:222
6515
+ #: ../app/models/katello/root_repository.rb:213
6413
6516
  msgid "Invalid value specified for Container Image repositories."
6414
6517
  msgstr ""
6415
6518
 
6416
- #: ../app/models/katello/root_repository.rb:229
6519
+ #: ../app/models/katello/root_repository.rb:220
6417
6520
  msgid "Upstream username and password may only be set on custom repositories."
6418
6521
  msgstr ""
6419
6522
 
6420
- #: ../app/models/katello/root_repository.rb:231
6523
+ #: ../app/models/katello/root_repository.rb:222
6421
6524
  msgid "Upstream password requires upstream username be set."
6422
6525
  msgstr ""
6423
6526
 
6424
- #: ../app/models/katello/root_repository.rb:233
6527
+ #: ../app/models/katello/root_repository.rb:224
6425
6528
  msgid "Upstream username requires upstream password be set."
6426
6529
  msgstr ""
6427
6530
 
6428
- #: ../app/models/katello/root_repository.rb:311
6531
+ #: ../app/models/katello/root_repository.rb:230
6532
+ msgid "Auto Enablement may only be set on custom repositories."
6533
+ msgstr ""
6534
+
6535
+ #: ../app/models/katello/root_repository.rb:307
6429
6536
  msgid "Cannot calculate name for custom repos"
6430
6537
  msgstr ""
6431
6538
 
@@ -6451,7 +6558,8 @@ msgid "Unsubscribed hypervisor"
6451
6558
  msgstr ""
6452
6559
 
6453
6560
  #: ../app/models/katello/subscription_status.rb:25
6454
- msgid "Disabled"
6561
+ #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:33
6562
+ msgid "Simple Content Access"
6455
6563
  msgstr ""
6456
6564
 
6457
6565
  #: ../app/models/katello/subscription_status.rb:27
@@ -6726,162 +6834,173 @@ msgid "Check services before actions"
6726
6834
  msgstr ""
6727
6835
 
6728
6836
  #: ../app/models/setting/content.rb:94
6729
- msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
6837
+ msgid ""
6838
+ "How many repositories should be synced concurrently on the capsule. A smaller"
6839
+ " number may lead to longer sync times. A larger number will increase dynflow "
6840
+ "load."
6730
6841
  msgstr ""
6731
6842
 
6732
6843
  #: ../app/models/setting/content.rb:95
6733
- msgid "Sync Smart Proxies after Content View promotion"
6844
+ msgid "Batch size to sync repositories in."
6734
6845
  msgstr ""
6735
6846
 
6736
6847
  #: ../app/models/setting/content.rb:96
6848
+ msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
6849
+ msgstr ""
6850
+
6851
+ #: ../app/models/setting/content.rb:97
6852
+ msgid "Sync Smart Proxies after Content View promotion"
6853
+ msgstr ""
6854
+
6855
+ #: ../app/models/setting/content.rb:98
6737
6856
  msgid ""
6738
6857
  "Default download policy for custom repositories (either 'immediate', 'on_deman"
6739
6858
  "d', or 'background')"
6740
6859
  msgstr ""
6741
6860
 
6742
- #: ../app/models/setting/content.rb:97
6861
+ #: ../app/models/setting/content.rb:99
6743
6862
  msgid "Default Custom Repository download policy"
6744
6863
  msgstr ""
6745
6864
 
6746
- #: ../app/models/setting/content.rb:98
6865
+ #: ../app/models/setting/content.rb:100
6747
6866
  msgid ""
6748
6867
  "Default download policy for enabled Red Hat repositories (either 'immediate', "
6749
6868
  "'on_demand', or 'background')"
6750
6869
  msgstr ""
6751
6870
 
6752
- #: ../app/models/setting/content.rb:99
6871
+ #: ../app/models/setting/content.rb:101
6753
6872
  msgid "Default Red Hat Repository download policy"
6754
6873
  msgstr ""
6755
6874
 
6756
- #: ../app/models/setting/content.rb:100
6875
+ #: ../app/models/setting/content.rb:102
6757
6876
  msgid ""
6758
6877
  "Default download policy for Smart Proxy syncs (either 'inherit', immediate', '"
6759
6878
  "on_demand', or 'background')"
6760
6879
  msgstr ""
6761
6880
 
6762
- #: ../app/models/setting/content.rb:101
6881
+ #: ../app/models/setting/content.rb:103
6763
6882
  msgid "Default Smart Proxy download policy"
6764
6883
  msgstr ""
6765
6884
 
6766
- #: ../app/models/setting/content.rb:102
6885
+ #: ../app/models/setting/content.rb:104
6767
6886
  msgid "The port used by Pulp Crane to provide Docker Registries"
6768
6887
  msgstr ""
6769
6888
 
6770
- #: ../app/models/setting/content.rb:103
6889
+ #: ../app/models/setting/content.rb:105
6771
6890
  msgid "Pulp Docker registry port"
6772
6891
  msgstr ""
6773
6892
 
6774
- #: ../app/models/setting/content.rb:104
6893
+ #: ../app/models/setting/content.rb:106
6775
6894
  msgid "On-disk location for exported repositories"
6776
6895
  msgstr ""
6777
6896
 
6778
- #: ../app/models/setting/content.rb:105
6897
+ #: ../app/models/setting/content.rb:107
6779
6898
  msgid "Pulp export destination filepath"
6780
6899
  msgstr ""
6781
6900
 
6782
- #: ../app/models/setting/content.rb:106
6901
+ #: ../app/models/setting/content.rb:108
6783
6902
  msgid "Path for ssl key used for pulp server auth"
6784
6903
  msgstr ""
6785
6904
 
6786
- #: ../app/models/setting/content.rb:107
6905
+ #: ../app/models/setting/content.rb:109
6787
6906
  msgid "Pulp client key"
6788
6907
  msgstr ""
6789
6908
 
6790
- #: ../app/models/setting/content.rb:108
6909
+ #: ../app/models/setting/content.rb:110
6791
6910
  msgid "Path for ssl cert used for pulp server auth"
6792
6911
  msgstr ""
6793
6912
 
6794
- #: ../app/models/setting/content.rb:109
6913
+ #: ../app/models/setting/content.rb:111
6795
6914
  msgid "Pulp client cert"
6796
6915
  msgstr ""
6797
6916
 
6798
- #: ../app/models/setting/content.rb:110
6917
+ #: ../app/models/setting/content.rb:112
6799
6918
  msgid "If set to true, use the remote execution over katello-agent for remote actions"
6800
6919
  msgstr ""
6801
6920
 
6802
- #: ../app/models/setting/content.rb:111
6921
+ #: ../app/models/setting/content.rb:113
6803
6922
  msgid "Use remote execution by default"
6804
6923
  msgstr ""
6805
6924
 
6806
- #: ../app/models/setting/content.rb:112
6925
+ #: ../app/models/setting/content.rb:114
6807
6926
  msgid ""
6808
6927
  "When unregistering a host via subscription-manager, also delete the host recor"
6809
6928
  "d. Managed resources linked to host such as virtual machines and DNS records m"
6810
6929
  "ay also be deleted."
6811
6930
  msgstr ""
6812
6931
 
6813
- #: ../app/models/setting/content.rb:114
6932
+ #: ../app/models/setting/content.rb:116
6814
6933
  msgid "Delete Host upon unregister"
6815
6934
  msgstr ""
6816
6935
 
6817
- #: ../app/models/setting/content.rb:115
6936
+ #: ../app/models/setting/content.rb:117
6818
6937
  msgid ""
6819
6938
  "When registering a host via subscription-manager, force use the specified fact"
6820
6939
  " (in the form of 'fact.fact')"
6821
6940
  msgstr ""
6822
6941
 
6823
- #: ../app/models/setting/content.rb:116
6942
+ #: ../app/models/setting/content.rb:118
6824
6943
  msgid "Subscription manager name registration fact"
6825
6944
  msgstr ""
6826
6945
 
6827
- #: ../app/models/setting/content.rb:117
6946
+ #: ../app/models/setting/content.rb:119
6828
6947
  msgid ""
6829
6948
  "If true, and register_hostname_fact is set and provided, registration will loo"
6830
6949
  "k for a new host by name only using that fact, and will skip all hostname matc"
6831
6950
  "hing"
6832
6951
  msgstr ""
6833
6952
 
6834
- #: ../app/models/setting/content.rb:118
6953
+ #: ../app/models/setting/content.rb:120
6835
6954
  msgid "Subscription manager name registration fact strict matching"
6836
6955
  msgstr ""
6837
6956
 
6838
- #: ../app/models/setting/content.rb:119
6957
+ #: ../app/models/setting/content.rb:121
6839
6958
  msgid ""
6840
6959
  "Errata installed via katello-agent will be triggered in batches of this size. "
6841
6960
  "Set to 0 to install all errata in one batch."
6842
6961
  msgstr ""
6843
6962
 
6844
- #: ../app/models/setting/content.rb:120
6963
+ #: ../app/models/setting/content.rb:122
6845
6964
  msgid "Erratum Install Batch Size"
6846
6965
  msgstr ""
6847
6966
 
6848
- #: ../app/models/setting/content.rb:122
6967
+ #: ../app/models/setting/content.rb:124
6849
6968
  msgid "Default Location where new subscribed hosts will put upon registration"
6850
6969
  msgstr ""
6851
6970
 
6852
- #: ../app/models/setting/content.rb:123
6971
+ #: ../app/models/setting/content.rb:125
6853
6972
  msgid "Default Location subscribed hosts"
6854
6973
  msgstr ""
6855
6974
 
6856
- #: ../app/models/setting/content.rb:126
6975
+ #: ../app/models/setting/content.rb:128
6857
6976
  msgid ""
6858
6977
  "Default Location where new Puppet content will be put upon Content View publis"
6859
6978
  "h"
6860
6979
  msgstr ""
6861
6980
 
6862
- #: ../app/models/setting/content.rb:127
6981
+ #: ../app/models/setting/content.rb:129
6863
6982
  msgid "Default Location Puppet content"
6864
6983
  msgstr ""
6865
6984
 
6866
- #: ../app/models/setting/content.rb:129
6985
+ #: ../app/models/setting/content.rb:131
6867
6986
  msgid ""
6868
6987
  "The number of days remaining in a subscription before you will be reminded abo"
6869
6988
  "ut renewing it."
6870
6989
  msgstr ""
6871
6990
 
6872
- #: ../app/models/setting/content.rb:130
6991
+ #: ../app/models/setting/content.rb:132
6873
6992
  msgid "Expire soon days"
6874
6993
  msgstr ""
6875
6994
 
6876
- #: ../app/models/setting/content.rb:132
6995
+ #: ../app/models/setting/content.rb:134
6877
6996
  msgid "The default dependency solving value for new Content Views."
6878
6997
  msgstr ""
6879
6998
 
6880
- #: ../app/models/setting/content.rb:133
6999
+ #: ../app/models/setting/content.rb:135
6881
7000
  msgid "Content View Dependency Solving Default"
6882
7001
  msgstr ""
6883
7002
 
6884
- #: ../app/models/setting/content.rb:135
7003
+ #: ../app/models/setting/content.rb:137
6885
7004
  msgid ""
6886
7005
  "How the logic of solving dependencies in a Content View is managed. Conservati"
6887
7006
  "ve will only add packages to solve the dependencies if the package needed does"
@@ -6889,51 +7008,71 @@ msgid ""
6889
7008
  "f it already does exist in the repository."
6890
7009
  msgstr ""
6891
7010
 
6892
- #: ../app/models/setting/content.rb:138
7011
+ #: ../app/models/setting/content.rb:140
6893
7012
  msgid "Content View Dependency Solving Algorithm"
6894
7013
  msgstr ""
6895
7014
 
6896
- #: ../app/models/setting/content.rb:141
7015
+ #: ../app/models/setting/content.rb:143
6897
7016
  msgid ""
6898
7017
  "If hosts fail to register because of duplicate DMI UUIDs add their comma-separ"
6899
7018
  "ated values here. Subsequent registrations will generate a unique DMI UUID for"
6900
7019
  " the affected hosts."
6901
7020
  msgstr ""
6902
7021
 
6903
- #: ../app/models/setting/content.rb:143
7022
+ #: ../app/models/setting/content.rb:145
6904
7023
  msgid "Host Duplicate DMI UUIDs"
6905
7024
  msgstr ""
6906
7025
 
6907
- #: ../app/models/setting/content.rb:144
7026
+ #: ../app/models/setting/content.rb:146
6908
7027
  msgid ""
6909
7028
  "Allow new Host registrations to assume registered profiles with matching hostn"
6910
7029
  "ame as long as the registering DMI UUID is not used by another host."
6911
7030
  msgstr ""
6912
7031
 
6913
- #: ../app/models/setting/content.rb:146
7032
+ #: ../app/models/setting/content.rb:148
6914
7033
  msgid "Host Profile Assume"
6915
7034
  msgstr ""
6916
7035
 
6917
- #: ../app/models/setting/content.rb:147
7036
+ #: ../app/models/setting/content.rb:149
6918
7037
  msgid ""
6919
7038
  "Amount of workers in the pool to handle the execution of host-related tasks. W"
6920
7039
  "hen set to 0, the default queue will be used instead. Restart of the dynflowd/"
6921
7040
  "foreman-tasks service is required."
6922
7041
  msgstr ""
6923
7042
 
6924
- #: ../app/models/setting/content.rb:148
7043
+ #: ../app/models/setting/content.rb:150
6925
7044
  msgid "Host Tasks Workers Pool Size"
6926
7045
  msgstr ""
6927
7046
 
6928
- #: ../app/models/setting/content.rb:149
7047
+ #: ../app/models/setting/content.rb:151
6929
7048
  msgid "Number of host applicability calculations to process per task."
6930
7049
  msgstr ""
6931
7050
 
6932
- #: ../app/models/setting/content.rb:150
7051
+ #: ../app/models/setting/content.rb:152
6933
7052
  msgid "Applicability Batch Size"
6934
7053
  msgstr ""
6935
7054
 
6936
- #: ../app/models/setting/content.rb:180
7055
+ #: ../app/models/setting/content.rb:153
7056
+ msgid ""
7057
+ "For pages that support it, automatically perform search while typing in search"
7058
+ " input."
7059
+ msgstr ""
7060
+
7061
+ #: ../app/models/setting/content.rb:154
7062
+ msgid "Autosearch"
7063
+ msgstr ""
7064
+
7065
+ #: ../app/models/setting/content.rb:155
7066
+ msgid ""
7067
+ "If Autosearch is enabled, delay in milliseconds before executing searches whil"
7068
+ "e typing."
7069
+ msgstr ""
7070
+
7071
+ #: ../app/models/setting/content.rb:156
7072
+ msgid "Autosearch delay"
7073
+ msgstr ""
7074
+
7075
+ #: ../app/models/setting/content.rb:186
6937
7076
  msgid "There is no such HTTP proxy"
6938
7077
  msgstr ""
6939
7078
 
@@ -7048,9 +7187,9 @@ msgstr ""
7048
7187
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:47
7049
7188
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:53
7050
7189
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:59
7051
- #: ../lib/katello/plugin.rb:12 ../webpack/containers/Application/config.js:23
7190
+ #: ../lib/katello/plugin.rb:12 ../webpack/containers/Application/config.js:24
7052
7191
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:69
7053
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:194
7192
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:233
7054
7193
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:229
7055
7194
  msgid "Subscriptions"
7056
7195
  msgstr ""
@@ -7092,8 +7231,10 @@ msgstr ""
7092
7231
  #: ../app/views/dashboard/_errata_widget.html.erb:15
7093
7232
  #: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:20
7094
7233
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:7
7234
+ #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:67
7235
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:19
7095
7236
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:15
7096
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:84
7237
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:90
7097
7238
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:63
7098
7239
  msgid "Type"
7099
7240
  msgstr ""
@@ -7116,12 +7257,13 @@ msgstr ""
7116
7257
  #: ../webpack/components/Content/Details/ContentDetailRepositoryTableSchema.js:13
7117
7258
  #: ../webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js:14
7118
7259
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:7
7119
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:15
7260
+ #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:51
7261
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:20
7120
7262
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:9
7121
7263
  #: ../webpack/scenes/ModuleStreams/Details/Profiles/TableSchema.js:13
7122
7264
  #: ../webpack/scenes/ModuleStreams/ModuleStreamsTableSchema.js:15
7123
7265
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:4
7124
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:54
7266
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:60
7125
7267
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:52
7126
7268
  msgid "Name"
7127
7269
  msgstr ""
@@ -7205,7 +7347,7 @@ msgid "Finished"
7205
7347
  msgstr ""
7206
7348
 
7207
7349
  #: ../app/views/foreman/smart_proxies/_content_sync.html.erb:2
7208
- #: ../lib/katello/plugin.rb:264
7350
+ #: ../lib/katello/plugin.rb:269
7209
7351
  msgid "Content Sync"
7210
7352
  msgstr ""
7211
7353
 
@@ -7361,14 +7503,14 @@ msgstr ""
7361
7503
 
7362
7504
  #: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:22
7363
7505
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:9
7364
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:59
7506
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:65
7365
7507
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:73
7366
7508
  msgid "SKU"
7367
7509
  msgstr ""
7368
7510
 
7369
7511
  #: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:23
7370
7512
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:10
7371
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:64
7513
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:70
7372
7514
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js:31
7373
7515
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:83
7374
7516
  msgid "Contract"
@@ -7376,7 +7518,7 @@ msgstr ""
7376
7518
 
7377
7519
  #: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:24
7378
7520
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:11
7379
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:69
7521
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:75
7380
7522
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js:42
7381
7523
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:93
7382
7524
  msgid "Start Date"
@@ -7384,7 +7526,7 @@ msgstr ""
7384
7526
 
7385
7527
  #: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:25
7386
7528
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:12
7387
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:74
7529
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:80
7388
7530
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js:52
7389
7531
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:103
7390
7532
  msgid "End Date"
@@ -7430,8 +7572,9 @@ msgstr ""
7430
7572
  #: ../app/views/katello/sync_management/_products.html.erb:16
7431
7573
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:12
7432
7574
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:21
7433
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:15
7434
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:28
7575
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:19
7576
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:20
7577
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:33
7435
7578
  #: ../webpack/scenes/ContentViews/expansions/DetailsExpansion.js:5
7436
7579
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:25
7437
7580
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:86
@@ -7463,7 +7606,7 @@ msgid "Synchronize Now"
7463
7606
  msgstr ""
7464
7607
 
7465
7608
  #: ../app/views/katello/sync_management/index.html.erb:5
7466
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:292
7609
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:272
7467
7610
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:147
7468
7611
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js:30
7469
7612
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/UnsavedChangesDialog.js:15
@@ -7705,9 +7848,8 @@ msgstr ""
7705
7848
 
7706
7849
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:25
7707
7850
  msgid ""
7708
- "The manifest imported within Organization %{subject} is no longer valid. Atte"
7709
- "mpted CDN access returned Forbidden. Refreshing the manifest may resolve this"
7710
- " issue."
7851
+ "The manifest imported within Organization %{subject} is no longer valid. Pleas"
7852
+ "e import a new manifest."
7711
7853
  msgstr ""
7712
7854
 
7713
7855
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:31
@@ -7770,7 +7912,7 @@ msgstr ""
7770
7912
  msgid "OSTree Branches"
7771
7913
  msgstr ""
7772
7914
 
7773
- #: ../lib/katello/plugin.rb:170 ../webpack/containers/Application/config.js:48
7915
+ #: ../lib/katello/plugin.rb:170 ../webpack/containers/Application/config.js:49
7774
7916
  #: ../webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js:51
7775
7917
  msgid "Ansible Collections"
7776
7918
  msgstr ""
@@ -7783,75 +7925,75 @@ msgstr ""
7783
7925
  msgid "Storage"
7784
7926
  msgstr ""
7785
7927
 
7786
- #: ../lib/katello/plugin.rb:309
7928
+ #: ../lib/katello/plugin.rb:315
7787
7929
  msgid "Katello: Install Package"
7788
7930
  msgstr ""
7789
7931
 
7790
- #: ../lib/katello/plugin.rb:309
7932
+ #: ../lib/katello/plugin.rb:315
7791
7933
  msgid "Install package via Katello interface"
7792
7934
  msgstr ""
7793
7935
 
7794
- #: ../lib/katello/plugin.rb:310
7936
+ #: ../lib/katello/plugin.rb:316
7795
7937
  msgid "Katello: Update Package"
7796
7938
  msgstr ""
7797
7939
 
7798
- #: ../lib/katello/plugin.rb:310
7940
+ #: ../lib/katello/plugin.rb:316
7799
7941
  msgid "Update package via Katello interface"
7800
7942
  msgstr ""
7801
7943
 
7802
- #: ../lib/katello/plugin.rb:311
7944
+ #: ../lib/katello/plugin.rb:317
7803
7945
  msgid "Katello: Remove Package"
7804
7946
  msgstr ""
7805
7947
 
7806
- #: ../lib/katello/plugin.rb:311
7948
+ #: ../lib/katello/plugin.rb:317
7807
7949
  msgid "Remove package via Katello interface"
7808
7950
  msgstr ""
7809
7951
 
7810
- #: ../lib/katello/plugin.rb:312
7952
+ #: ../lib/katello/plugin.rb:318
7811
7953
  msgid "Katello: Install Package Group"
7812
7954
  msgstr ""
7813
7955
 
7814
- #: ../lib/katello/plugin.rb:312
7956
+ #: ../lib/katello/plugin.rb:318
7815
7957
  msgid "Install package group via Katello interface"
7816
7958
  msgstr ""
7817
7959
 
7818
- #: ../lib/katello/plugin.rb:313
7960
+ #: ../lib/katello/plugin.rb:319
7819
7961
  msgid "Katello: Update Package Group"
7820
7962
  msgstr ""
7821
7963
 
7822
- #: ../lib/katello/plugin.rb:313
7964
+ #: ../lib/katello/plugin.rb:319
7823
7965
  msgid "Update package group via Katello interface"
7824
7966
  msgstr ""
7825
7967
 
7826
- #: ../lib/katello/plugin.rb:314
7968
+ #: ../lib/katello/plugin.rb:320
7827
7969
  msgid "Katello: Remove Package Group"
7828
7970
  msgstr ""
7829
7971
 
7830
- #: ../lib/katello/plugin.rb:314
7972
+ #: ../lib/katello/plugin.rb:320
7831
7973
  msgid "Remove package group via Katello interface"
7832
7974
  msgstr ""
7833
7975
 
7834
- #: ../lib/katello/plugin.rb:315
7976
+ #: ../lib/katello/plugin.rb:321
7835
7977
  msgid "Katello: Install Errata"
7836
7978
  msgstr ""
7837
7979
 
7838
- #: ../lib/katello/plugin.rb:315
7980
+ #: ../lib/katello/plugin.rb:321
7839
7981
  msgid "Install errata via Katello interface"
7840
7982
  msgstr ""
7841
7983
 
7842
- #: ../lib/katello/plugin.rb:316
7984
+ #: ../lib/katello/plugin.rb:322
7843
7985
  msgid "Katello: Service Restart"
7844
7986
  msgstr ""
7845
7987
 
7846
- #: ../lib/katello/plugin.rb:316
7988
+ #: ../lib/katello/plugin.rb:322
7847
7989
  msgid "Restart Services via Katello interface"
7848
7990
  msgstr ""
7849
7991
 
7850
- #: ../lib/katello/plugin.rb:317
7992
+ #: ../lib/katello/plugin.rb:323
7851
7993
  msgid "Katello: Module Stream Actions"
7852
7994
  msgstr ""
7853
7995
 
7854
- #: ../lib/katello/plugin.rb:318
7996
+ #: ../lib/katello/plugin.rb:324
7855
7997
  msgid "Perform a module stream action via Katello interface"
7856
7998
  msgstr ""
7857
7999
 
@@ -7869,22 +8011,26 @@ msgstr ""
7869
8011
 
7870
8012
  #: ../webpack/components/Content/ContentTable.js:20
7871
8013
  #: ../webpack/components/Content/Details/ContentDetails.js:37
8014
+ #: ../webpack/components/LoadingState/LoadingState.js:44
7872
8015
  #: ../webpack/components/SelectOrg/SetOrganization.js:49
7873
- #: ../webpack/move_to_pf/LoadingState/LoadingState.js:44
7874
8016
  #: ../webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js:59
7875
8017
  #: ../webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js:83
7876
8018
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:83
7877
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:309
8019
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:289
7878
8020
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:239
7879
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js:178
8021
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js:185
7880
8022
  msgid "Loading"
7881
8023
  msgstr ""
7882
8024
 
8025
+ #: ../webpack/components/EditableTextInput/EditableTextInput.js:91
8026
+ msgid "None provided"
8027
+ msgstr ""
8028
+
7883
8029
  #: ../webpack/components/MultiSelect/index.js:23
7884
8030
  msgid "Select Value"
7885
8031
  msgstr ""
7886
8032
 
7887
- #: ../webpack/components/Search/index.js:55
8033
+ #: ../webpack/components/Search/Search.js:75
7888
8034
  msgid "Search"
7889
8035
  msgstr ""
7890
8036
 
@@ -7927,66 +8073,61 @@ msgstr ""
7927
8073
  msgid "Message"
7928
8074
  msgstr ""
7929
8075
 
7930
- #: ../webpack/containers/Application/config.js:19
7931
- msgid "RH Repos"
7932
- msgstr ""
7933
-
7934
- #: ../webpack/containers/Application/config.js:27
7935
- #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:233
7936
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:53
7937
- msgid "Add Subscriptions"
8076
+ #: ../webpack/components/pf3Table/components/TableSelectionCell.js:37
8077
+ msgid "Select row"
7938
8078
  msgstr ""
7939
8079
 
7940
- #: ../webpack/containers/Application/config.js:32
7941
- #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:74
7942
- msgid "Subscription Details"
8080
+ #:
8081
+ #: ../webpack/components/pf3Table/formatters/EntitlementsInlineEditFormatter.js:12
8082
+ msgid "NA"
7943
8083
  msgstr ""
7944
8084
 
7945
- #: ../webpack/containers/Application/config.js:44
7946
- msgid "Module Stream Details"
8085
+ #:
8086
+ #: ../webpack/components/pf3Table/formatters/EntitlementsInlineEditFormatter.js:16
8087
+ #: ../webpack/components/pf3Table/formatters/EntitlementsInlineEditFormatter.js:51
8088
+ #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js:69
8089
+ msgid "Unlimited"
7947
8090
  msgstr ""
7948
8091
 
7949
- #: ../webpack/containers/Application/config.js:52
7950
- #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js:52
7951
- msgid "Ansible Collection Details"
8092
+ #:
8093
+ #: ../webpack/components/pf3Table/formatters/EntitlementsInlineEditFormatter.js:52
8094
+ msgid "Max %(maxQuantity)s"
7952
8095
  msgstr ""
7953
8096
 
7954
- #: ../webpack/move_to_foreman/common/helpers.js:8
7955
- msgid "The subscription cannot be found upstream"
8097
+ #: ../webpack/components/react-bootstrap-select/index.js:62
8098
+ msgid "{0} items selected"
7956
8099
  msgstr ""
7957
8100
 
7958
- #: ../webpack/move_to_foreman/common/helpers.js:9
7959
- msgid "The subscription is no longer available"
8101
+ #: ../webpack/components/react-bootstrap-select/index.js:78
8102
+ msgid "Nothing selected"
7960
8103
  msgstr ""
7961
8104
 
7962
- #:
7963
- #: ../webpack/move_to_foreman/components/common/table/components/TableSelectionCell.js:37
7964
- msgid "Select row"
8105
+ #: ../webpack/containers/Application/config.js:20
8106
+ msgid "RH Repos"
7965
8107
  msgstr ""
7966
8108
 
7967
- #:
7968
- #: ../webpack/move_to_foreman/components/common/table/formatters/EntitlementsInlineEditFormatter.js:12
7969
- msgid "NA"
8109
+ #: ../webpack/containers/Application/config.js:28
8110
+ #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:233
8111
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:55
8112
+ msgid "Add Subscriptions"
7970
8113
  msgstr ""
7971
8114
 
7972
- #:
7973
- #: ../webpack/move_to_foreman/components/common/table/formatters/EntitlementsInlineEditFormatter.js:16
7974
- #: ../webpack/move_to_foreman/components/common/table/formatters/EntitlementsInlineEditFormatter.js:51
7975
- #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js:69
7976
- msgid "Unlimited"
8115
+ #: ../webpack/containers/Application/config.js:33
8116
+ #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:74
8117
+ msgid "Subscription Details"
7977
8118
  msgstr ""
7978
8119
 
7979
- #:
7980
- #: ../webpack/move_to_foreman/components/common/table/formatters/EntitlementsInlineEditFormatter.js:52
7981
- msgid "Max %(maxQuantity)s"
8120
+ #: ../webpack/containers/Application/config.js:45
8121
+ msgid "Module Stream Details"
7982
8122
  msgstr ""
7983
8123
 
7984
- #: ../webpack/move_to_pf/react-bootstrap-select/index.js:62
7985
- msgid "{0} items selected"
8124
+ #: ../webpack/containers/Application/config.js:53
8125
+ #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js:52
8126
+ msgid "Ansible Collection Details"
7986
8127
  msgstr ""
7987
8128
 
7988
- #: ../webpack/move_to_pf/react-bootstrap-select/index.js:78
7989
- msgid "Nothing selected"
8129
+ #: ../webpack/containers/Application/config.js:61
8130
+ msgid "Content View Details"
7990
8131
  msgstr ""
7991
8132
 
7992
8133
  #: ../webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js:30
@@ -8007,6 +8148,7 @@ msgid "Checksum"
8007
8148
  msgstr ""
8008
8149
 
8009
8150
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:8
8151
+ #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:77
8010
8152
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:11
8011
8153
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:5
8012
8154
  msgid "Description"
@@ -8017,8 +8159,7 @@ msgid "Tags"
8017
8159
  msgstr ""
8018
8160
 
8019
8161
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:28
8020
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:17
8021
- #: ../webpack/scenes/ContentViews/expansions/RepositoriesExpansion.js:6
8162
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:27
8022
8163
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:32
8023
8164
  msgid "Repositories"
8024
8165
  msgstr ""
@@ -8028,28 +8169,65 @@ msgstr ""
8028
8169
  msgid "No repositories to show"
8029
8170
  msgstr ""
8030
8171
 
8031
- #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:70
8172
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:26
8173
+ msgid " Content view updated."
8174
+ msgstr ""
8175
+
8176
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:23
8177
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:22
8178
+ #: ../webpack/scenes/ContentViews/expansions/VersionsExpansion.js:5
8179
+ msgid "Versions"
8180
+ msgstr ""
8181
+
8182
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:31
8183
+ msgid "Filters"
8184
+ msgstr ""
8185
+
8186
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:35
8187
+ msgid "History"
8188
+ msgstr ""
8189
+
8190
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:39
8191
+ msgid "Tasks"
8192
+ msgstr ""
8193
+
8194
+ #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:57
8195
+ msgid "Label"
8196
+ msgstr ""
8197
+
8198
+ #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:84
8199
+ msgid "Autopublish"
8200
+ msgstr ""
8201
+
8202
+ #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:92
8203
+ msgid "Solve dependencies"
8204
+ msgstr ""
8205
+
8206
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:74
8032
8207
  msgid "You currently don't have any Content Views."
8033
8208
  msgstr ""
8034
8209
 
8035
- #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:71
8036
- msgid "A Content View can be added by using the \"New content view\" button below."
8210
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:75
8211
+ msgid "A content view can be added by using the \"New content view\" button below."
8037
8212
  msgstr ""
8038
8213
 
8039
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:15
8214
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:76
8215
+ msgid "No matching content views found"
8216
+ msgstr ""
8217
+
8218
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:77
8219
+ msgid "Try changing your search settings."
8220
+ msgstr ""
8221
+
8222
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:20
8040
8223
  msgid "Last published"
8041
8224
  msgstr ""
8042
8225
 
8043
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:16
8226
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:21
8044
8227
  #: ../webpack/scenes/ContentViews/expansions/EnvironmentsExpansion.js:9
8045
8228
  msgid "Environments"
8046
8229
  msgstr ""
8047
8230
 
8048
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:18
8049
- #: ../webpack/scenes/ContentViews/expansions/VersionsExpansion.js:5
8050
- msgid "Versions"
8051
- msgstr ""
8052
-
8053
8231
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:12
8054
8232
  #: ../webpack/scenes/ModuleStreams/ModuleStreamsTableSchema.js:31
8055
8233
  msgid "Stream"
@@ -8199,13 +8377,13 @@ msgid "No repositories enabled."
8199
8377
  msgstr ""
8200
8378
 
8201
8379
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:6
8202
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:79
8380
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:85
8203
8381
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:113
8204
8382
  msgid "Requires Virt-Who"
8205
8383
  msgstr ""
8206
8384
 
8207
8385
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:7
8208
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:89
8386
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:95
8209
8387
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:129
8210
8388
  msgid "Consumed"
8211
8389
  msgstr ""
@@ -8263,12 +8441,10 @@ msgid "RAM: %s GB"
8263
8441
  msgstr ""
8264
8442
 
8265
8443
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js:32
8266
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:233
8267
8444
  msgid "No"
8268
8445
  msgstr ""
8269
8446
 
8270
8447
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js:34
8271
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:233
8272
8448
  msgid "Yes"
8273
8449
  msgstr ""
8274
8450
 
@@ -8349,82 +8525,72 @@ msgstr ""
8349
8525
  msgid "Disable Red Hat Insights."
8350
8526
  msgstr ""
8351
8527
 
8352
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:95
8528
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:81
8353
8529
  msgid "This is disabled because a manifest task is in progress"
8354
8530
  msgstr ""
8355
8531
 
8356
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:97
8532
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:83
8357
8533
  msgid "This is disabled because no manifest exists"
8358
8534
  msgstr ""
8359
8535
 
8360
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:119
8536
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:115
8361
8537
  msgid "There is no Manifest History to display."
8362
8538
  msgstr ""
8363
8539
 
8364
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:120
8540
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:116
8365
8541
  msgid "Import a Manifest using the manifest tab above."
8366
8542
  msgstr ""
8367
8543
 
8368
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:122
8544
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:118
8369
8545
  msgid "Learn more about adding Subscription Manifests"
8370
8546
  msgstr ""
8371
8547
 
8372
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:128
8548
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:124
8373
8549
  msgid "Updating..."
8374
8550
  msgstr ""
8375
8551
 
8376
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:132
8552
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:128
8377
8553
  msgid "No Manifest Uploaded"
8378
8554
  msgstr ""
8379
8555
 
8380
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:153
8381
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:61
8556
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:149
8557
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:86
8382
8558
  msgid "Manage Manifest"
8383
8559
  msgstr ""
8384
8560
 
8385
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:156
8561
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:152
8386
8562
  msgid "Manifest"
8387
8563
  msgstr ""
8388
8564
 
8389
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:160
8565
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:156
8390
8566
  msgid "Red Hat Provider Details"
8391
8567
  msgstr ""
8392
8568
 
8393
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:200
8569
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:196
8394
8570
  msgid "Subscription Manifest"
8395
8571
  msgstr ""
8396
8572
 
8397
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:212
8398
- msgid "Upstream Subscription Management Application"
8399
- msgstr ""
8400
-
8401
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:219
8402
- msgid "USMA"
8573
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:208
8574
+ msgid "Subscription Allocation"
8403
8575
  msgstr ""
8404
8576
 
8405
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:229
8406
- msgid "Simple Content Access"
8577
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:220
8578
+ msgid "Import New Manifest"
8407
8579
  msgstr ""
8408
8580
 
8409
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:237
8410
- msgid ""
8411
- "When Simple Content Access is enabled, hosts can consume from all repositories"
8412
- " in their Content View regardless of subscription status."
8413
- msgstr ""
8414
-
8415
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:262
8581
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:242
8416
8582
  msgid "Refresh"
8417
8583
  msgstr ""
8418
8584
 
8419
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:288
8585
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:268
8420
8586
  msgid "Confirm delete manifest"
8421
8587
  msgstr ""
8422
8588
 
8423
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:308
8589
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:288
8424
8590
  msgid "Manifest History"
8425
8591
  msgstr ""
8426
8592
 
8427
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:320
8593
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:300
8428
8594
  msgid "Close"
8429
8595
  msgstr ""
8430
8596
 
@@ -8432,7 +8598,17 @@ msgstr ""
8432
8598
  msgid "Timestamp"
8433
8599
  msgstr ""
8434
8600
 
8435
- #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:94
8601
+ #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:39
8602
+ msgid ""
8603
+ "When Simple Content Access is enabled, hosts can consume from all repositories"
8604
+ " in their Content View regardless of subscription status."
8605
+ msgstr ""
8606
+
8607
+ #: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:64
8608
+ msgid "Toggling Simple Content Access will refresh your manifest."
8609
+ msgstr ""
8610
+
8611
+ #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:100
8436
8612
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:139
8437
8613
  msgid "Entitlements"
8438
8614
  msgstr ""
@@ -8449,31 +8625,37 @@ msgstr ""
8449
8625
  msgid "Exceeds available quantity"
8450
8626
  msgstr ""
8451
8627
 
8452
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:71
8628
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:108
8453
8629
  msgid "This is disabled because disconnected mode is enabled."
8454
8630
  msgstr ""
8455
8631
 
8456
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:73
8632
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:110
8457
8633
  msgid "This is disabled because a manifest related task is in progress."
8458
8634
  msgstr ""
8459
8635
 
8460
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:75
8636
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:112
8461
8637
  msgid "This is disabled because no subscriptions are selected."
8462
8638
  msgstr ""
8463
8639
 
8464
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:77
8640
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:114
8465
8641
  msgid "This is disabled because no manifest has been uploaded."
8466
8642
  msgstr ""
8467
8643
 
8468
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:182
8644
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:116
8645
+ msgid ""
8646
+ "This is disabled because no connection could be made to the upstream Subscript"
8647
+ "ion Allocation."
8648
+ msgstr ""
8649
+
8650
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:221
8469
8651
  msgid "There are no Subscriptions to display"
8470
8652
  msgstr ""
8471
8653
 
8472
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:183
8654
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:222
8473
8655
  msgid "Import a Manifest to manage your Entitlements."
8474
8656
  msgstr ""
8475
8657
 
8476
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:186
8658
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:225
8477
8659
  msgid "Import a Manifest"
8478
8660
  msgstr ""
8479
8661
 
@@ -8543,7 +8725,7 @@ msgid "Number to Allocate"
8543
8725
  msgstr ""
8544
8726
 
8545
8727
  #:
8546
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionTypeFormatter.js:10
8728
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionTypeFormatter.js:9
8547
8729
  msgid "Physical"
8548
8730
  msgstr ""
8549
8731
 
@@ -8568,12 +8750,12 @@ msgid "Select all rows"
8568
8750
  msgstr ""
8569
8751
 
8570
8752
  #:
8571
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js:87
8753
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js:88
8572
8754
  msgid "Yay empty state"
8573
8755
  msgstr ""
8574
8756
 
8575
8757
  #:
8576
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js:88
8758
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js:89
8577
8759
  msgid "There is nothing to see here"
8578
8760
  msgstr ""
8579
8761
 
@@ -8622,7 +8804,17 @@ msgid "No subscriptions match your search criteria."
8622
8804
  msgstr ""
8623
8805
 
8624
8806
  #:
8625
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:67
8807
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:69
8808
+ msgid "Subscription Watch"
8809
+ msgstr ""
8810
+
8811
+ #:
8812
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:73
8813
+ msgid "Learn more about your overall subscription usage (opens in a new tab)"
8814
+ msgstr ""
8815
+
8816
+ #:
8817
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:92
8626
8818
  msgid "Export CSV"
8627
8819
  msgstr ""
8628
8820
 
@@ -8634,98 +8826,106 @@ msgstr ""
8634
8826
  msgid "Task ${task.humanized.action} has started."
8635
8827
  msgstr ""
8636
8828
 
8637
- #: action_names.rb:6
8638
- msgid "Update redhat repository"
8829
+ #: ../webpack/utils/helpers.js:8
8830
+ msgid "The subscription cannot be found upstream"
8639
8831
  msgstr ""
8640
8832
 
8641
- #: action_names.rb:7
8642
- msgid "Update http proxy details"
8833
+ #: ../webpack/utils/helpers.js:9
8834
+ msgid "The subscription is no longer available"
8643
8835
  msgstr ""
8644
8836
 
8645
- #: action_names.rb:9
8646
- msgid "Index module streams"
8837
+ #: action_names.rb:2
8838
+ msgid "Action with sub plans"
8647
8839
  msgstr ""
8648
8840
 
8649
- #: action_names.rb:10
8650
- msgid "Filtered index content"
8841
+ #: action_names.rb:3
8842
+ msgid "Import facts"
8651
8843
  msgstr ""
8652
8844
 
8653
- #: action_names.rb:13
8654
- msgid "Discover"
8845
+ #: action_names.rb:4
8846
+ msgid "Import Puppet classes"
8655
8847
  msgstr ""
8656
8848
 
8657
- #: action_names.rb:15
8658
- msgid "Update http proxy"
8849
+ #: action_names.rb:5
8850
+ msgid "Abstract async task"
8659
8851
  msgstr ""
8660
8852
 
8661
- #: action_names.rb:26
8662
- msgid "Reindex subscriptions"
8853
+ #: action_names.rb:13
8854
+ msgid "Sync capsule"
8663
8855
  msgstr ""
8664
8856
 
8665
- #: action_names.rb:27
8857
+ #: action_names.rb:15
8666
8858
  msgid "Errata mail"
8667
8859
  msgstr ""
8668
8860
 
8669
- #: action_names.rb:28
8670
- msgid "Fetch pxe files"
8861
+ #: action_names.rb:16
8862
+ msgid "Incremental Update of Content View Version(s) "
8863
+ msgstr ""
8864
+
8865
+ #: action_names.rb:17
8866
+ msgid "Promote"
8671
8867
  msgstr ""
8672
8868
 
8673
8869
  #: action_names.rb:29
8674
- msgid "Index content"
8870
+ msgid "Auto attach subscriptions"
8675
8871
  msgstr ""
8676
8872
 
8677
- #: action_names.rb:30
8678
- msgid "Index errata"
8873
+ #: action_names.rb:33
8874
+ msgid "Hypervisors"
8679
8875
  msgstr ""
8680
8876
 
8681
- #: action_names.rb:31
8682
- msgid "Index package groups"
8877
+ #: action_names.rb:34
8878
+ msgid "Hypervisors update"
8683
8879
  msgstr ""
8684
8880
 
8685
- #: action_names.rb:32
8686
- msgid "Instance update"
8881
+ #: action_names.rb:49
8882
+ msgid "Reindex subscriptions"
8687
8883
  msgstr ""
8688
8884
 
8689
- #: action_names.rb:34
8690
- msgid "Update content urls"
8885
+ #: action_names.rb:51
8886
+ msgid "Discover"
8691
8887
  msgstr ""
8692
8888
 
8693
- #: action_names.rb:45
8694
- msgid "Hypervisors update"
8889
+ #: action_names.rb:52
8890
+ msgid "Fetch pxe files"
8695
8891
  msgstr ""
8696
8892
 
8697
- #: action_names.rb:46
8698
- msgid "Hypervisors"
8893
+ #: action_names.rb:53
8894
+ msgid "Filtered index content"
8699
8895
  msgstr ""
8700
8896
 
8701
- #: action_names.rb:49
8702
- msgid "Auto attach subscriptions"
8897
+ #: action_names.rb:55
8898
+ msgid "Index content"
8703
8899
  msgstr ""
8704
8900
 
8705
- #: action_names.rb:59
8706
- msgid "Promote"
8901
+ #: action_names.rb:56
8902
+ msgid "Index errata"
8707
8903
  msgstr ""
8708
8904
 
8709
- #: action_names.rb:60
8710
- msgid "Incremental Update of Content View Version(s) "
8905
+ #: action_names.rb:57
8906
+ msgid "Index module streams"
8711
8907
  msgstr ""
8712
8908
 
8713
- #: action_names.rb:61
8714
- msgid "Sync capsule"
8909
+ #: action_names.rb:58
8910
+ msgid "Index package groups"
8715
8911
  msgstr ""
8716
8912
 
8717
- #: action_names.rb:67
8718
- msgid "Abstract async task"
8913
+ #: action_names.rb:59
8914
+ msgid "Instance update"
8719
8915
  msgstr ""
8720
8916
 
8721
- #: action_names.rb:68
8722
- msgid "Import Puppet classes"
8917
+ #: action_names.rb:62
8918
+ msgid "Update content urls"
8723
8919
  msgstr ""
8724
8920
 
8725
- #: action_names.rb:69
8726
- msgid "Import facts"
8921
+ #: action_names.rb:63
8922
+ msgid "Update http proxy details"
8923
+ msgstr ""
8924
+
8925
+ #: action_names.rb:66
8926
+ msgid "Update redhat repository"
8727
8927
  msgstr ""
8728
8928
 
8729
8929
  #: action_names.rb:70
8730
- msgid "Action with sub plans"
8930
+ msgid "Update http proxy"
8731
8931
  msgstr ""