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/ko/katello.po CHANGED
@@ -24,12 +24,18 @@ msgstr ""
24
24
  msgid " %{errata_count} Errata"
25
25
  msgstr ""
26
26
 
27
+ msgid " %{modulemd_count} Module Stream(s)"
28
+ msgstr ""
29
+
27
30
  msgid " %{package_count} Package(s)"
28
31
  msgstr ""
29
32
 
30
33
  msgid " %{puppet_module_count} Puppet Module(s)"
31
34
  msgstr ""
32
35
 
36
+ msgid " Content view updated."
37
+ msgstr ""
38
+
33
39
  msgid " Either select the latest content view or the content view version. Cannot set both."
34
40
  msgstr ""
35
41
 
@@ -282,12 +288,12 @@ msgstr ""
282
288
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
283
289
  msgstr ""
284
290
 
285
- msgid "A Content View can be added by using the \"New content view\" button below."
286
- msgstr ""
287
-
288
291
  msgid "A backend service [ %s ] is unreachable"
289
292
  msgstr "백엔드 서비스 [ %s ]를 사용할 수 없음 "
290
293
 
294
+ msgid "A content view can be added by using the \"New content view\" button below."
295
+ msgstr ""
296
+
291
297
  msgid "A content_type must be provided."
292
298
  msgstr "content_type을 지정해야 합니다. "
293
299
 
@@ -542,12 +548,24 @@ msgstr ""
542
548
  msgid "Author"
543
549
  msgstr ""
544
550
 
551
+ msgid "Auto Enablement may only be set on custom repositories."
552
+ msgstr ""
553
+
545
554
  msgid "Auto Publish - Triggered by '%s'"
546
555
  msgstr ""
547
556
 
548
557
  msgid "Auto attach subscriptions"
549
558
  msgstr "서브스크립션 자동 첨부"
550
559
 
560
+ msgid "Autopublish"
561
+ msgstr ""
562
+
563
+ msgid "Autosearch"
564
+ msgstr ""
565
+
566
+ msgid "Autosearch delay"
567
+ msgstr ""
568
+
551
569
  msgid "Available Entitlements"
552
570
  msgstr ""
553
571
 
@@ -569,6 +587,9 @@ msgstr "비활성화할 Basearch "
569
587
  msgid "Basearch to enable"
570
588
  msgstr "활성화할 Basearch "
571
589
 
590
+ msgid "Batch size to sync repositories in."
591
+ msgstr ""
592
+
572
593
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
573
594
  msgid "Beta"
574
595
  msgstr "베타 "
@@ -797,6 +818,9 @@ msgstr ""
797
818
  msgid "Cannot validate contents on non-yum/deb repositories."
798
819
  msgstr ""
799
820
 
821
+ msgid "Check if a connection can be made to Red Hat Subscription Management."
822
+ msgstr ""
823
+
800
824
  msgid "Check services before actions"
801
825
  msgstr ""
802
826
 
@@ -916,6 +940,9 @@ msgstr ""
916
940
  msgid "Content View Dependency Solving Default"
917
941
  msgstr ""
918
942
 
943
+ msgid "Content View Details"
944
+ msgstr ""
945
+
919
946
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
920
947
  #, fuzzy
921
948
  msgid "Content View Filter id"
@@ -949,6 +976,9 @@ msgstr "컨텐츠 보기 "
949
976
  msgid "Content files to upload. Can be a single file or array of files."
950
977
  msgstr "업로드할 컨텐츠 파일입니다. 단일 파일 또는 파일 어레이를 지정할 수 있습니다."
951
978
 
979
+ msgid "Content host must be unregistered before performing this action."
980
+ msgstr ""
981
+
952
982
  msgid "Content source ID"
953
983
  msgstr ""
954
984
 
@@ -980,6 +1010,9 @@ msgstr "숫자로된 컨텐츠 뷰 ID "
980
1010
  msgid "Content view version identifier"
981
1011
  msgstr "컨텐츠 뷰 버전 ID "
982
1012
 
1013
+ msgid "Content_Host_Status"
1014
+ msgstr ""
1015
+
983
1016
  msgid "Contents of requirement yaml file to sync from URL"
984
1017
  msgstr ""
985
1018
 
@@ -1480,10 +1513,13 @@ msgstr "비활성화 "
1480
1513
  msgid "Disable Red Hat Insights."
1481
1514
  msgstr ""
1482
1515
 
1516
+ msgid "Disable Simple Content Access"
1517
+ msgstr ""
1518
+
1483
1519
  msgid "Disable a repository from the set"
1484
1520
  msgstr ""
1485
1521
 
1486
- msgid "Disabled"
1522
+ msgid "Disable simple content access for a manifest"
1487
1523
  msgstr ""
1488
1524
 
1489
1525
  msgid "Disconnected mode"
@@ -1552,9 +1588,15 @@ msgstr ""
1552
1588
  msgid "Enable"
1553
1589
  msgstr "활성화 "
1554
1590
 
1591
+ msgid "Enable Simple Content Access"
1592
+ msgstr ""
1593
+
1555
1594
  msgid "Enable a repository from the set"
1556
1595
  msgstr "세트에서 리포지터리 활성화 "
1557
1596
 
1597
+ msgid "Enable simple content access for a manifest"
1598
+ msgstr ""
1599
+
1558
1600
  msgid "Enable/Disable auto publish of composite view"
1559
1601
  msgstr ""
1560
1602
 
@@ -1783,12 +1825,18 @@ msgstr "지정된 복합 버전에 있는 구성 요소인 버전을 필터링 "
1783
1825
  msgid "Filtered index content"
1784
1826
  msgstr ""
1785
1827
 
1828
+ msgid "Filters"
1829
+ msgstr ""
1830
+
1786
1831
  msgid "Finish action timeout"
1787
1832
  msgstr ""
1788
1833
 
1789
1834
  msgid "Finished"
1790
1835
  msgstr ""
1791
1836
 
1837
+ msgid "For pages that support it, automatically perform search while typing in search input."
1838
+ msgstr ""
1839
+
1792
1840
  msgid ""
1793
1841
  "Force a sync and validate the checksums of all content. Non-yum repositories (or those with \\\n"
1794
1842
  " On Demand download policy) are skipped."
@@ -1880,6 +1928,9 @@ msgstr ""
1880
1928
  msgid "Has to be > 0"
1881
1929
  msgstr ""
1882
1930
 
1931
+ msgid "History"
1932
+ msgstr ""
1933
+
1883
1934
  msgid "Host"
1884
1935
  msgstr "호스트 "
1885
1936
 
@@ -1961,6 +2012,9 @@ msgstr ""
1961
2012
  msgid "Hosts with Installable Errata"
1962
2013
  msgstr "설치 가능한 에라타를 갖는 호스트 "
1963
2014
 
2015
+ msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2016
+ msgstr ""
2017
+
1964
2018
  msgid "How the logic of solving dependencies in a Content View is managed. Conservative will only add packages to solve the dependencies if the package needed doesn't exist. Greedy will pull in the latest package to solve a dependency even if it already does exist in the repository."
1965
2019
  msgstr ""
1966
2020
 
@@ -2099,6 +2153,9 @@ msgstr ""
2099
2153
  msgid "Identifiers for Lifecycle Environment"
2100
2154
  msgstr ""
2101
2155
 
2156
+ msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2157
+ msgstr ""
2158
+
2102
2159
  msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2103
2160
  msgstr ""
2104
2161
 
@@ -2141,6 +2198,9 @@ msgstr ""
2141
2198
  msgid "Import Manifest"
2142
2199
  msgstr "매니페스트 가져오기 "
2143
2200
 
2201
+ msgid "Import New Manifest"
2202
+ msgstr ""
2203
+
2144
2204
  msgid "Import Puppet classes"
2145
2205
  msgstr ""
2146
2206
 
@@ -2180,6 +2240,9 @@ msgstr ""
2180
2240
  msgid "Incremental Update of %{content_view_count} Content View Version(s) "
2181
2241
  msgstr ""
2182
2242
 
2243
+ msgid "Incremental update requires at least one content unit"
2244
+ msgstr ""
2245
+
2183
2246
  msgid "Incremental update specified for composite %{name} version %{version}, but no components updated."
2184
2247
  msgstr "복합 %{name} v버전 %{version}에 대해 증분 업데이트가 지정되었지만 구성 요소가 업데이트되지 않았습니다."
2185
2248
 
@@ -2394,6 +2457,9 @@ msgstr ""
2394
2457
  msgid "Kickstart repository was not set for host '%{host}'"
2395
2458
  msgstr ""
2396
2459
 
2460
+ msgid "Label"
2461
+ msgstr ""
2462
+
2397
2463
  msgid "Label of the content"
2398
2464
  msgstr "컨텐츠 레이블 "
2399
2465
 
@@ -2406,6 +2472,9 @@ msgstr ""
2406
2472
  msgid "Learn more about adding Subscription Manifests"
2407
2473
  msgstr ""
2408
2474
 
2475
+ msgid "Learn more about your overall subscription usage (opens in a new tab)"
2476
+ msgstr ""
2477
+
2409
2478
  msgid "Library lifecycle environments may not be deleted."
2410
2479
  msgstr "라이브러라 라이프사이클 환경은 삭제할 수 없습니다. "
2411
2480
 
@@ -2712,6 +2781,9 @@ msgstr ""
2712
2781
  msgid "Manifest refreshed"
2713
2782
  msgstr ""
2714
2783
 
2784
+ msgid "Mark Content Host Statuses as Unknown for %s"
2785
+ msgstr ""
2786
+
2715
2787
  msgid "Matched"
2716
2788
  msgstr ""
2717
2789
 
@@ -2825,9 +2897,6 @@ msgstr "새 패키지: %{count} (%{size})."
2825
2897
  msgid "No"
2826
2898
  msgstr ""
2827
2899
 
2828
- msgid "No Content Guard configured!"
2829
- msgstr ""
2830
-
2831
2900
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
2832
2901
  msgid "No Content View"
2833
2902
  msgstr "컨텐츠 보기가 없습니다 "
@@ -2893,6 +2962,9 @@ msgstr ""
2893
2962
  msgid "No manifest file uploaded"
2894
2963
  msgstr "업로드된 매니페스트 파일이 없음 "
2895
2964
 
2965
+ msgid "No matching content views found"
2966
+ msgstr ""
2967
+
2896
2968
  msgid "No new packages installed"
2897
2969
  msgstr "설치된 새 패키지가 없음 "
2898
2970
 
@@ -2971,6 +3043,9 @@ msgstr "비 시스템 이벤트 "
2971
3043
  msgid "None"
2972
3044
  msgstr "없음 "
2973
3045
 
3046
+ msgid "None provided"
3047
+ msgstr ""
3048
+
2974
3049
  msgid "Not Specified"
2975
3050
  msgstr ""
2976
3051
 
@@ -3034,6 +3109,9 @@ msgstr ""
3034
3109
  msgid "One or more hosts not found"
3035
3110
  msgstr ""
3036
3111
 
3112
+ msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
3113
+ msgstr ""
3114
+
3037
3115
  msgid "One or more packages failed to sync properly."
3038
3116
  msgstr "하나 이상의 패키지가 올바르게 동기화되지 않았습니다. "
3039
3117
 
@@ -3062,6 +3140,9 @@ msgstr "조직 %s이 삭제되어 있습니다. "
3062
3140
  msgid "Organization ID"
3063
3141
  msgstr "조직 ID"
3064
3142
 
3143
+ msgid "Organization ID is required"
3144
+ msgstr ""
3145
+
3065
3146
  msgid "Organization cannot be blank."
3066
3147
  msgstr "조직을 빈 칸으로 둘 수 없습니다. "
3067
3148
 
@@ -3592,6 +3673,9 @@ msgstr "Red Hat 공급자에 대해 이전에 가져온 매니페스트를 새
3592
3673
  msgid "Register a host with subscription and information"
3593
3674
  msgstr ""
3594
3675
 
3676
+ msgid "Register host '%s' before attaching subscriptions"
3677
+ msgstr ""
3678
+
3595
3679
  msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
3596
3680
  msgstr ""
3597
3681
 
@@ -4082,6 +4166,9 @@ msgstr "소켓: %s"
4082
4166
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
4083
4167
  msgstr ""
4084
4168
 
4169
+ msgid "Solve dependencies"
4170
+ msgstr ""
4171
+
4085
4172
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
4086
4173
  msgstr ""
4087
4174
 
@@ -4134,6 +4221,9 @@ msgstr ""
4134
4221
  msgid "Subscription"
4135
4222
  msgstr "서브스크립션 "
4136
4223
 
4224
+ msgid "Subscription Allocation"
4225
+ msgstr ""
4226
+
4137
4227
  msgid "Subscription Details"
4138
4228
  msgstr ""
4139
4229
 
@@ -4161,6 +4251,9 @@ msgstr "서브스크립션 풀 uuid"
4161
4251
  msgid "Subscription Status"
4162
4252
  msgstr ""
4163
4253
 
4254
+ msgid "Subscription Watch"
4255
+ msgstr ""
4256
+
4164
4257
  msgid "Subscription expiration notification"
4165
4258
  msgstr ""
4166
4259
 
@@ -4345,6 +4438,9 @@ msgstr "태스크 취소됨 "
4345
4438
  msgid "Task detail"
4346
4439
  msgstr ""
4347
4440
 
4441
+ msgid "Tasks"
4442
+ msgstr ""
4443
+
4348
4444
  msgid "Temporary"
4349
4445
  msgstr ""
4350
4446
 
@@ -4406,7 +4502,7 @@ msgstr ""
4406
4502
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4407
4503
  msgstr ""
4408
4504
 
4409
- msgid "The manifest imported within Organization %{subject} is no longer valid. Attempted CDN access returned Forbidden. Refreshing the manifest may resolve this issue."
4505
+ msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
4410
4506
  msgstr ""
4411
4507
 
4412
4508
  msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
@@ -4459,6 +4555,9 @@ msgid ""
4459
4555
  " content source, operating system, and architecture"
4460
4556
  msgstr ""
4461
4557
 
4558
+ msgid "The specified organization is in Simple Content Access mode. Attaching subscriptions is disabled"
4559
+ msgstr ""
4560
+
4462
4561
  msgid "The subscription cannot be found upstream"
4463
4562
  msgstr ""
4464
4563
 
@@ -4514,6 +4613,9 @@ msgstr ""
4514
4613
  msgid "This Host is not currently registered with subscription-manager."
4515
4614
  msgstr ""
4516
4615
 
4616
+ msgid "This Organization's subscription manifest has expired. Please import a new manifest."
4617
+ msgstr ""
4618
+
4517
4619
  msgid "This action doesn't support package groups"
4518
4620
  msgstr ""
4519
4621
 
@@ -4526,6 +4628,9 @@ msgstr ""
4526
4628
  msgid "This content view version doesn't have a history."
4527
4629
  msgstr ""
4528
4630
 
4631
+ msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
4632
+ msgstr ""
4633
+
4529
4634
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
4530
4635
  msgstr ""
4531
4636
 
@@ -4538,6 +4643,9 @@ msgstr ""
4538
4643
  msgid "This is disabled because disconnected mode is enabled."
4539
4644
  msgstr ""
4540
4645
 
4646
+ msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
4647
+ msgstr ""
4648
+
4541
4649
  msgid "This is disabled because no manifest exists"
4542
4650
  msgstr ""
4543
4651
 
@@ -4584,10 +4692,13 @@ msgstr ""
4584
4692
  msgid "Title"
4585
4693
  msgstr "제목"
4586
4694
 
4695
+ msgid "Toggling Simple Content Access will refresh your manifest."
4696
+ msgstr ""
4697
+
4587
4698
  msgid "Total module count: %s."
4588
4699
  msgstr "총 모듈 수: %s."
4589
4700
 
4590
- msgid "Total tasks: "
4701
+ msgid "Total steps: "
4591
4702
  msgstr ""
4592
4703
 
4593
4704
  msgid "Tracer profile uploaded successfully"
@@ -4602,13 +4713,13 @@ msgstr ""
4602
4713
  msgid "Trigger an auto-attach of subscriptions on one or more hosts"
4603
4714
  msgstr ""
4604
4715
 
4605
- msgid "Trying to cancel the synchronization..."
4716
+ msgid "Try changing your search settings."
4606
4717
  msgstr ""
4607
4718
 
4608
- msgid "Type"
4719
+ msgid "Trying to cancel the synchronization..."
4609
4720
  msgstr ""
4610
4721
 
4611
- msgid "USMA"
4722
+ msgid "Type"
4612
4723
  msgstr ""
4613
4724
 
4614
4725
  msgid "UUID"
@@ -4677,6 +4788,9 @@ msgstr "서브스크립션 할당 해제 "
4677
4788
  msgid "Unentitled"
4678
4789
  msgstr ""
4679
4790
 
4791
+ msgid "Unfiltered params array: %s."
4792
+ msgstr ""
4793
+
4680
4794
  msgid "Uninstall packages remotely"
4681
4795
  msgstr "원격으로 패키지 설치 해제 "
4682
4796
 
@@ -4702,6 +4816,9 @@ msgstr ""
4702
4816
  msgid "Unlimited"
4703
4817
  msgstr ""
4704
4818
 
4819
+ msgid "Unregister host %s before assigning an organization"
4820
+ msgstr ""
4821
+
4705
4822
  msgid "Unregister the host as a subscription consumer"
4706
4823
  msgstr ""
4707
4824
 
@@ -4886,9 +5003,6 @@ msgstr "요청 ID 업로드 "
4886
5003
  msgid "Upstream Name cannot be blank when Repository URL is provided."
4887
5004
  msgstr ""
4888
5005
 
4889
- msgid "Upstream Subscription Management Application"
4890
- msgstr ""
4891
-
4892
5006
  msgid "Upstream identity certificate not available"
4893
5007
  msgstr "업스트림 ID 인증서를 사용할 수 없습니다 "
4894
5008
 
@@ -4996,6 +5110,9 @@ msgstr ""
4996
5110
  msgid "Yes"
4997
5111
  msgstr ""
4998
5112
 
5113
+ msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
5114
+ msgstr ""
5115
+
4999
5116
  msgid "You are not allowed to promote to Environments %s"
5000
5117
  msgstr "환경 %s에 승격할 수 없습니다 "
5001
5118
 
@@ -5089,6 +5206,9 @@ msgstr "필터링할 활성키 이름 "
5089
5206
  msgid "activation keys"
5090
5207
  msgstr "활성키 "
5091
5208
 
5209
+ msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
5210
+ msgstr ""
5211
+
5092
5212
  msgid "add all packages without errata to the included/excluded list. (package filter only)"
5093
5213
  msgstr ""
5094
5214
 
@@ -5429,6 +5549,9 @@ msgstr ""
5429
5549
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5430
5550
  msgstr ""
5431
5551
 
5552
+ msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5553
+ msgstr ""
5554
+
5432
5555
  msgid "if true, will ignore the globally configured proxy when syncing"
5433
5556
  msgstr ""
5434
5557