katello 4.1.4 → 4.2.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 (240) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -2
  3. data/app/controllers/katello/api/v2/content_credentials_controller.rb +3 -3
  4. data/app/controllers/katello/api/v2/content_uploads_controller.rb +3 -1
  5. data/app/controllers/katello/api/v2/content_view_components_controller.rb +33 -1
  6. data/app/controllers/katello/api/v2/content_views_controller.rb +12 -0
  7. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -2
  9. data/app/controllers/katello/api/v2/products_controller.rb +4 -4
  10. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +3 -11
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +68 -47
  12. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +0 -28
  13. data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +26 -5
  14. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +26 -1
  15. data/app/lib/actions/candlepin/environment/destroy.rb +2 -0
  16. data/app/lib/actions/katello/agent_action.rb +2 -2
  17. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +3 -2
  18. data/app/lib/actions/katello/{gpg_key → content_credential}/update.rb +1 -1
  19. data/app/lib/actions/katello/content_view/publish.rb +6 -1
  20. data/app/lib/actions/katello/content_view_version/create_repos.rb +1 -1
  21. data/app/lib/actions/katello/content_view_version/incremental_update.rb +0 -47
  22. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +1 -1
  23. data/app/lib/actions/katello/repository/clone_contents.rb +1 -7
  24. data/app/lib/actions/katello/repository/clone_to_environment.rb +1 -7
  25. data/app/lib/actions/katello/repository/create.rb +4 -8
  26. data/app/lib/actions/katello/repository/create_root.rb +1 -1
  27. data/app/lib/actions/katello/repository/destroy.rb +1 -3
  28. data/app/lib/actions/katello/repository/import_upload.rb +3 -2
  29. data/app/lib/actions/katello/repository/instance_update.rb +1 -1
  30. data/app/lib/actions/katello/repository/metadata_generate.rb +2 -8
  31. data/app/lib/actions/katello/repository/multi_clone_contents.rb +0 -1
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +1 -4
  33. data/app/lib/actions/katello/repository/remove_content.rb +6 -4
  34. data/app/lib/actions/katello/repository/sync.rb +5 -25
  35. data/app/lib/actions/katello/repository/update.rb +1 -2
  36. data/app/lib/actions/katello/repository/update_http_proxy_details.rb +2 -5
  37. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  38. data/app/lib/actions/katello/repository/upload_files.rb +8 -3
  39. data/app/lib/actions/katello/repository/upload_package_group.rb +2 -11
  40. data/app/lib/actions/katello/repository/verify_checksum.rb +0 -1
  41. data/app/lib/actions/katello/repository_set/enable_repository.rb +1 -1
  42. data/app/lib/actions/pulp3/orchestration/repository/create.rb +2 -2
  43. data/app/lib/actions/pulp3/repository/create.rb +3 -4
  44. data/app/lib/actions/pulp3/repository/create_remote.rb +1 -6
  45. data/app/lib/actions/pulp3/repository/repair.rb +4 -0
  46. data/app/lib/katello/errors.rb +1 -0
  47. data/app/lib/katello/http_resource.rb +26 -73
  48. data/app/lib/katello/qpid/connection.rb +1 -3
  49. data/app/lib/katello/resources/candlepin/consumer.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/environment.rb +2 -0
  51. data/app/lib/katello/resources/registry.rb +7 -20
  52. data/app/lib/katello/util/http_proxy.rb +0 -3
  53. data/app/lib/katello/validators/gpg_key_content_validator.rb +1 -1
  54. data/app/models/katello/authorization/{gpg_key.rb → content_credential.rb} +1 -1
  55. data/app/models/katello/authorization/product.rb +0 -4
  56. data/app/models/katello/concerns/host_managed_extensions.rb +2 -16
  57. data/app/models/katello/concerns/organization_extensions.rb +1 -1
  58. data/app/models/katello/concerns/pulp_database_unit.rb +13 -5
  59. data/app/models/katello/concerns/smart_proxy_extensions.rb +45 -41
  60. data/app/models/katello/{gpg_key.rb → content_credential.rb} +4 -4
  61. data/app/models/katello/content_view.rb +6 -1
  62. data/app/models/katello/generic_content_unit.rb +16 -0
  63. data/app/models/katello/glue/pulp/repos.rb +9 -25
  64. data/app/models/katello/kt_environment.rb +1 -1
  65. data/app/models/katello/product.rb +4 -4
  66. data/app/models/katello/repository.rb +13 -7
  67. data/app/models/katello/repository_generic_content_unit.rb +7 -0
  68. data/app/models/katello/root_repository.rb +38 -7
  69. data/app/models/setting/content.rb +5 -0
  70. data/app/services/cert/certs.rb +16 -8
  71. data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
  72. data/app/services/katello/candlepin/consumer.rb +6 -0
  73. data/app/services/katello/component_view_presenter.rb +27 -0
  74. data/app/services/katello/pulp/repository.rb +1 -1
  75. data/app/services/katello/pulp/server.rb +2 -2
  76. data/app/services/katello/pulp3/api/core.rb +4 -0
  77. data/app/services/katello/pulp3/api/generic.rb +68 -0
  78. data/app/services/katello/pulp3/generic_content_unit.rb +29 -0
  79. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -1
  80. data/app/services/katello/pulp3/repository/generic.rb +94 -0
  81. data/app/services/katello/pulp3/repository/yum.rb +4 -5
  82. data/app/services/katello/pulp3/repository.rb +27 -12
  83. data/app/services/katello/pulp3/repository_mirror.rb +2 -2
  84. data/app/services/katello/pulp3/smart_proxy_repository.rb +4 -4
  85. data/app/services/katello/registration_manager.rb +18 -7
  86. data/app/services/katello/repository_type.rb +59 -1
  87. data/app/services/katello/repository_type_manager.rb +116 -24
  88. data/app/views/katello/api/v2/content_views/base.json.rabl +4 -4
  89. data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
  90. data/app/views/smart_proxies/plugins/_pulpcore.html.erb +2 -5
  91. data/app/views/smart_proxies/pulp_status.html.erb +0 -7
  92. data/config/katello.yaml.example +0 -21
  93. data/config/routes/api/v2.rb +2 -1
  94. data/db/functions/deb_version_cmp_v01.sql +200 -0
  95. data/db/migrate/20171110082124_add_ssl_certs_to_products_and_repos.rb +5 -1
  96. data/db/migrate/20200402130013_add_repsoitory_docker_meta_tag_f_key.rb +3 -1
  97. data/db/migrate/20210624221630_katello_generic_content.rb +22 -0
  98. data/db/migrate/20210625095042_add_retain_package_versions_count.rb +9 -0
  99. data/db/migrate/20210628182553_add_generic_remote_options_to_root_repository.rb +5 -0
  100. data/db/migrate/20210714140440_remove_repo_export_permission.rb +5 -0
  101. data/db/migrate/20210721163730_change_gpg_keys_to_content_credentials.rb +8 -0
  102. data/db/migrate/20210728130748_create_function_deb_version_cmp.rb +12 -0
  103. data/db/seeds.d/111-upgrade_tasks.rb +1 -2
  104. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +7 -5
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +4 -1
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +2 -1
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +25 -33
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +1 -6
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +10 -2
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +9 -0
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +0 -2
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +1 -25
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +31 -13
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +11 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/aggregate-task.factory.js +3 -3
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task.factory.js +1 -1
  123. data/lib/katello/engine.rb +2 -4
  124. data/lib/katello/permission_creator.rb +6 -12
  125. data/lib/katello/plugin.rb +76 -80
  126. data/lib/katello/repository_types/python.rb +37 -0
  127. data/lib/katello/tasks/reimport.rake +0 -9
  128. data/lib/katello/tasks/repository.rake +3 -4
  129. data/lib/katello/version.rb +1 -1
  130. data/locale/action_names.rb +28 -29
  131. data/locale/bn/katello.po +699 -221
  132. data/locale/cs/katello.po +167 -59
  133. data/locale/de/katello.po +585 -352
  134. data/locale/en/katello.po +167 -59
  135. data/locale/es/katello.po +1388 -1189
  136. data/locale/fr/katello.po +1740 -1494
  137. data/locale/gu/katello.po +896 -416
  138. data/locale/hi/katello.po +892 -415
  139. data/locale/it/katello.po +371 -170
  140. data/locale/ja/katello.po +1657 -1439
  141. data/locale/katello.pot +933 -736
  142. data/locale/kn/katello.po +894 -416
  143. data/locale/ko/katello.po +515 -317
  144. data/locale/mr/katello.po +857 -415
  145. data/locale/or/katello.po +894 -416
  146. data/locale/pa/katello.po +874 -411
  147. data/locale/pt/katello.po +347 -154
  148. data/locale/pt_BR/katello.po +1398 -1215
  149. data/locale/ru/katello.po +671 -463
  150. data/locale/ta/katello.po +697 -221
  151. data/locale/te/katello.po +891 -415
  152. data/locale/zh_CN/katello.po +2029 -1845
  153. data/locale/zh_TW/katello.po +735 -407
  154. data/package.json +3 -1
  155. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
  156. data/webpack/components/RoutedTabs/RoutedTabs.js +7 -8
  157. data/webpack/components/Table/TableWrapper.js +19 -11
  158. data/webpack/components/Table/helpers.js +1 -1
  159. data/webpack/components/extensions/HostDetails/Tabs/ContentTab.js +42 -0
  160. data/webpack/components/extensions/HostDetails/Tabs/SubscriptionTab.js +12 -0
  161. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +4 -0
  162. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +1 -1
  163. data/webpack/components/extensions/RegistrationCommands/index.js +1 -2
  164. data/webpack/components/pf3Table/formatters/selectionHeaderCellFormatter.js +2 -1
  165. data/webpack/fills_index.js +4 -1
  166. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -4
  167. data/webpack/redux/reducers/RedHatRepositories/enabled.js +4 -1
  168. data/webpack/scenes/ContentViews/ContentViewsActions.js +16 -1
  169. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -0
  170. data/webpack/scenes/ContentViews/ContentViewsPage.js +12 -22
  171. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +4 -3
  172. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +25 -14
  173. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +4 -2
  174. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +153 -0
  175. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +21 -10
  176. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +157 -19
  177. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +100 -108
  178. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +140 -16
  179. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/publishedContentViewDetails.fixtures.json +367 -0
  180. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +59 -6
  181. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +43 -0
  182. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +44 -13
  183. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +161 -0
  184. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +54 -0
  185. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterCreateResult.fixtures.json +124 -0
  186. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -6
  187. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +7 -6
  188. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +4 -3
  189. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +71 -12
  190. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +77 -0
  191. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +13 -12
  192. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +2 -2
  193. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +17 -14
  194. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +3 -3
  195. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +2 -2
  196. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +6 -2
  197. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +61 -20
  198. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskInProgressResponse.fixtures.json +71 -0
  199. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskResponse.fixtures.json +75 -0
  200. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +86 -1
  201. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +713 -0
  202. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  203. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +184 -0
  204. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +104 -0
  205. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +71 -0
  206. data/webpack/scenes/ContentViews/Publish/ContentViewPublishSelectors.js +17 -0
  207. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +145 -0
  208. data/webpack/scenes/ContentViews/Publish/__tests__/environmentPaths.fixtures.json +352 -0
  209. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +184 -0
  210. data/webpack/scenes/ContentViews/Publish/__tests__/publishResponse.fixture.json +69 -0
  211. data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +3 -0
  212. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +75 -48
  213. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +15 -2
  214. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +6 -10
  215. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +22 -10
  216. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathActions.js +12 -0
  217. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathConstants.js +2 -0
  218. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathSelectors.js +16 -0
  219. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +72 -0
  220. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +8 -0
  221. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +85 -0
  222. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +9 -8
  223. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +4 -25
  224. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -3
  225. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
  226. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +4 -2
  227. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +24 -0
  228. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Table.js +4 -1
  229. data/webpack/scenes/Subscriptions/index.js +1 -4
  230. metadata +74 -39
  231. data/app/lib/actions/candlepin/environment/create.rb +0 -21
  232. data/app/lib/actions/foreman/environment/destroy.rb +0 -23
  233. data/app/lib/actions/katello/content_view/environment_create.rb +0 -21
  234. data/app/lib/actions/katello/repository/export.rb +0 -85
  235. data/app/lib/actions/katello/repository/purge_empty_content.rb +0 -16
  236. data/app/lib/actions/katello/repository/upload_errata.rb +0 -38
  237. data/app/lib/katello/util/proxy_uri.rb +0 -64
  238. data/app/models/katello/rhsm_fact_importer.rb +0 -20
  239. data/app/models/katello/rhsm_fact_name.rb +0 -17
  240. data/app/models/katello/rhsm_fact_parser.rb +0 -120
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: 2021-06-21 13:44+0000\n"
12
- "PO-Revision-Date: 2021-06-21 13:44+0000\n"
11
+ "POT-Creation-Date: 2021-07-30 21:06+0000\n"
12
+ "PO-Revision-Date: 2021-07-30 21:06+0000\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -27,39 +27,38 @@ msgid "UUID of the consumer"
27
27
  msgstr ""
28
28
 
29
29
  #: ../app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb:39
30
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:298
31
30
  msgid "Couldn't find consumer '%s'"
32
31
  msgstr ""
33
32
 
34
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:152
33
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:153
35
34
  msgid "Update services requiring restart"
36
35
  msgstr ""
37
36
 
38
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:158
37
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:159
39
38
  msgid "Tracer profile uploaded successfully"
40
39
  msgstr ""
41
40
 
42
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:180
41
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:181
43
42
  msgid "Update the information about enabled repositories"
44
43
  msgstr ""
45
44
 
46
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:187
45
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:188
47
46
  msgid "List of enabled repo urls for the repo (Only first is used.)"
48
47
  msgstr ""
49
48
 
50
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:190
49
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:191
51
50
  msgid "UUID of the system"
52
51
  msgstr ""
53
52
 
54
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:193
53
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:194
55
54
  msgid "The request did not contain any repository information."
56
55
  msgstr ""
57
56
 
58
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:220
57
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:221
59
58
  msgid "Deleted consumer '%s'"
60
59
  msgstr ""
61
60
 
62
- #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:254
61
+ #: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:255
63
62
  msgid "Facts successfully updated."
64
63
  msgstr ""
65
64
 
@@ -548,8 +547,7 @@ msgstr ""
548
547
  #: ../app/controllers/katello/api/v2/content_imports_controller.rb:41
549
548
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:22
550
549
  #: ../app/controllers/katello/api/v2/content_views_controller.rb:65
551
- #: ../app/controllers/katello/api/v2/errata_controller.rb:12
552
- #: ../app/controllers/katello/api/v2/errata_controller.rb:67
550
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:10
553
551
  #: ../app/controllers/katello/api/v2/packages_controller.rb:33
554
552
  #: ../app/controllers/katello/api/v2/srpms_controller.rb:7
555
553
  #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:80
@@ -599,7 +597,7 @@ msgid "File contents"
599
597
  msgstr ""
600
598
 
601
599
  #: ../app/controllers/katello/api/v2/content_credentials_controller.rb:99
602
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:382
600
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:372
603
601
  msgid "No file uploaded"
604
602
  msgstr ""
605
603
 
@@ -754,7 +752,7 @@ msgid "repository id"
754
752
  msgstr ""
755
753
 
756
754
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:11
757
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:23
755
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:25
758
756
  msgid "Size of file to upload"
759
757
  msgstr ""
760
758
 
@@ -763,103 +761,103 @@ msgid "Checksum of file to upload"
763
761
  msgstr ""
764
762
 
765
763
  #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:13
766
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:359
767
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:370
768
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:399
764
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:349
765
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:360
766
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:389
769
767
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
770
768
  msgstr ""
771
769
 
772
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:20
770
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:22
773
771
  msgid "Upload a chunk of the file's content"
774
772
  msgstr ""
775
773
 
776
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:21
777
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:33
778
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:395
774
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:23
775
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:35
776
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:385
779
777
  msgid "Repository id"
780
778
  msgstr ""
781
779
 
782
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:22
783
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:34
780
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:24
781
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:36
784
782
  msgid "Upload request id"
785
783
  msgstr ""
786
784
 
787
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:24
785
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:26
788
786
  msgid "The offset in the file where the content starts"
789
787
  msgstr ""
790
788
 
791
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:25
789
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:27
792
790
  msgid "The actual file contents"
793
791
  msgstr ""
794
792
 
795
- #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:32
793
+ #: ../app/controllers/katello/api/v2/content_uploads_controller.rb:34
796
794
  msgid "Delete an upload request"
797
795
  msgstr ""
798
796
 
799
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:11
797
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:12
800
798
  msgid "List components attached to this content view"
801
799
  msgstr ""
802
800
 
803
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:12
804
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:33
805
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:65
806
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:82
801
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:13
802
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:61
803
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:93
804
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:110
807
805
  msgid "composite content view identifier"
808
806
  msgstr ""
809
807
 
810
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:32
808
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:60
811
809
  msgid "Add components to the content view"
812
810
  msgstr ""
813
811
 
814
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:34
812
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:62
815
813
  msgid "Array of components to add"
816
814
  msgstr ""
817
815
 
818
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:35
819
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:84
816
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:63
817
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:112
820
818
  msgid "identifier of the version of the component content view"
821
819
  msgstr ""
822
820
 
823
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:37
821
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:65
824
822
  msgid "content view identifier of the component who's latest version is desired"
825
823
  msgstr ""
826
824
 
827
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:38
825
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:66
828
826
  msgid "true if the latest version of the component's content view is desired"
829
827
  msgstr ""
830
828
 
831
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:64
829
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:92
832
830
  msgid "Remove components from the content view"
833
831
  msgstr ""
834
832
 
835
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:66
833
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:94
836
834
  msgid ""
837
835
  "Array of content view component IDs to remove. Identifier of the component ass"
838
836
  "ociation"
839
837
  msgstr ""
840
838
 
841
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:73
839
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:101
842
840
  msgid "Show a content view component"
843
841
  msgstr ""
844
842
 
845
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:74
843
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:102
846
844
  msgid "composite content view numeric identifier"
847
845
  msgstr ""
848
846
 
849
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:75
850
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:83
847
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:103
848
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:111
851
849
  msgid "content view component ID. Identifier of the component association"
852
850
  msgstr ""
853
851
 
854
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:81
852
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:109
855
853
  msgid "Update a component associated with the content view"
856
854
  msgstr ""
857
855
 
858
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:85
856
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:113
859
857
  msgid "true if the latest version of the components content view is desired"
860
858
  msgstr ""
861
859
 
862
- #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:95
860
+ #: ../app/controllers/katello/api/v2/content_view_components_controller.rb:123
863
861
  msgid ""
864
862
  " Either select the latest content view or the content view version. Cannot set"
865
863
  " both."
@@ -1064,10 +1062,11 @@ msgid "Show a content view's history"
1064
1062
  msgstr ""
1065
1063
 
1066
1064
  #: ../app/controllers/katello/api/v2/content_view_histories_controller.rb:8
1067
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:118
1068
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:124
1069
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:137
1070
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:168
1065
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:122
1066
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:128
1067
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:141
1068
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:172
1069
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:180
1071
1070
  msgid "content view numeric identifier"
1072
1071
  msgstr ""
1073
1072
 
@@ -1107,10 +1106,12 @@ msgid "Promote a content view version"
1107
1106
  msgstr ""
1108
1107
 
1109
1108
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:53
1109
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:94
1110
1110
  msgid "force content view promotion and bypass lifecycle environment restriction"
1111
1111
  msgstr ""
1112
1112
 
1113
1113
  #: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:54
1114
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:93
1114
1115
  msgid "Identifiers for Lifecycle Environment"
1115
1116
  msgstr ""
1116
1117
 
@@ -1236,7 +1237,7 @@ msgstr ""
1236
1237
 
1237
1238
  #: ../app/controllers/katello/api/v2/content_views_controller.rb:20
1238
1239
  #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:6
1239
- #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:45
1240
+ #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:37
1240
1241
  msgid "List of repository ids"
1241
1242
  msgstr ""
1242
1243
 
@@ -1294,6 +1295,7 @@ msgid "Content view label"
1294
1295
  msgstr ""
1295
1296
 
1296
1297
  #: ../app/controllers/katello/api/v2/content_views_controller.rb:68
1298
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:122
1297
1299
  msgid "Composite content view"
1298
1300
  msgstr ""
1299
1301
 
@@ -1321,108 +1323,116 @@ msgstr ""
1321
1323
  msgid "Override the minor version number"
1322
1324
  msgstr ""
1323
1325
 
1324
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:93
1326
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:95
1325
1327
  msgid "Specify the list of units in each repo"
1326
1328
  msgstr ""
1327
1329
 
1328
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:94
1330
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:96
1329
1331
  msgid "repo label"
1330
1332
  msgstr ""
1331
1333
 
1332
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:95
1334
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:97
1333
1335
  msgid "list of rpm filename strings to include in published version"
1334
1336
  msgstr ""
1335
1337
 
1336
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:99
1338
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:101
1337
1339
  msgid ""
1338
1340
  "Directly setting package lists on composite content views is not allowed. Plea"
1339
1341
  "se update the components, then re-publish the composite."
1340
1342
  msgstr ""
1341
1343
 
1342
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:103
1344
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:105
1343
1345
  msgid ""
1344
1346
  "A CV version already exists with the same major and minor version (%{major}.%{"
1345
1347
  "minor})"
1346
1348
  msgstr ""
1347
1349
 
1348
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:107
1350
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:109
1349
1351
  msgid "Both major and minor parameters have to be used to override a CV version"
1350
1352
  msgstr ""
1351
1353
 
1352
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:117
1354
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:121
1353
1355
  msgid "Show a content view"
1354
1356
  msgstr ""
1355
1357
 
1356
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:123
1358
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:127
1357
1359
  msgid "Remove a content view from an environment"
1358
1360
  msgstr ""
1359
1361
 
1360
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:125
1362
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:129
1361
1363
  msgid "environment numeric identifier"
1362
1364
  msgstr ""
1363
1365
 
1364
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:128
1366
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:132
1365
1367
  msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
1366
1368
  msgstr ""
1367
1369
 
1368
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:136
1370
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:140
1369
1371
  msgid ""
1370
1372
  "Remove versions and/or environments from a content view and reassign systems a"
1371
1373
  "nd keys"
1372
1374
  msgstr ""
1373
1375
 
1374
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:138
1376
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:142
1375
1377
  msgid "environment numeric identifiers to be removed"
1376
1378
  msgstr ""
1377
1379
 
1378
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:139
1380
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:143
1379
1381
  msgid "content view version identifiers to be deleted"
1380
1382
  msgstr ""
1381
1383
 
1382
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:140
1384
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:144
1383
1385
  msgid "content view to reassign orphaned systems to"
1384
1386
  msgstr ""
1385
1387
 
1386
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:141
1388
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:145
1387
1389
  msgid "environment to reassign orphaned systems to"
1388
1390
  msgstr ""
1389
1391
 
1390
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:142
1392
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:146
1391
1393
  msgid "content view to reassign orphaned activation keys to"
1392
1394
  msgstr ""
1393
1395
 
1394
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:143
1396
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:147
1395
1397
  msgid "environment to reassign orphaned activation keys to"
1396
1398
  msgstr ""
1397
1399
 
1398
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:151
1400
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:155
1399
1401
  msgid ""
1400
1402
  "There either were no environments nor versions specified or there were invalid"
1401
1403
  " environments/versions specified. Please check environment_ids and content_vie"
1402
1404
  "w_version_ids parameters."
1403
1405
  msgstr ""
1404
1406
 
1405
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:167
1407
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:171
1408
+ msgid "Delete multiple filters from a content view"
1409
+ msgstr ""
1410
+
1411
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:173
1412
+ msgid "filter identifiers"
1413
+ msgstr ""
1414
+
1415
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:179
1406
1416
  msgid "Delete a content view"
1407
1417
  msgstr ""
1408
1418
 
1409
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:174
1419
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:186
1410
1420
  msgid "Make copy of a content view"
1411
1421
  msgstr ""
1412
1422
 
1413
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:175
1423
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:187
1414
1424
  msgid "Content view numeric identifier"
1415
1425
  msgstr ""
1416
1426
 
1417
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:176
1427
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:188
1418
1428
  msgid "New content view name"
1419
1429
  msgstr ""
1420
1430
 
1421
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:189
1431
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:201
1422
1432
  msgid "The default content view cannot be edited, published, or deleted."
1423
1433
  msgstr ""
1424
1434
 
1425
- #: ../app/controllers/katello/api/v2/content_views_controller.rb:212
1435
+ #: ../app/controllers/katello/api/v2/content_views_controller.rb:224
1426
1436
  msgid "Always Use Latest (currently %{version})"
1427
1437
  msgstr ""
1428
1438
 
@@ -1555,78 +1565,63 @@ msgstr ""
1555
1565
  msgid "an erratum"
1556
1566
  msgstr ""
1557
1567
 
1558
- #: ../app/controllers/katello/api/v2/errata_controller.rb:11
1568
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:9
1559
1569
  msgid "List errata"
1560
1570
  msgstr ""
1561
1571
 
1562
- #: ../app/controllers/katello/api/v2/errata_controller.rb:13
1563
- #: ../app/controllers/katello/api/v2/errata_controller.rb:66
1572
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:11
1564
1573
  #: ../app/controllers/katello/api/v2/packages_controller.rb:34
1565
1574
  #: ../app/controllers/katello/api/v2/srpms_controller.rb:10
1566
1575
  msgid "Content View Version identifier"
1567
1576
  msgstr ""
1568
1577
 
1569
- #: ../app/controllers/katello/api/v2/errata_controller.rb:14
1570
- #: ../app/controllers/katello/api/v2/errata_controller.rb:68
1578
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:12
1571
1579
  #: ../app/controllers/katello/api/v2/packages_controller.rb:35
1572
1580
  msgid "Content View Filter identifier"
1573
1581
  msgstr ""
1574
1582
 
1575
- #: ../app/controllers/katello/api/v2/errata_controller.rb:15
1576
- #: ../app/controllers/katello/api/v2/errata_controller.rb:69
1583
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:13
1577
1584
  #: ../app/controllers/katello/api/v2/packages_controller.rb:36
1578
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:254
1579
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:305
1585
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:266
1580
1586
  #: ../app/controllers/katello/api/v2/srpms_controller.rb:8
1581
1587
  msgid "Repository identifier"
1582
1588
  msgstr ""
1583
1589
 
1584
- #: ../app/controllers/katello/api/v2/errata_controller.rb:16
1585
- #: ../app/controllers/katello/api/v2/errata_controller.rb:70
1590
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:14
1586
1591
  #: ../app/controllers/katello/api/v2/packages_controller.rb:37
1587
1592
  #: ../app/controllers/katello/api/v2/srpms_controller.rb:9
1588
1593
  msgid "Environment identifier"
1589
1594
  msgstr ""
1590
1595
 
1591
- #: ../app/controllers/katello/api/v2/errata_controller.rb:17
1592
- #: ../app/controllers/katello/api/v2/errata_controller.rb:71
1596
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:15
1593
1597
  msgid "CVE identifier"
1594
1598
  msgstr ""
1595
1599
 
1596
- #: ../app/controllers/katello/api/v2/errata_controller.rb:18
1597
- #: ../app/controllers/katello/api/v2/errata_controller.rb:72
1600
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:16
1598
1601
  msgid "Host id to list applicable errata for"
1599
1602
  msgstr ""
1600
1603
 
1601
- #: ../app/controllers/katello/api/v2/errata_controller.rb:19
1602
- #: ../app/controllers/katello/api/v2/errata_controller.rb:73
1604
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:17
1603
1605
  msgid ""
1604
1606
  "Return errata that are applicable to one or more hosts (defaults to true if ho"
1605
1607
  "st_id is specified)"
1606
1608
  msgstr ""
1607
1609
 
1608
- #: ../app/controllers/katello/api/v2/errata_controller.rb:20
1609
- #: ../app/controllers/katello/api/v2/errata_controller.rb:74
1610
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:18
1610
1611
  msgid "Return errata that are upgradable on one or more hosts"
1611
1612
  msgstr ""
1612
1613
 
1613
- #: ../app/controllers/katello/api/v2/errata_controller.rb:21
1614
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:19
1614
1615
  msgid ""
1615
1616
  "Return errata that can be added to the specified object. The values 'content_"
1616
1617
  "view_version' and 'content_view_filter are supported."
1617
1618
  msgstr ""
1618
1619
 
1619
- #: ../app/controllers/katello/api/v2/errata_controller.rb:39
1620
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:37
1620
1621
  msgid "Invalid params provided - date_type must be one of %s"
1621
1622
  msgstr ""
1622
1623
 
1623
- #: ../app/controllers/katello/api/v2/errata_controller.rb:65
1624
- msgid ""
1625
- "Return errata that can be added to the Content View Version via an Incremental"
1626
- " Update. Will be removed in Katello 4.1."
1627
- msgstr ""
1628
-
1629
- #: ../app/controllers/katello/api/v2/errata_controller.rb:89
1624
+ #: ../app/controllers/katello/api/v2/errata_controller.rb:68
1630
1625
  #: ../app/controllers/katello/api/v2/packages_controller.rb:98
1631
1626
  msgid "Could not find a host with id %s"
1632
1627
  msgstr ""
@@ -1778,85 +1773,81 @@ msgstr ""
1778
1773
  msgid "ID of the host"
1779
1774
  msgstr ""
1780
1775
 
1781
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:22
1776
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:23
1782
1777
  msgid "Errata to exclusively include in the action"
1783
1778
  msgstr ""
1784
1779
 
1785
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:23
1780
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:24
1786
1781
  msgid "Search string for erratum to perform an action on"
1787
1782
  msgstr ""
1788
1783
 
1789
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:24
1784
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:25
1790
1785
  msgid "List of errata ids to perform an action on, (ex: RHSA-2019:1168)"
1791
1786
  msgstr ""
1792
1787
 
1793
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:26
1788
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:27
1794
1789
  msgid ""
1795
1790
  "Errata to explicitly exclude in the action. All other applicable errata will b"
1796
1791
  "e included in the action, unless an included parameter is passed as well."
1797
1792
  msgstr ""
1798
1793
 
1799
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:29
1794
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:30
1800
1795
  msgid "List of errata ids to exclude and not run an action on, (ex: RHSA-2019:1168)"
1801
1796
  msgstr ""
1802
1797
 
1803
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:33
1798
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:34
1804
1799
  msgid "List errata available for the content host"
1805
1800
  msgstr ""
1806
1801
 
1807
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:34
1802
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:35
1808
1803
  msgid "UUID of the content host"
1809
1804
  msgstr ""
1810
1805
 
1811
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:35
1806
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:36
1812
1807
  msgid "Calculate Applicable Errata based on a particular Content View"
1813
1808
  msgstr ""
1814
1809
 
1815
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:36
1810
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:37
1816
1811
  msgid "Calculate Applicable Errata based on a particular Environment"
1817
1812
  msgstr ""
1818
1813
 
1819
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:40
1814
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:41
1820
1815
  msgid ""
1821
1816
  "Either both parameters 'content_view_id' and 'environment_id' should be specif"
1822
1817
  "ied or neither should be specified"
1823
1818
  msgstr ""
1824
1819
 
1825
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:53
1820
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:54
1826
1821
  msgid "Schedule errata for installation using katello-agent. %s"
1827
1822
  msgstr ""
1828
1823
 
1829
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:54
1830
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:64
1831
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:73
1824
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:55
1825
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:65
1826
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:74
1832
1827
  msgid "Host ID"
1833
1828
  msgstr ""
1834
1829
 
1835
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:55
1836
- msgid "List of Errata ids to install. Will be removed in Katello 4.1."
1830
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:56
1831
+ msgid "List of Errata ids to install. Will be removed in %s"
1837
1832
  msgstr ""
1838
1833
 
1839
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:63
1834
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:64
1840
1835
  msgid "Retrieve a single errata for a host"
1841
1836
  msgstr ""
1842
1837
 
1843
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:65
1838
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:66
1844
1839
  msgid "Errata id of the erratum (RHSA-2012:108)"
1845
1840
  msgstr ""
1846
1841
 
1847
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:68
1848
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:142
1842
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:69
1843
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:115
1849
1844
  msgid "Couldn't find errata ids '%s'"
1850
1845
  msgstr ""
1851
1846
 
1852
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:72
1847
+ #: ../app/controllers/katello/api/v2/host_errata_controller.rb:73
1853
1848
  msgid "Force regenerate applicability."
1854
1849
  msgstr ""
1855
1850
 
1856
- #: ../app/controllers/katello/api/v2/host_errata_controller.rb:102
1857
- msgid "No errata has been specified."
1858
- msgstr ""
1859
-
1860
1851
  #: ../app/controllers/katello/api/v2/host_module_streams_controller.rb:12
1861
1852
  msgid "List module streams available to the host"
1862
1853
  msgstr ""
@@ -1870,7 +1861,7 @@ msgid "List of package names"
1870
1861
  msgstr ""
1871
1862
 
1872
1863
  #: ../app/controllers/katello/api/v2/host_packages_controller.rb:18
1873
- msgid "List of package group names"
1864
+ msgid "List of package group names (Deprecated)"
1874
1865
  msgstr ""
1875
1866
 
1876
1867
  #: ../app/controllers/katello/api/v2/host_packages_controller.rb:21
@@ -2168,7 +2159,9 @@ msgid ""
2168
2159
  msgstr ""
2169
2160
 
2170
2161
  #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:123
2171
- msgid "List of content (e.g. package names, package group names or errata ids)"
2162
+ msgid ""
2163
+ "List of content (e.g. package names, package group names (Deprecated) or errat"
2164
+ "a ids)"
2172
2165
  msgstr ""
2173
2166
 
2174
2167
  #: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:128
@@ -2410,7 +2403,7 @@ msgstr ""
2410
2403
  #: ../app/controllers/katello/api/v2/organizations_controller.rb:85
2411
2404
  #: ../app/controllers/katello/api/v2/organizations_controller.rb:92
2412
2405
  #: ../app/controllers/katello/api/v2/products_controller.rb:90
2413
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:262
2406
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:274
2414
2407
  #: ../app/controllers/katello/api/v2/simple_content_access_controller.rb:20
2415
2408
  #: ../app/controllers/katello/api/v2/simple_content_access_controller.rb:28
2416
2409
  #: ../app/controllers/katello/api/v2/subscriptions_controller.rb:24
@@ -2618,9 +2611,9 @@ msgstr ""
2618
2611
 
2619
2612
  #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:7
2620
2613
  #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:26
2621
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:54
2622
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:69
2623
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:82
2614
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:53
2615
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:67
2616
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:80
2624
2617
  msgid "List of product ids"
2625
2618
  msgstr ""
2626
2619
 
@@ -2633,7 +2626,7 @@ msgid "You were not allowed to delete %s"
2633
2626
  msgstr ""
2634
2627
 
2635
2628
  #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:25
2636
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:81
2629
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:79
2637
2630
  msgid "Sync one or more products"
2638
2631
  msgstr ""
2639
2632
 
@@ -2655,33 +2648,33 @@ msgstr ""
2655
2648
  msgid "No syncable repositories found for selected products and options."
2656
2649
  msgstr ""
2657
2650
 
2658
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:53
2651
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:52
2659
2652
  msgid "Verify checksum for one or more products"
2660
2653
  msgstr ""
2661
2654
 
2662
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:68
2655
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:66
2663
2656
  msgid ""
2664
2657
  "Update the HTTP proxy configuration on the repositories of one or more product"
2665
2658
  "s."
2666
2659
  msgstr ""
2667
2660
 
2668
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:70
2661
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:68
2669
2662
  msgid "policy for HTTP proxy for content sync"
2670
2663
  msgstr ""
2671
2664
 
2672
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:71
2665
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:69
2673
2666
  msgid "HTTP Proxy identifier to associated"
2674
2667
  msgstr ""
2675
2668
 
2676
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:83
2669
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:81
2677
2670
  msgid "Sync plan identifier to attach"
2678
2671
  msgstr ""
2679
2672
 
2680
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:92
2673
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:90
2681
2674
  msgid "Successfully changed sync plan for %s product(s)"
2682
2675
  msgstr ""
2683
2676
 
2684
- #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:93
2677
+ #: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:91
2685
2678
  msgid "You were not allowed to change sync plan for %s"
2686
2679
  msgstr ""
2687
2680
 
@@ -2800,7 +2793,7 @@ msgid "Sync all repositories for a product"
2800
2793
  msgstr ""
2801
2794
 
2802
2795
  #: ../app/controllers/katello/api/v2/products_controller.rb:119
2803
- #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:49
2796
+ #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:41
2804
2797
  msgid ""
2805
2798
  "Unable to synchronize any repository. You either do not have the permission to"
2806
2799
  " synchronize or the selected repositories do not have a feed url."
@@ -2810,453 +2803,421 @@ msgstr ""
2810
2803
  msgid "Destroy one or more repositories"
2811
2804
  msgstr ""
2812
2805
 
2813
- #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:14
2806
+ #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:13
2814
2807
  msgid "You do not have permissions to delete %s"
2815
2808
  msgstr ""
2816
2809
 
2817
- #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:21
2810
+ #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:20
2818
2811
  msgid ""
2819
2812
  "Repository %s cannot be deleted since it has already been included in a publis"
2820
2813
  "hed Content View."
2821
2814
  msgstr ""
2822
2815
 
2823
- #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:28
2824
- msgid "Repository %s cannot be deleted since they are Red Hat repositories."
2825
- msgstr ""
2826
-
2827
- #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:44
2816
+ #: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:36
2828
2817
  msgid "Synchronize repository"
2829
2818
  msgstr ""
2830
2819
 
2831
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:36
2820
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:42
2832
2821
  msgid "repository source url"
2833
2822
  msgstr ""
2834
2823
 
2835
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:38
2824
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:44
2836
2825
  msgid ""
2837
2826
  "Identifies whether the repository should be disabled on a client with a non-ma"
2838
2827
  "tching OS version. Pass [] to enable regardless of OS version. Maximum length "
2839
2828
  "1; allowed tags are: %s"
2840
2829
  msgstr ""
2841
2830
 
2842
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:39
2831
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:45
2843
2832
  msgid "id of the gpg key that will be assigned to the new repository"
2844
2833
  msgstr ""
2845
2834
 
2846
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:40
2835
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:46
2847
2836
  msgid "Identifier of the content credential containing the SSL CA Cert"
2848
2837
  msgstr ""
2849
2838
 
2850
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:41
2839
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:47
2851
2840
  msgid "Identifier of the content credential containing the SSL Client Cert"
2852
2841
  msgstr ""
2853
2842
 
2854
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:42
2843
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:48
2855
2844
  msgid "Identifier of the content credential containing the SSL Client Key"
2856
2845
  msgstr ""
2857
2846
 
2858
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:43
2847
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:49
2859
2848
  msgid "true if this repository can be published via HTTP"
2860
2849
  msgstr ""
2861
2850
 
2862
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:44
2851
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:50
2863
2852
  msgid "Checksum of the repository, currently 'sha1' & 'sha256' are supported"
2864
2853
  msgstr ""
2865
2854
 
2866
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:45
2855
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:51
2867
2856
  msgid "Name of the upstream docker repository"
2868
2857
  msgstr ""
2869
2858
 
2870
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:46
2859
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:52
2871
2860
  msgid "Comma-separated list of tags to sync for Container Image repository"
2872
2861
  msgstr ""
2873
2862
 
2874
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:47
2863
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:53
2875
2864
  msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
2876
2865
  msgstr ""
2877
2866
 
2878
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:48
2867
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:54
2879
2868
  msgid ""
2880
2869
  "Used to determine download concurrency of the repository in pulp3. Use value l"
2881
2870
  "ess than 20. Defaults to 10"
2882
2871
  msgstr ""
2883
2872
 
2884
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:49
2873
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:55
2885
2874
  msgid ""
2886
2875
  "true if this repository when synced has to be mirrored from the source and sta"
2887
2876
  "le rpms removed"
2888
2877
  msgstr ""
2889
2878
 
2890
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:50
2879
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:56
2891
2880
  msgid ""
2892
2881
  "if true, Katello will verify the upstream url's SSL certifcates are signed by "
2893
2882
  "a trusted CA"
2894
2883
  msgstr ""
2895
2884
 
2896
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:51
2885
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:57
2897
2886
  msgid "Username of the upstream repository user used for authentication"
2898
2887
  msgstr ""
2899
2888
 
2900
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:52
2889
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:58
2901
2890
  msgid "Password of the upstream repository user used for authentication"
2902
2891
  msgstr ""
2903
2892
 
2904
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:53
2893
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:59
2905
2894
  msgid "policies for syncing upstream ostree repositories"
2906
2895
  msgstr ""
2907
2896
 
2908
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:54
2897
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:60
2909
2898
  msgid ""
2910
2899
  "if a custom sync policy is chosen for ostree repositories then a 'depth' value"
2911
2900
  " must be provided"
2912
2901
  msgstr ""
2913
2902
 
2914
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:55
2903
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:61
2915
2904
  msgid "whitespace-separated list of releases to be synced from deb-archive"
2916
2905
  msgstr ""
2917
2906
 
2918
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:56
2907
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:62
2919
2908
  msgid "whitespace-separated list of repo components to be synced from deb-archive"
2920
2909
  msgstr ""
2921
2910
 
2922
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:57
2911
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:63
2923
2912
  msgid "whitespace-separated list of architectures to be synced from deb-archive"
2924
2913
  msgstr ""
2925
2914
 
2926
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:58
2915
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:64
2927
2916
  msgid ""
2928
2917
  "List of content units to ignore while syncing a yum repository. Must be subset"
2929
2918
  " of %s"
2930
2919
  msgstr ""
2931
2920
 
2932
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:59
2921
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:65
2933
2922
  msgid "Contents of requirement yaml file to sync from URL"
2934
2923
  msgstr ""
2935
2924
 
2936
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:60
2925
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:66
2937
2926
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
2938
2927
  msgstr ""
2939
2928
 
2940
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:61
2929
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:67
2941
2930
  msgid "The token key to use for authentication."
2942
2931
  msgstr ""
2943
2932
 
2944
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:62
2933
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:68
2945
2934
  msgid "policies for HTTP proxy for content sync"
2946
2935
  msgstr ""
2947
2936
 
2948
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:63
2937
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:69
2949
2938
  msgid "ID of a HTTP Proxy"
2950
2939
  msgstr ""
2951
2940
 
2952
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:64
2941
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:70
2953
2942
  msgid "Architecture of content in the repository"
2954
2943
  msgstr ""
2955
2944
 
2956
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:69
2945
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:71
2946
+ msgid "The maximum number of versions of each package to keep."
2947
+ msgstr ""
2948
+
2949
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:80
2957
2950
  msgid "Product the repository belongs to"
2958
2951
  msgstr ""
2959
2952
 
2960
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:70
2953
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:81
2961
2954
  msgid "type of repo"
2962
2955
  msgstr ""
2963
2956
 
2964
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:73
2957
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:84
2965
2958
  msgid "List of enabled repositories"
2966
2959
  msgstr ""
2967
2960
 
2968
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:74
2961
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:85
2969
2962
  msgid "List of repositories for a content view"
2970
2963
  msgstr ""
2971
2964
 
2972
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:75
2965
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:86
2973
2966
  msgid "List of repositories in an organization"
2974
2967
  msgstr ""
2975
2968
 
2976
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:76
2969
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:87
2977
2970
  msgid "List repositories in the environment"
2978
2971
  msgstr ""
2979
2972
 
2980
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:77
2973
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:88
2981
2974
  msgid "List of repositories for a product"
2982
2975
  msgstr ""
2983
2976
 
2984
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:78
2977
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:89
2985
2978
  msgid "List of repositories belonging to a product in an environment"
2986
2979
  msgstr ""
2987
2980
 
2988
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:79
2981
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:90
2989
2982
  msgid "ID of an organization to show repositories in"
2990
2983
  msgstr ""
2991
2984
 
2992
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:80
2985
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:91
2993
2986
  msgid "ID of a product to show repositories of"
2994
2987
  msgstr ""
2995
2988
 
2996
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:81
2989
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:92
2997
2990
  msgid "ID of an environment to show repositories in"
2998
2991
  msgstr ""
2999
2992
 
3000
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:82
2993
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:93
3001
2994
  msgid "ID of a content view to show repositories in"
3002
2995
  msgstr ""
3003
2996
 
3004
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:83
2997
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:94
3005
2998
  msgid "ID of a content view version to show repositories in"
3006
2999
  msgstr ""
3007
3000
 
3008
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:84
3001
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:95
3009
3002
  msgid "Id of a deb package to find repositories that contain the deb"
3010
3003
  msgstr ""
3011
3004
 
3012
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:85
3005
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:96
3013
3006
  msgid "Id of an erratum to find repositories that contain the erratum"
3014
3007
  msgstr ""
3015
3008
 
3016
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:86
3009
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:97
3017
3010
  msgid "Id of a rpm package to find repositories that contain the rpm"
3018
3011
  msgstr ""
3019
3012
 
3020
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:87
3013
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:98
3021
3014
  msgid "Id of a file to find repositories that contain the file"
3022
3015
  msgstr ""
3023
3016
 
3024
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:88
3017
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:99
3025
3018
  msgid ""
3026
3019
  "Id of an ansible collection to find repositories that contain the ansible coll"
3027
3020
  "ection"
3028
3021
  msgstr ""
3029
3022
 
3030
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:89
3023
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:100
3031
3024
  msgid "Id of an ostree branch to find repositories that contain that branch"
3032
3025
  msgstr ""
3033
3026
 
3034
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:90
3027
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:101
3035
3028
  msgid "show repositories in Library and the default content view"
3036
3029
  msgstr ""
3037
3030
 
3038
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:91
3031
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:102
3039
3032
  msgid "show archived repositories"
3040
3033
  msgstr ""
3041
3034
 
3042
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:92
3035
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:103
3043
3036
  msgid "limit to only repositories of this type"
3044
3037
  msgstr ""
3045
3038
 
3046
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:93
3039
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:104
3047
3040
  msgid "name of the repository"
3048
3041
  msgstr ""
3049
3042
 
3050
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:94
3043
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:105
3051
3044
  msgid "label of the repository"
3052
3045
  msgstr ""
3053
3046
 
3054
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:95
3055
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:337
3047
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:106
3048
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:319
3056
3049
  msgid "description of the repository"
3057
3050
  msgstr ""
3058
3051
 
3059
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:96
3052
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:107
3060
3053
  msgid ""
3061
3054
  "interpret specified object to return only Repositories that can be associated "
3062
3055
  "with specified object. Only 'content_view' & 'content_view_version' are suppo"
3063
3056
  "rted."
3064
3057
  msgstr ""
3065
3058
 
3066
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:98
3059
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:109
3067
3060
  msgid ""
3068
3061
  "only repositories having at least one of the specified content type ex: rpm , "
3069
3062
  "erratum"
3070
3063
  msgstr ""
3071
3064
 
3072
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:99
3065
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:110
3073
3066
  msgid "limit to only repositories with this download policy"
3074
3067
  msgstr ""
3075
3068
 
3076
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:100
3069
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:111
3077
3070
  msgid "only show the repositories readable by this user with this username"
3078
3071
  msgstr ""
3079
3072
 
3080
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:213
3073
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:224
3081
3074
  msgid "Create a custom repository"
3082
3075
  msgstr ""
3083
3076
 
3084
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:214
3077
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:225
3085
3078
  msgid "Name of the repository"
3086
3079
  msgstr ""
3087
3080
 
3088
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:215
3081
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:226
3089
3082
  msgid "Description of the repository"
3090
3083
  msgstr ""
3091
3084
 
3092
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:221
3085
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:232
3093
3086
  msgid "Invalid params provided - content_type must be one of %s"
3094
3087
  msgstr ""
3095
3088
 
3096
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:245
3089
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:257
3097
3090
  msgid "Show the available repository types"
3098
3091
  msgstr ""
3099
3092
 
3100
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:246
3093
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:258
3101
3094
  msgid "When set to 'True' repository types that are creatable will be returned"
3102
3095
  msgstr ""
3103
3096
 
3104
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:253
3097
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:265
3105
3098
  msgid ""
3106
3099
  "Forces a republish of the specified repository, regenerating metadata and syml"
3107
3100
  "inks on the filesystem."
3108
3101
  msgstr ""
3109
3102
 
3110
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:260
3103
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:272
3111
3104
  msgid "Show a repository"
3112
3105
  msgstr ""
3113
3106
 
3114
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:261
3115
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:268
3116
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:296
3117
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:335
3118
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:368
3107
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:273
3108
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:280
3109
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:308
3110
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:317
3111
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:358
3119
3112
  msgid "repository ID"
3120
3113
  msgstr ""
3121
3114
 
3122
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:267
3115
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:279
3123
3116
  msgid "Sync a repository"
3124
3117
  msgstr ""
3125
3118
 
3126
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:269
3119
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:281
3127
3120
  msgid "temporarily override feed URL for sync"
3128
3121
  msgstr ""
3129
3122
 
3130
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:270
3123
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:282
3131
3124
  msgid "perform an incremental import"
3132
3125
  msgstr ""
3133
3126
 
3134
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:271
3127
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:283
3135
3128
  msgid ""
3136
3129
  "Force sync even if no upstream changes are detected. Only used with yum reposi"
3137
3130
  "tories."
3138
3131
  msgstr ""
3139
3132
 
3140
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:272
3133
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:284
3141
3134
  msgid ""
3142
3135
  "Force a sync and validate the checksums of all content. Only used with yum rep"
3143
3136
  "ositories."
3144
3137
  msgstr ""
3145
3138
 
3146
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:282
3139
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:294
3147
3140
  msgid "source URL is malformed"
3148
3141
  msgstr ""
3149
3142
 
3150
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:286
3143
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:298
3151
3144
  msgid "attempted to sync without a feed URL"
3152
3145
  msgstr ""
3153
3146
 
3154
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:295
3155
- msgid "Verify checksum of repository contents"
3156
- msgstr ""
3157
-
3158
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:304
3159
- msgid "Export a repository"
3160
- msgstr ""
3161
-
3162
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:306
3163
- msgid "Export to ISO format"
3164
- msgstr ""
3165
-
3166
3147
  #: ../app/controllers/katello/api/v2/repositories_controller.rb:307
3167
- msgid "maximum size of each ISO in MB"
3168
- msgstr ""
3169
-
3170
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:308
3171
- msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3172
- msgstr ""
3173
-
3174
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:311
3175
- msgid "ISO export must be enabled when specifying ISO size"
3176
- msgstr ""
3177
-
3178
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:318
3179
- msgid "Invalid date provided."
3180
- msgstr ""
3181
-
3182
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:322
3183
- msgid "Repository content type must be 'yum' to export."
3184
- msgstr ""
3185
-
3186
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:324
3187
- msgid "On demand repositories cannot be exported."
3148
+ msgid "Verify checksum of repository contents"
3188
3149
  msgstr ""
3189
3150
 
3190
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:334
3151
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:316
3191
3152
  msgid "Update a repository"
3192
3153
  msgstr ""
3193
3154
 
3194
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:346
3155
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:336
3195
3156
  msgid "Destroy a custom repository"
3196
3157
  msgstr ""
3197
3158
 
3198
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:360
3199
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:398
3159
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:350
3160
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:388
3200
3161
  msgid "Whether or not to sync an external capsule after upload. Default: true"
3201
3162
  msgstr ""
3202
3163
 
3203
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:363
3164
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:353
3204
3165
  msgid "No content ids provided"
3205
3166
  msgstr ""
3206
3167
 
3207
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:367
3168
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:357
3208
3169
  msgid "Upload content into the repository"
3209
3170
  msgstr ""
3210
3171
 
3211
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:369
3172
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:359
3212
3173
  msgid "Content files to upload. Can be a single file or array of files."
3213
3174
  msgstr ""
3214
3175
 
3215
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:372
3176
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:362
3216
3177
  msgid "Cannot upload Container Image content."
3217
3178
  msgstr ""
3218
3179
 
3219
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:394
3180
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:384
3220
3181
  msgid "Import uploads into a repository"
3221
3182
  msgstr ""
3222
3183
 
3223
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:396
3184
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:386
3224
3185
  msgid "Do not wait for the ImportUpload action to finish. Default: false"
3225
3186
  msgstr ""
3226
3187
 
3227
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:397
3188
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:387
3228
3189
  msgid "Whether or not to regenerate the repository on disk. Default: true"
3229
3190
  msgstr ""
3230
3191
 
3231
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:400
3192
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:390
3232
3193
  msgid "Array of uploads to import"
3233
3194
  msgstr ""
3234
3195
 
3235
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:405
3196
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:395
3236
3197
  msgid "Needs to only be set for file repositories or docker tags"
3237
3198
  msgstr ""
3238
3199
 
3239
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:406
3200
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:396
3240
3201
  msgid "Needs to only be set for docker tags"
3241
3202
  msgstr ""
3242
3203
 
3243
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:413
3204
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:403
3244
3205
  msgid "No uploads param specified. An array of uploads to import is required."
3245
3206
  msgstr ""
3246
3207
 
3247
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:433
3208
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:423
3248
3209
  msgid "Return the content of a repo gpg key, used directly by yum"
3249
3210
  msgstr ""
3250
3211
 
3251
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:467
3212
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:457
3252
3213
  msgid "Couldn't find %{content_type} with id '%{id}'"
3253
3214
  msgstr ""
3254
3215
 
3255
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:537
3216
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:546
3256
3217
  msgid "Red Hat products cannot be manipulated."
3257
3218
  msgstr ""
3258
3219
 
3259
- #: ../app/controllers/katello/api/v2/repositories_controller.rb:541
3220
+ #: ../app/controllers/katello/api/v2/repositories_controller.rb:550
3260
3221
  msgid "Red Hat repositories cannot be manipulated."
3261
3222
  msgstr ""
3262
3223
 
@@ -3742,6 +3703,10 @@ msgstr ""
3742
3703
  msgid "Invalid content label: %s"
3743
3704
  msgstr ""
3744
3705
 
3706
+ #: ../app/controllers/katello/concerns/api/v2/host_errata_extensions.rb:12
3707
+ msgid "No errata has been specified."
3708
+ msgstr ""
3709
+
3745
3710
  #:
3746
3711
  #: ../app/controllers/katello/concerns/api/v2/hostgroups_controller_extensions.rb:9
3747
3712
  msgid "Content source ID"
@@ -3775,40 +3740,54 @@ msgid "List of host collection ids to update"
3775
3740
  msgstr ""
3776
3741
 
3777
3742
  #:
3778
- #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:31
3743
+ #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:30
3779
3744
  msgid ""
3780
- "Activation key for subscription-manager client. Required for CentOS and Red Ha"
3781
- "t Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,k"
3782
- "ey3."
3745
+ "Activation key for subscription-manager client, required for CentOS and Red Ha"
3746
+ "t Enterprise Linux. For multiple keys use `activation_keys` param instead."
3783
3747
  msgstr ""
3784
3748
 
3785
3749
  #:
3786
- #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:32
3750
+ #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:31
3787
3751
  msgid ""
3788
- "Activation key(s) for subscription-manager client. Required for CentOS and Red"
3789
- " Hat Enterprise Linux. Required only if host group has no activation keys"
3752
+ "Activation keys for subscription-manager client, required for CentOS and Red H"
3753
+ "at Enterprise Linux. Required only if host group has no activation keys."
3790
3754
  msgstr ""
3791
3755
 
3792
3756
  #:
3793
- #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:33
3757
+ #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:32
3794
3758
  msgid "Lifecycle environment for the host."
3795
3759
  msgstr ""
3796
3760
 
3797
3761
  #:
3798
- #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:34
3762
+ #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:33
3799
3763
  msgid "Clear any previous registration and run subscription-manager with --force."
3800
3764
  msgstr ""
3801
3765
 
3802
3766
  #:
3803
- #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:35
3767
+ #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:34
3804
3768
  msgid "Ignore subscription-manager errors for `subscription-manager register` command"
3805
3769
  msgstr ""
3806
3770
 
3771
+ #:
3772
+ #: ../app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb:54
3773
+ msgid "Missing activation key!"
3774
+ msgstr ""
3775
+
3807
3776
  #:
3808
3777
  #: ../app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb:10
3809
3778
  msgid ""
3810
3779
  "Host was not found by the subscription UUID: '%s', this can happen if the host"
3811
- " is registered already, but not to this Foreman"
3780
+ " is registered already, but not to this instance"
3781
+ msgstr ""
3782
+
3783
+ #:
3784
+ #: ../app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb:40
3785
+ msgid "Smart proxy content source not found!"
3786
+ msgstr ""
3787
+
3788
+ #:
3789
+ #: ../app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb:41
3790
+ msgid "Pulp 3 is not enabled on Smart proxy!"
3812
3791
  msgstr ""
3813
3792
 
3814
3793
  #:
@@ -4056,11 +4035,11 @@ msgstr ""
4056
4035
  msgid "Error connecting to Pulp service"
4057
4036
  msgstr ""
4058
4037
 
4059
- #: ../app/controllers/katello/remote_execution_controller.rb:59
4038
+ #: ../app/controllers/katello/remote_execution_controller.rb:55
4060
4039
  msgid "module streams not found"
4061
4040
  msgstr ""
4062
4041
 
4063
- #: ../app/controllers/katello/remote_execution_controller.rb:60
4042
+ #: ../app/controllers/katello/remote_execution_controller.rb:56
4064
4043
  msgid "actions not found"
4065
4044
  msgstr ""
4066
4045
 
@@ -4095,8 +4074,8 @@ msgid "Inherit from Repository"
4095
4074
  msgstr ""
4096
4075
 
4097
4076
  #: ../app/helpers/katello/hosts_and_hostgroups_helper.rb:255
4098
- #: ../lib/katello/plugin.rb:8 ../lib/katello/plugin.rb:255
4099
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:72
4077
+ #: ../lib/katello/plugin.rb:8 ../lib/katello/plugin.rb:251
4078
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:73
4100
4079
  msgid "Content"
4101
4080
  msgstr ""
4102
4081
 
@@ -4108,12 +4087,6 @@ msgstr ""
4108
4087
  msgid "%{sla}"
4109
4088
  msgstr ""
4110
4089
 
4111
- #: ../app/helpers/katello/organizations_helper.rb:5
4112
- #: ../app/helpers/katello/organizations_helper.rb:15
4113
- #: ../app/helpers/katello/taxonomy_helper.rb:7
4114
- msgid "No Service Level Preference"
4115
- msgstr ""
4116
-
4117
4090
  #: ../app/helpers/katello/organizations_helper.rb:5
4118
4091
  #: ../app/helpers/katello/organizations_helper.rb:11
4119
4092
  #: ../app/helpers/katello/organizations_helper.rb:12
@@ -4121,6 +4094,12 @@ msgstr ""
4121
4094
  msgid "Service Level %s"
4122
4095
  msgstr ""
4123
4096
 
4097
+ #: ../app/helpers/katello/organizations_helper.rb:5
4098
+ #: ../app/helpers/katello/organizations_helper.rb:15
4099
+ #: ../app/helpers/katello/taxonomy_helper.rb:7
4100
+ msgid "No Service Level Preference"
4101
+ msgstr ""
4102
+
4124
4103
  #: ../app/helpers/katello/subscription_mailer_helper.rb:12
4125
4104
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:18
4126
4105
  msgid "View a report of the affected hosts"
@@ -4154,23 +4133,14 @@ msgstr ""
4154
4133
  msgid "waiting for Candlepin to finish the task"
4155
4134
  msgstr ""
4156
4135
 
4157
- #: ../app/lib/actions/foreman/environment/destroy.rb:8
4158
- msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
4159
- msgstr ""
4160
-
4161
- #: ../app/lib/actions/foreman/environment/destroy.rb:14
4162
- msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
4163
- msgstr ""
4164
-
4165
4136
  #: ../app/lib/actions/katello/activation_key/create.rb:21
4166
4137
  #: ../app/lib/actions/katello/content_view/create.rb:10
4167
- #: ../app/lib/actions/katello/content_view/environment_create.rb:16
4168
- #: ../app/lib/actions/katello/repository/create.rb:50
4169
- #: ../app/lib/actions/katello/repository/create_root.rb:17 action_names.rb:23
4138
+ #: ../app/lib/actions/katello/repository/create.rb:47
4139
+ #: ../app/lib/actions/katello/repository/create_root.rb:17 action_names.rb:31
4170
4140
  msgid "Create"
4171
4141
  msgstr ""
4172
4142
 
4173
- #: ../app/lib/actions/katello/activation_key/destroy.rb:19 action_names.rb:66
4143
+ #: ../app/lib/actions/katello/activation_key/destroy.rb:19 action_names.rb:70
4174
4144
  msgid "Delete Activation Key"
4175
4145
  msgstr ""
4176
4146
 
@@ -4184,20 +4154,20 @@ msgstr ""
4184
4154
  msgid "No packages removed"
4185
4155
  msgstr ""
4186
4156
 
4187
- #: ../app/lib/actions/katello/agent_action.rb:82
4157
+ #: ../app/lib/actions/katello/agent_action.rb:84
4188
4158
  msgid ""
4189
4159
  "Host did not respond within %s seconds. The task has been cancelled. Is katell"
4190
4160
  "o-agent installed and goferd running on the Host?"
4191
4161
  msgstr ""
4192
4162
 
4193
- #: ../app/lib/actions/katello/agent_action.rb:90
4163
+ #: ../app/lib/actions/katello/agent_action.rb:92
4194
4164
  msgid ""
4195
4165
  "Host did not finish content action in %s seconds. The task has been cancelled"
4196
4166
  "."
4197
4167
  msgstr ""
4198
4168
 
4199
4169
  #: ../app/lib/actions/katello/applicability/host/generate.rb:22
4200
- #: action_names.rb:65
4170
+ #: action_names.rb:68
4201
4171
  msgid "Generate host applicability"
4202
4172
  msgstr ""
4203
4173
 
@@ -4208,16 +4178,16 @@ msgid ""
4208
4178
  msgstr ""
4209
4179
 
4210
4180
  #: ../app/lib/actions/katello/applicability/hosts/bulk_generate.rb:30
4211
- #: action_names.rb:71
4181
+ #: action_names.rb:67
4212
4182
  msgid "Bulk generate applicability for hosts"
4213
4183
  msgstr ""
4214
4184
 
4215
4185
  #: ../app/lib/actions/katello/applicability/repository/regenerate.rb:25
4216
- #: action_names.rb:70
4186
+ #: action_names.rb:66
4217
4187
  msgid "Generate repository applicability"
4218
4188
  msgstr ""
4219
4189
 
4220
- #: ../app/lib/actions/katello/capsule_content/sync.rb:14 action_names.rb:69
4190
+ #: ../app/lib/actions/katello/capsule_content/sync.rb:14 action_names.rb:65
4221
4191
  msgid "Synchronize smart proxy"
4222
4192
  msgstr ""
4223
4193
 
@@ -4231,12 +4201,13 @@ msgstr ""
4231
4201
 
4232
4202
  #: ../app/lib/actions/katello/content_view/destroy.rb:34
4233
4203
  #: ../app/lib/actions/katello/provider/destroy.rb:19
4234
- #: ../app/lib/actions/katello/repository/destroy.rb:67
4204
+ #: ../app/lib/actions/katello/repository/destroy.rb:65
4205
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:131
4235
4206
  #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:262
4236
4207
  #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:277
4237
4208
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js:27
4238
4209
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:90
4239
- #: action_names.rb:22
4210
+ #: action_names.rb:32
4240
4211
  msgid "Delete"
4241
4212
  msgstr ""
4242
4213
 
@@ -4296,7 +4267,7 @@ msgid "Cannot promote environment out of sequence. Use force to bypass restricti
4296
4267
  msgstr ""
4297
4268
 
4298
4269
  #: ../app/lib/actions/katello/content_view/promote_to_environment.rb:40
4299
- #: action_names.rb:40
4270
+ #: action_names.rb:61
4300
4271
  msgid "Promotion to Environment"
4301
4272
  msgstr ""
4302
4273
 
@@ -4310,7 +4281,11 @@ msgid ""
4310
4281
  "arameter."
4311
4282
  msgstr ""
4312
4283
 
4313
- #: ../app/lib/actions/katello/content_view/publish.rb:90 action_names.rb:42
4284
+ #: ../app/lib/actions/katello/content_view/publish.rb:90
4285
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishForm.js:28
4286
+ #: ../webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js:108
4287
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:112
4288
+ #: action_names.rb:60
4314
4289
  msgid "Publish"
4315
4290
  msgstr ""
4316
4291
 
@@ -4322,7 +4297,7 @@ msgstr ""
4322
4297
  msgid "Cannot delete version while it is in environment %s"
4323
4298
  msgstr ""
4324
4299
 
4325
- #: ../app/lib/actions/katello/content_view/remove.rb:86 action_names.rb:39
4300
+ #: ../app/lib/actions/katello/content_view/remove.rb:86 action_names.rb:59
4326
4301
  msgid "Remove Versions and Associations"
4327
4302
  msgstr ""
4328
4303
 
@@ -4349,12 +4324,12 @@ msgid ""
4349
4324
  msgstr ""
4350
4325
 
4351
4326
  #: ../app/lib/actions/katello/content_view/remove_from_environment.rb:35
4352
- #: action_names.rb:38
4327
+ #: action_names.rb:58
4353
4328
  msgid "Remove from Environment"
4354
4329
  msgstr ""
4355
4330
 
4356
4331
  #: ../app/lib/actions/katello/content_view/remove_version.rb:26
4357
- #: action_names.rb:43
4332
+ #: action_names.rb:57
4358
4333
  msgid "Remove Version"
4359
4334
  msgstr ""
4360
4335
 
@@ -4363,7 +4338,7 @@ msgid "Create Repositories"
4363
4338
  msgstr ""
4364
4339
 
4365
4340
  #: ../app/lib/actions/katello/content_view_version/export.rb:31
4366
- #: ../app/lib/actions/katello/repository/export.rb:63 action_names.rb:37
4341
+ #: action_names.rb:5
4367
4342
  msgid "Export"
4368
4343
  msgstr ""
4369
4344
 
@@ -4372,33 +4347,33 @@ msgid "Content view not provided in the metadata"
4372
4347
  msgstr ""
4373
4348
 
4374
4349
  #: ../app/lib/actions/katello/content_view_version/import.rb:41
4375
- #: action_names.rb:44
4350
+ #: action_names.rb:56
4376
4351
  msgid "Import Content View Version"
4377
4352
  msgstr ""
4378
4353
 
4379
4354
  #: ../app/lib/actions/katello/content_view_version/import_library.rb:14
4380
- #: action_names.rb:36
4355
+ #: action_names.rb:55
4381
4356
  msgid "Import Default Content View"
4382
4357
  msgstr ""
4383
4358
 
4384
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:16
4385
- #: action_names.rb:35
4359
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:15
4360
+ #: action_names.rb:54
4386
4361
  msgid "Incremental Update"
4387
4362
  msgstr ""
4388
4363
 
4389
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:303
4364
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:299
4390
4365
  msgid "Content View Version %{id} not in all specified environments %{envs}"
4391
4366
  msgstr ""
4392
4367
 
4393
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:310
4368
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:306
4394
4369
  msgid "Cannot specify content for composite views"
4395
4370
  msgstr ""
4396
4371
 
4397
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:313
4372
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:309
4398
4373
  msgid "Cannot specify components for non-composite views"
4399
4374
  msgstr ""
4400
4375
 
4401
- #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:321
4376
+ #: ../app/lib/actions/katello/content_view_version/incremental_update.rb:317
4402
4377
  msgid ""
4403
4378
  "No Version of Content View %{component} already exists as a component of the c"
4404
4379
  "omposite Content View %{composite} version %{version}"
@@ -4409,16 +4384,16 @@ msgid "Republish Repositories of %{name} %{version}"
4409
4384
  msgstr ""
4410
4385
 
4411
4386
  #: ../app/lib/actions/katello/content_view_version/republish_repositories.rb:27
4412
- #: action_names.rb:34
4387
+ #: action_names.rb:53
4413
4388
  msgid "Republish Version Repositories"
4414
4389
  msgstr ""
4415
4390
 
4416
- #: ../app/lib/actions/katello/environment/destroy.rb:36 action_names.rb:45
4391
+ #: ../app/lib/actions/katello/environment/destroy.rb:36 action_names.rb:52
4417
4392
  msgid "Delete Lifecycle Environment"
4418
4393
  msgstr ""
4419
4394
 
4420
4395
  #: ../app/lib/actions/katello/environment/publish_repositories.rb:33
4421
- #: action_names.rb:33
4396
+ #: action_names.rb:51
4422
4397
  msgid "Publish Lifecycle Environment Repositories"
4423
4398
  msgstr ""
4424
4399
 
@@ -4426,22 +4401,22 @@ msgstr ""
4426
4401
  msgid "Register host '%s' before attaching subscriptions"
4427
4402
  msgstr ""
4428
4403
 
4429
- #: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
4430
- msgid "Attach subscriptions to %s"
4431
- msgstr ""
4432
-
4433
4404
  #: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
4434
4405
  #: ../app/lib/actions/katello/host/remove_subscriptions.rb:38
4435
4406
  #: ../app/lib/actions/katello/host/update_content_overrides.rb:30
4436
- #: ../app/lib/actions/katello/sync_plan/run.rb:40
4407
+ #: ../app/lib/actions/katello/sync_plan/run.rb:45
4437
4408
  #: ../app/models/katello/content_view_history.rb:65
4438
4409
  #: ../app/models/katello/content_view_history.rb:67
4439
4410
  #: ../app/models/katello/purpose_status.rb:36
4440
4411
  msgid "Unknown"
4441
4412
  msgstr ""
4442
4413
 
4414
+ #: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
4415
+ msgid "Attach subscriptions to %s"
4416
+ msgstr ""
4417
+
4443
4418
  #: ../app/lib/actions/katello/host/attach_subscriptions.rb:49
4444
- #: action_names.rb:46
4419
+ #: action_names.rb:50
4445
4420
  msgid "Attach subscriptions"
4446
4421
  msgstr ""
4447
4422
 
@@ -4449,7 +4424,7 @@ msgstr ""
4449
4424
  msgid "Destroy Content Host %s"
4450
4425
  msgstr ""
4451
4426
 
4452
- #: ../app/lib/actions/katello/host/destroy.rb:32 action_names.rb:47
4427
+ #: ../app/lib/actions/katello/host/destroy.rb:32 action_names.rb:48
4453
4428
  msgid "Destroy Content Host"
4454
4429
  msgstr ""
4455
4430
 
@@ -4462,7 +4437,7 @@ msgid "No applicable errata for %s, skipping"
4462
4437
  msgstr ""
4463
4438
 
4464
4439
  #: ../app/lib/actions/katello/host/erratum/applicable_errata_install.rb:31
4465
- #: action_names.rb:31
4440
+ #: action_names.rb:47
4466
4441
  msgid "Install Applicable Errata"
4467
4442
  msgstr ""
4468
4443
 
@@ -4558,7 +4533,7 @@ msgid "Remove subscriptions from %s"
4558
4533
  msgstr ""
4559
4534
 
4560
4535
  #: ../app/lib/actions/katello/host/remove_subscriptions.rb:40
4561
- #: action_names.rb:29
4536
+ #: action_names.rb:44
4562
4537
  msgid "Remove subscriptions"
4563
4538
  msgstr ""
4564
4539
 
@@ -4571,7 +4546,7 @@ msgid "Update Content Overrides to %s"
4571
4546
  msgstr ""
4572
4547
 
4573
4548
  #: ../app/lib/actions/katello/host/update_content_overrides.rb:32
4574
- #: action_names.rb:48
4549
+ #: action_names.rb:43
4575
4550
  msgid "Update Content Overrides"
4576
4551
  msgstr ""
4577
4552
 
@@ -4581,7 +4556,7 @@ msgstr ""
4581
4556
  msgid "Host %s has not been registered with subscription-manager."
4582
4557
  msgstr ""
4583
4558
 
4584
- #: ../app/lib/actions/katello/host/update_content_view.rb:18 action_names.rb:28
4559
+ #: ../app/lib/actions/katello/host/update_content_view.rb:18 action_names.rb:42
4585
4560
  msgid "Update for host"
4586
4561
  msgstr ""
4587
4562
 
@@ -4594,7 +4569,7 @@ msgid "Host %{name} cannot be assigned release version %{release_version}."
4594
4569
  msgstr ""
4595
4570
 
4596
4571
  #: ../app/lib/actions/katello/host/update_release_version.rb:21
4597
- #: action_names.rb:49
4572
+ #: action_names.rb:41
4598
4573
  msgid "Update release version for host"
4599
4574
  msgstr ""
4600
4575
 
@@ -4607,28 +4582,28 @@ msgid "Updating System Purpose for host %s"
4607
4582
  msgstr ""
4608
4583
 
4609
4584
  #: ../app/lib/actions/katello/host/update_system_purpose.rb:25
4610
- #: action_names.rb:50
4585
+ #: action_names.rb:40
4611
4586
  msgid "Updating System Purpose for host"
4612
4587
  msgstr ""
4613
4588
 
4614
- #: ../app/lib/actions/katello/host/upload_package_profile.rb:20
4589
+ #: ../app/lib/actions/katello/host/upload_package_profile.rb:19
4615
4590
  msgid "Package Profile Update for %s"
4616
4591
  msgstr ""
4617
4592
 
4618
- #: ../app/lib/actions/katello/host/upload_package_profile.rb:22
4619
- #: action_names.rb:27
4593
+ #: ../app/lib/actions/katello/host/upload_package_profile.rb:21
4594
+ #: action_names.rb:39
4620
4595
  msgid "Package Profile Update"
4621
4596
  msgstr ""
4622
4597
 
4623
- #: ../app/lib/actions/katello/host/upload_profiles.rb:22
4598
+ #: ../app/lib/actions/katello/host/upload_profiles.rb:21
4624
4599
  msgid "Combined Profile Update for %s"
4625
4600
  msgstr ""
4626
4601
 
4627
- #: ../app/lib/actions/katello/host/upload_profiles.rb:24 action_names.rb:26
4602
+ #: ../app/lib/actions/katello/host/upload_profiles.rb:23 action_names.rb:38
4628
4603
  msgid "Combined Profile Update"
4629
4604
  msgstr ""
4630
4605
 
4631
- #: ../app/lib/actions/katello/organization/destroy.rb:30 action_names.rb:51
4606
+ #: ../app/lib/actions/katello/organization/destroy.rb:30 action_names.rb:37
4632
4607
  msgid "Destroy"
4633
4608
  msgstr ""
4634
4609
 
@@ -4668,7 +4643,7 @@ msgstr ""
4668
4643
  msgid "Cannot delete redhat product content"
4669
4644
  msgstr ""
4670
4645
 
4671
- #: ../app/lib/actions/katello/product/create.rb:37 action_names.rb:56
4646
+ #: ../app/lib/actions/katello/product/create.rb:37 action_names.rb:36
4672
4647
  msgid "Product Create"
4673
4648
  msgstr ""
4674
4649
 
@@ -4682,7 +4657,7 @@ msgid ""
4682
4657
  " %{product}, %{view_versions}"
4683
4658
  msgstr ""
4684
4659
 
4685
- #: ../app/lib/actions/katello/product/destroy.rb:65 action_names.rb:25
4660
+ #: ../app/lib/actions/katello/product/destroy.rb:65 action_names.rb:35
4686
4661
  msgid "Delete Product"
4687
4662
  msgstr ""
4688
4663
 
@@ -4701,7 +4676,7 @@ msgstr ""
4701
4676
 
4702
4677
  #: ../app/lib/actions/katello/provider/update.rb:12
4703
4678
  #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:188
4704
- #: action_names.rb:9
4679
+ #: action_names.rb:10
4705
4680
  msgid "Update"
4706
4681
  msgstr ""
4707
4682
 
@@ -4718,76 +4693,60 @@ msgid "Cannot publish a link repository if multiple component clones are specifi
4718
4693
  msgstr ""
4719
4694
 
4720
4695
  #: ../app/lib/actions/katello/repository/destroy_package_group.rb:21
4721
- #: action_names.rb:62
4696
+ #: action_names.rb:30
4722
4697
  msgid "Delete Package Group"
4723
4698
  msgstr ""
4724
4699
 
4725
- #: ../app/lib/actions/katello/repository/export.rb:14
4726
- msgid ""
4727
- "Unable to export, 'pulp_export_destination' setting is not set to a valid dire"
4728
- "ctory."
4729
- msgstr ""
4730
-
4731
- #: ../app/lib/actions/katello/repository/export.rb:18
4732
- msgid ""
4733
- "Unable to export. 'pulp_export_destination' setting is not a writable director"
4734
- "y."
4735
- msgstr ""
4736
-
4737
- #: ../app/lib/actions/katello/repository/import_upload.rb:59
4738
- #: ../app/lib/actions/katello/repository/upload_files.rb:46 action_names.rb:12
4700
+ #: ../app/lib/actions/katello/repository/import_upload.rb:60
4701
+ #: ../app/lib/actions/katello/repository/upload_files.rb:51 action_names.rb:15
4739
4702
  msgid "Upload into"
4740
4703
  msgstr ""
4741
4704
 
4742
- #: ../app/lib/actions/katello/repository/remove_content.rb:11
4705
+ #: ../app/lib/actions/katello/repository/remove_content.rb:10
4743
4706
  msgid "Cannot remove content from a non-custom repository"
4744
4707
  msgstr ""
4745
4708
 
4746
- #: ../app/lib/actions/katello/repository/remove_content.rb:14
4709
+ #: ../app/lib/actions/katello/repository/remove_content.rb:13
4747
4710
  msgid "Can only remove content from within the Default Content View"
4748
4711
  msgstr ""
4749
4712
 
4750
- #: ../app/lib/actions/katello/repository/remove_content.rb:56
4751
- #: action_names.rb:16
4713
+ #: ../app/lib/actions/katello/repository/remove_content.rb:58
4714
+ #: action_names.rb:20
4752
4715
  msgid "Remove Content"
4753
4716
  msgstr ""
4754
4717
 
4755
- #: ../app/lib/actions/katello/repository/sync.rb:33
4718
+ #: ../app/lib/actions/katello/repository/sync.rb:30
4756
4719
  msgid "Unable to sync repo. This repository does not have a feed url."
4757
4720
  msgstr ""
4758
4721
 
4759
- #: ../app/lib/actions/katello/repository/sync.rb:34
4722
+ #: ../app/lib/actions/katello/repository/sync.rb:31
4760
4723
  msgid "Cannot validate contents on non-yum/deb repositories."
4761
4724
  msgstr ""
4762
4725
 
4763
- #: ../app/lib/actions/katello/repository/sync.rb:35
4726
+ #: ../app/lib/actions/katello/repository/sync.rb:32
4764
4727
  msgid "Cannot skip metadata check on non-yum repositories."
4765
4728
  msgstr ""
4766
4729
 
4767
- #: ../app/lib/actions/katello/repository/sync.rb:96
4730
+ #: ../app/lib/actions/katello/repository/sync.rb:81
4768
4731
  msgid "Synchronize: Validate Content"
4769
4732
  msgstr ""
4770
4733
 
4771
- #: ../app/lib/actions/katello/repository/sync.rb:98
4734
+ #: ../app/lib/actions/katello/repository/sync.rb:83
4772
4735
  msgid "Synchronize: Skip Metadata Check"
4773
4736
  msgstr ""
4774
4737
 
4775
- #: ../app/lib/actions/katello/repository/sync.rb:100 action_names.rb:15
4738
+ #: ../app/lib/actions/katello/repository/sync.rb:85 action_names.rb:19
4776
4739
  msgid "Synchronize"
4777
4740
  msgstr ""
4778
4741
 
4779
- #: ../app/lib/actions/katello/repository/upload_errata.rb:33 action_names.rb:13
4780
- msgid "Upload errata into"
4781
- msgstr ""
4782
-
4783
- #: ../app/lib/actions/katello/repository/upload_package_group.rb:28
4784
- #: action_names.rb:53
4742
+ #: ../app/lib/actions/katello/repository/upload_package_group.rb:19
4743
+ #: action_names.rb:14
4785
4744
  msgid "Create Package Group"
4786
4745
  msgstr ""
4787
4746
 
4788
4747
  #: ../app/lib/actions/katello/repository_set/disable_repository.rb:6
4789
4748
  #: ../webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepositoryContent.js:10
4790
- #: action_names.rb:54
4749
+ #: action_names.rb:12
4791
4750
  msgid "Disable"
4792
4751
  msgstr ""
4793
4752
 
@@ -4796,7 +4755,7 @@ msgid "Repository not found"
4796
4755
  msgstr ""
4797
4756
 
4798
4757
  #: ../app/lib/actions/katello/repository_set/enable_repository.rb:6
4799
- #: action_names.rb:10
4758
+ #: action_names.rb:11
4800
4759
  msgid "Enable"
4801
4760
  msgstr ""
4802
4761
 
@@ -4804,7 +4763,7 @@ msgstr ""
4804
4763
  msgid "The repository is already enabled"
4805
4764
  msgstr ""
4806
4765
 
4807
- #: ../app/lib/actions/katello/sync_plan/run.rb:36 action_names.rb:8
4766
+ #: ../app/lib/actions/katello/sync_plan/run.rb:41 action_names.rb:9
4808
4767
  msgid "Run Sync Plan:"
4809
4768
  msgstr ""
4810
4769
 
@@ -4878,11 +4837,6 @@ msgstr ""
4878
4837
  msgid "waiting for Pulp to finish the task"
4879
4838
  msgstr ""
4880
4839
 
4881
- #: ../app/lib/actions/pulp/consumer/destroy.rb:12
4882
- #: ../app/services/katello/registration_manager.rb:268
4883
- msgid "Pulp Consumer %s has already been removed"
4884
- msgstr ""
4885
-
4886
4840
  #: ../app/lib/actions/pulp/consumer/sync_capsule.rb:18
4887
4841
  msgid "Synchronize capsule content"
4888
4842
  msgstr ""
@@ -4985,18 +4939,18 @@ msgid "Group %{id} already created."
4985
4939
  msgstr ""
4986
4940
 
4987
4941
  #: ../app/lib/actions/pulp3/content_view_version/create_export_history.rb:52
4988
- #: action_names.rb:7
4942
+ #: action_names.rb:8
4989
4943
  msgid "Create Export History"
4990
4944
  msgstr ""
4991
4945
 
4992
4946
  #: ../app/lib/actions/pulp3/content_view_version/create_import_history.rb:29
4993
- #: action_names.rb:6
4947
+ #: action_names.rb:7
4994
4948
  msgid "Create Import History"
4995
4949
  msgstr ""
4996
4950
 
4997
4951
  #:
4998
4952
  #: ../app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb:37
4999
- #: action_names.rb:4
4953
+ #: action_names.rb:3
5000
4954
  msgid "Export Library"
5001
4955
  msgstr ""
5002
4956
 
@@ -5010,7 +4964,7 @@ msgid ""
5010
4964
  msgstr ""
5011
4965
 
5012
4966
  #: ../app/lib/actions/pulp3/orchestration/content_view_version/import.rb:49
5013
- #: action_names.rb:3
4967
+ #: action_names.rb:4
5014
4968
  msgid "Import"
5015
4969
  msgstr ""
5016
4970
 
@@ -5039,53 +4993,50 @@ msgstr ""
5039
4993
 
5040
4994
  #: ../app/lib/katello/errors.rb:56
5041
4995
  msgid ""
5042
- "A smart proxy seems to have been refreshed without pulpcore being running. Yo"
5043
- "u may want to "
4996
+ "A smart proxy seems to have been refreshed without pulpcore being running. Ple"
4997
+ "ase refresh the smart proxy after ensuring that pulpcore services are running."
5044
4998
  msgstr ""
5045
4999
 
5046
5000
  #: ../app/lib/katello/errors.rb:87
5047
5001
  msgid "No errors"
5048
5002
  msgstr ""
5049
5003
 
5050
- #: ../app/lib/katello/errors.rb:121 ../app/services/katello/pulp3/task.rb:92
5004
+ #: ../app/lib/katello/errors.rb:122 ../app/services/katello/pulp3/task.rb:108
5051
5005
  msgid "Task canceled"
5052
5006
  msgstr ""
5053
5007
 
5054
- #: ../app/lib/katello/errors.rb:123 ../app/services/katello/pulp3/task.rb:95
5008
+ #: ../app/lib/katello/errors.rb:124 ../app/services/katello/pulp3/task.rb:111
5055
5009
  msgid "Pulp task error"
5056
5010
  msgstr ""
5057
5011
 
5058
- #: ../app/lib/katello/errors.rb:132
5012
+ #: ../app/lib/katello/errors.rb:133
5059
5013
  msgid ""
5060
5014
  "The Subscription Allocation providing the imported manifest has been removed. "
5061
5015
  "Please create a new Subscription Allocation and import the new manifest."
5062
5016
  msgstr ""
5063
5017
 
5064
- #: ../app/lib/katello/errors.rb:141
5018
+ #: ../app/lib/katello/errors.rb:142
5065
5019
  msgid "No URL found for a container registry. Please check the configuration."
5066
5020
  msgstr ""
5067
5021
 
5068
- #: ../app/lib/katello/errors.rb:147
5022
+ #: ../app/lib/katello/errors.rb:148
5069
5023
  msgid ""
5070
5024
  "You are currently operating in disconnected mode where access to Red Hat Subcr"
5071
5025
  "iption Management is prohibited. If you would like to change this, please upda"
5072
5026
  "te the content setting 'Disconnected mode'."
5073
5027
  msgstr ""
5074
5028
 
5075
- #: ../app/lib/katello/errors.rb:154
5029
+ #: ../app/lib/katello/errors.rb:155
5076
5030
  msgid "Current organization has no manifest imported."
5077
5031
  msgstr ""
5078
5032
 
5079
- #: ../app/lib/katello/errors.rb:160
5033
+ #: ../app/lib/katello/errors.rb:161
5080
5034
  msgid ""
5081
5035
  "This Organization's subscription manifest has expired. Please import a new man"
5082
5036
  "ifest."
5083
5037
  msgstr ""
5084
5038
 
5085
- #: ../app/lib/katello/http_resource.rb:83
5086
5039
  #: ../app/lib/katello/http_resource.rb:97
5087
- #: ../app/lib/katello/http_resource.rb:111
5088
- #: ../app/lib/katello/http_resource.rb:125
5089
5040
  msgid "A backend service [ %s ] is unreachable"
5090
5041
  msgstr ""
5091
5042
 
@@ -5920,7 +5871,7 @@ msgstr ""
5920
5871
  msgid "Content_Host_Status"
5921
5872
  msgstr ""
5922
5873
 
5923
- #: ../app/models/katello/concerns/host_managed_extensions.rb:113
5874
+ #: ../app/models/katello/concerns/host_managed_extensions.rb:112
5924
5875
  msgid "Mark Content Host Statuses as Unknown for %s"
5925
5876
  msgstr ""
5926
5877
 
@@ -5968,9 +5919,8 @@ msgstr ""
5968
5919
  #: ../app/models/katello/concerns/smart_proxy_extensions.rb:60
5969
5920
  #: ../app/models/katello/content_view_erratum_filter_rule.rb:26
5970
5921
  #: ../app/models/katello/content_view_version_export_history.rb:20
5971
- #: ../app/models/katello/root_repository.rb:85
5972
- #: ../app/models/katello/root_repository.rb:89
5973
- #: ../app/models/katello/root_repository.rb:93
5922
+ #: ../app/models/katello/root_repository.rb:92
5923
+ #: ../app/models/katello/root_repository.rb:96
5974
5924
  msgid "must be one of the following: %s"
5975
5925
  msgstr ""
5976
5926
 
@@ -5978,18 +5928,22 @@ msgstr ""
5978
5928
  msgid "Could not find a smart proxy with pulp feature."
5979
5929
  msgstr ""
5980
5930
 
5981
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:325
5931
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:309
5932
+ msgid "Content type %{content_type_string} does not belong to an enabled repo type."
5933
+ msgstr ""
5934
+
5935
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:330
5982
5936
  msgid "Could not remove the lifecycle environment from the smart proxy"
5983
5937
  msgstr ""
5984
5938
 
5985
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:328
5939
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:333
5986
5940
  msgid ""
5987
5941
  "Lifecycle environment was not attached to the smart proxy; therefore, no chang"
5988
5942
  "es were made."
5989
5943
  msgstr ""
5990
5944
 
5991
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:366
5992
- #: ../app/models/katello/concerns/smart_proxy_extensions.rb:372
5945
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:371
5946
+ #: ../app/models/katello/concerns/smart_proxy_extensions.rb:377
5993
5947
  msgid "%s is unreachable. %s"
5994
5948
  msgstr ""
5995
5949
 
@@ -5997,54 +5951,54 @@ msgstr ""
5997
5951
  msgid "Product with ID %s not found in Candlepin. Skipping content import for it."
5998
5952
  msgstr ""
5999
5953
 
6000
- #: ../app/models/katello/content_view.rb:406
5954
+ #: ../app/models/katello/content_view.rb:411
6001
5955
  msgid "Cannot delete view while it exists in environments"
6002
5956
  msgstr ""
6003
5957
 
6004
- #: ../app/models/katello/content_view.rb:411
5958
+ #: ../app/models/katello/content_view.rb:416
6005
5959
  msgid "Cannot delete from %s, view does not exist there."
6006
5960
  msgstr ""
6007
5961
 
6008
- #: ../app/models/katello/content_view.rb:441
5962
+ #: ../app/models/katello/content_view.rb:446
6009
5963
  #: ../app/models/katello/content_view_version_component.rb:13
6010
5964
  msgid "Cannot add component versions to a non-composite content view"
6011
5965
  msgstr ""
6012
5966
 
6013
- #: ../app/models/katello/content_view.rb:447
5967
+ #: ../app/models/katello/content_view.rb:452
6014
5968
  msgid "Cannot set auto publish to a non-composite content view"
6015
5969
  msgstr ""
6016
5970
 
6017
- #: ../app/models/katello/content_view.rb:453
5971
+ #: ../app/models/katello/content_view.rb:458
6018
5972
  msgid "Container Image repo '%{repo}' is present in multiple component content views."
6019
5973
  msgstr ""
6020
5974
 
6021
- #: ../app/models/katello/content_view.rb:516
5975
+ #: ../app/models/katello/content_view.rb:521
6022
5976
  msgid "Cannot import a composite content view"
6023
5977
  msgstr ""
6024
5978
 
6025
- #: ../app/models/katello/content_view.rb:517
5979
+ #: ../app/models/katello/content_view.rb:522
6026
5980
  msgid "This Content View must be set to Import-only before performing an import"
6027
5981
  msgstr ""
6028
5982
 
6029
- #: ../app/models/katello/content_view.rb:522
5983
+ #: ../app/models/katello/content_view.rb:527
6030
5984
  msgid "User must be logged in."
6031
5985
  msgstr ""
6032
5986
 
6033
- #: ../app/models/katello/content_view.rb:523
5987
+ #: ../app/models/katello/content_view.rb:528
6034
5988
  msgid "Cannot publish default content view"
6035
5989
  msgstr ""
6036
5990
 
6037
- #: ../app/models/katello/content_view.rb:528
5991
+ #: ../app/models/katello/content_view.rb:533
6038
5992
  msgid "Import-only content views can not be published directly"
6039
5993
  msgstr ""
6040
5994
 
6041
- #: ../app/models/katello/content_view.rb:546
5995
+ #: ../app/models/katello/content_view.rb:551
6042
5996
  msgid ""
6043
5997
  "Consider changing the Lifecycle Environment's Registry Name Pattern to somethi"
6044
5998
  "ng more specific."
6045
5999
  msgstr ""
6046
6000
 
6047
- #: ../app/models/katello/content_view.rb:556
6001
+ #: ../app/models/katello/content_view.rb:561
6048
6002
  msgid ""
6049
6003
  "Make sure all the component content views are published before publishing/prom"
6050
6004
  "oting the composite content view. This restriction is optional and can be modi"
@@ -6052,7 +6006,7 @@ msgid ""
6052
6006
  "site_view flag."
6053
6007
  msgstr ""
6054
6008
 
6055
- #: ../app/models/katello/content_view.rb:566
6009
+ #: ../app/models/katello/content_view.rb:571
6056
6010
  msgid ""
6057
6011
  "The action requested on this composite view cannot be performed until all of t"
6058
6012
  "he component content view versions have been promoted to the target environmen"
@@ -6060,44 +6014,45 @@ msgid ""
6060
6014
  "tor -> Settings -> Content page using the restrict_composite_view flag."
6061
6015
  msgstr ""
6062
6016
 
6063
- #: ../app/models/katello/content_view.rb:580
6064
- #: ../app/models/katello/content_view.rb:599
6017
+ #: ../app/models/katello/content_view.rb:585
6018
+ #: ../app/models/katello/content_view.rb:604
6065
6019
  msgid "hosts"
6066
6020
  msgstr ""
6067
6021
 
6068
- #: ../app/models/katello/content_view.rb:581
6069
- #: ../app/models/katello/content_view.rb:600
6022
+ #: ../app/models/katello/content_view.rb:586
6023
+ #: ../app/models/katello/content_view.rb:605
6070
6024
  msgid "activation keys"
6071
6025
  msgstr ""
6072
6026
 
6073
- #: ../app/models/katello/content_view.rb:586
6027
+ #: ../app/models/katello/content_view.rb:591
6074
6028
  msgid ""
6075
6029
  "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependen"
6076
6030
  "t}: %{names}."
6077
6031
  msgstr ""
6078
6032
 
6079
- #: ../app/models/katello/content_view.rb:598
6033
+ #: ../app/models/katello/content_view.rb:603
6080
6034
  msgid "environments"
6081
6035
  msgstr ""
6082
6036
 
6083
- #: ../app/models/katello/content_view.rb:605
6037
+ #: ../app/models/katello/content_view.rb:610
6084
6038
  msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
6085
6039
  msgstr ""
6086
6040
 
6087
- #: ../app/models/katello/content_view.rb:615
6041
+ #: ../app/models/katello/content_view.rb:620
6088
6042
  #: ../app/views/dashboard/_content_views_widget.html.erb:2
6089
- #: ../lib/katello/plugin.rb:76 ../lib/katello/plugin.rb:206
6043
+ #: ../lib/katello/plugin.rb:76 ../lib/katello/plugin.rb:202
6090
6044
  #: ../webpack/containers/Application/config.js:57
6091
- #: ../webpack/scenes/ContentViews/ContentViewsPage.js:19
6092
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:38
6045
+ #: ../webpack/scenes/ContentViews/ContentViewsPage.js:10
6046
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:43
6047
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:71
6093
6048
  msgid "Content Views"
6094
6049
  msgstr ""
6095
6050
 
6096
- #: ../app/models/katello/content_view.rb:643
6051
+ #: ../app/models/katello/content_view.rb:648
6097
6052
  msgid "Import-only can not be changed after creation"
6098
6053
  msgstr ""
6099
6054
 
6100
- #: ../app/models/katello/content_view.rb:666
6055
+ #: ../app/models/katello/content_view.rb:671
6101
6056
  msgid "cannot be deleted if it has been promoted."
6102
6057
  msgstr ""
6103
6058
 
@@ -6162,12 +6117,24 @@ msgstr ""
6162
6117
  msgid "Security"
6163
6118
  msgstr ""
6164
6119
 
6165
- #: ../app/models/katello/content_view_filter.rb:12 ../lib/katello/plugin.rb:141
6166
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:34
6120
+ #: ../app/models/katello/content_view_filter.rb:12
6121
+ #: ../app/models/katello/errata_status.rb:9
6122
+ #: ../app/views/dashboard/_errata_widget.html.erb:16
6123
+ #: ../lib/katello/plugin.rb:146
6124
+ #: ../webpack/components/extensions/HostDetails/Tabs/ContentTab.js:23
6125
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentType.js:14
6126
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:40
6127
+ msgid "Errata"
6128
+ msgstr ""
6129
+
6130
+ #: ../app/models/katello/content_view_filter.rb:12 ../lib/katello/plugin.rb:136
6131
+ #: ../webpack/components/extensions/HostDetails/Tabs/ContentTab.js:15
6132
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:39
6167
6133
  msgid "Packages"
6168
6134
  msgstr ""
6169
6135
 
6170
- #: ../app/models/katello/content_view_filter.rb:12 ../lib/katello/plugin.rb:159
6136
+ #: ../app/models/katello/content_view_filter.rb:12 ../lib/katello/plugin.rb:156
6137
+ #: ../webpack/components/extensions/HostDetails/Tabs/ContentTab.js:31
6171
6138
  #: ../webpack/containers/Application/config.js:41
6172
6139
  #: ../webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js:52
6173
6140
  #: ../webpack/scenes/ModuleStreams/ModuleStreamsPage.js:51
@@ -6178,15 +6145,6 @@ msgstr ""
6178
6145
  msgid "Package Groups"
6179
6146
  msgstr ""
6180
6147
 
6181
- #: ../app/models/katello/content_view_filter.rb:12
6182
- #: ../app/models/katello/errata_status.rb:9
6183
- #: ../app/views/dashboard/_errata_widget.html.erb:16
6184
- #: ../lib/katello/plugin.rb:150
6185
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentType.js:14
6186
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:35
6187
- msgid "Errata"
6188
- msgstr ""
6189
-
6190
6148
  #: ../app/models/katello/content_view_filter.rb:12
6191
6149
  msgid "Container Images"
6192
6150
  msgstr ""
@@ -6271,16 +6229,16 @@ msgstr ""
6271
6229
  msgid ", must be unique to major and version id version."
6272
6230
  msgstr ""
6273
6231
 
6274
- #: ../app/models/katello/content_view_version.rb:310
6232
+ #: ../app/models/katello/content_view_version.rb:334
6275
6233
  msgid "Default content view versions cannot be promoted"
6276
6234
  msgstr ""
6277
6235
 
6278
- #: ../app/models/katello/content_view_version.rb:318
6236
+ #: ../app/models/katello/content_view_version.rb:342
6279
6237
  msgid "Cannot delete version while it is in environments: %s"
6280
6238
  msgstr ""
6281
6239
 
6282
- #: ../app/models/katello/content_view_version.rb:323
6283
- #: ../app/models/katello/content_view_version.rb:331
6240
+ #: ../app/models/katello/content_view_version.rb:347
6241
+ #: ../app/models/katello/content_view_version.rb:355
6284
6242
  msgid "Cannot delete version while it is in use by composite content views: %s"
6285
6243
  msgstr ""
6286
6244
 
@@ -6378,7 +6336,7 @@ msgstr ""
6378
6336
 
6379
6337
  #: ../app/models/katello/host_collection.rb:102
6380
6338
  #: ../app/views/dashboard/_host_collection_widget.html.erb:2
6381
- #: ../lib/katello/plugin.rb:192
6339
+ #: ../lib/katello/plugin.rb:188
6382
6340
  msgid "Host Collections"
6383
6341
  msgstr ""
6384
6342
 
@@ -6425,43 +6383,43 @@ msgstr ""
6425
6383
  msgid "Lifecycle Environment"
6426
6384
  msgstr ""
6427
6385
 
6428
- #: ../app/models/katello/ping.rb:56
6386
+ #: ../app/models/katello/ping.rb:49
6429
6387
  msgid "Not running"
6430
6388
  msgstr ""
6431
6389
 
6432
- #: ../app/models/katello/ping.rb:106
6390
+ #: ../app/models/katello/ping.rb:99
6433
6391
  msgid "Skipped pulp_auth check after failed pulp check"
6434
6392
  msgstr ""
6435
6393
 
6436
- #: ../app/models/katello/ping.rb:124
6394
+ #: ../app/models/katello/ping.rb:117
6437
6395
  msgid "foreman-tasks service not running or is not ready yet"
6438
6396
  msgstr ""
6439
6397
 
6440
- #: ../app/models/katello/ping.rb:130
6398
+ #: ../app/models/katello/ping.rb:123
6441
6399
  msgid "some executors are not responding, check %{status_url}"
6442
6400
  msgstr ""
6443
6401
 
6444
- #: ../app/models/katello/ping.rb:137
6402
+ #: ../app/models/katello/ping.rb:130
6445
6403
  msgid "Candlepin is not running properly"
6446
6404
  msgstr ""
6447
6405
 
6448
- #: ../app/models/katello/ping.rb:175 ../app/models/katello/ping.rb:194
6406
+ #: ../app/models/katello/ping.rb:168 ../app/models/katello/ping.rb:187
6449
6407
  msgid "Pulp does not appear to be running at %s."
6450
6408
  msgstr ""
6451
6409
 
6452
- #: ../app/models/katello/ping.rb:178 ../app/models/katello/ping.rb:197
6410
+ #: ../app/models/katello/ping.rb:171 ../app/models/katello/ping.rb:190
6453
6411
  msgid "Pulp database connection issue at %s."
6454
6412
  msgstr ""
6455
6413
 
6456
- #: ../app/models/katello/ping.rb:182
6414
+ #: ../app/models/katello/ping.rb:175
6457
6415
  msgid "Pulp message bus connection issue at %s."
6458
6416
  msgstr ""
6459
6417
 
6460
- #: ../app/models/katello/ping.rb:186 ../app/models/katello/ping.rb:208
6418
+ #: ../app/models/katello/ping.rb:179 ../app/models/katello/ping.rb:200
6461
6419
  msgid "Not all necessary pulp workers running at %s."
6462
6420
  msgstr ""
6463
6421
 
6464
- #: ../app/models/katello/ping.rb:201
6422
+ #: ../app/models/katello/ping.rb:194
6465
6423
  msgid "Pulp redis connection issue at %s."
6466
6424
  msgstr ""
6467
6425
 
@@ -6523,7 +6481,7 @@ msgstr ""
6523
6481
  msgid "Usage"
6524
6482
  msgstr ""
6525
6483
 
6526
- #: ../app/models/katello/repository.rb:114
6484
+ #: ../app/models/katello/repository.rb:118
6527
6485
  msgid ""
6528
6486
  "for repository '%{name}' is not unique and cannot be created in '%{env}'. Its "
6529
6487
  "Container Repository Name (%{container_name}) conflicts with an existing repos"
@@ -6531,118 +6489,138 @@ msgid ""
6531
6489
  " something more specific."
6532
6490
  msgstr ""
6533
6491
 
6534
- #: ../app/models/katello/repository.rb:219
6492
+ #: ../app/models/katello/repository.rb:225
6535
6493
  msgid "Successfully synchronized."
6536
6494
  msgstr ""
6537
6495
 
6538
- #: ../app/models/katello/repository.rb:514
6496
+ #: ../app/models/katello/repository.rb:534
6539
6497
  msgid "Cannot clone into the Default Content View"
6540
6498
  msgstr ""
6541
6499
 
6542
- #: ../app/models/katello/repository.rb:521
6500
+ #: ../app/models/katello/repository.rb:541
6543
6501
  msgid "View %{view} has not been promoted to %{env}"
6544
6502
  msgstr ""
6545
6503
 
6546
- #: ../app/models/katello/repository.rb:526
6504
+ #: ../app/models/katello/repository.rb:546
6547
6505
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
6548
6506
  msgstr ""
6549
6507
 
6550
- #: ../app/models/katello/repository.rb:705
6508
+ #: ../app/models/katello/repository.rb:725
6551
6509
  msgid "Duplicate branches specified - %{branches}"
6552
6510
  msgstr ""
6553
6511
 
6554
- #: ../app/models/katello/repository.rb:719
6512
+ #: ../app/models/katello/repository.rb:739
6555
6513
  msgid ""
6556
6514
  "Repository cannot be deleted since it has already been included in a published"
6557
6515
  " Content View. Please delete all Content View versions containing this reposit"
6558
6516
  "ory before attempting to delete it."
6559
6517
  msgstr ""
6560
6518
 
6561
- #: ../app/models/katello/repository.rb:770
6519
+ #: ../app/models/katello/repository.rb:786
6562
6520
  msgid "This is not a linked repository"
6563
6521
  msgstr ""
6564
6522
 
6565
- #: ../app/models/katello/root_repository.rb:133
6523
+ #: ../app/models/katello/root_repository.rb:88
6524
+ msgid "is not enabled. must be one of the following: %s"
6525
+ msgstr ""
6526
+
6527
+ #: ../app/models/katello/root_repository.rb:140
6566
6528
  msgid "Cannot set attribute %{attr} for content type %{type}"
6567
6529
  msgstr ""
6568
6530
 
6569
- #: ../app/models/katello/root_repository.rb:141
6531
+ #: ../app/models/katello/root_repository.rb:148
6570
6532
  msgid "Cannot sync file:// repositories with the On Demand Download Policy"
6571
6533
  msgstr ""
6572
6534
 
6573
- #: ../app/models/katello/root_repository.rb:147
6535
+ #: ../app/models/katello/root_repository.rb:154
6574
6536
  msgid "cannot be blank when Repository URL is provided."
6575
6537
  msgstr ""
6576
6538
 
6577
- #: ../app/models/katello/root_repository.rb:148
6539
+ #: ../app/models/katello/root_repository.rb:155
6578
6540
  msgid "Upstream Name cannot be blank when Repository URL is provided."
6579
6541
  msgstr ""
6580
6542
 
6581
- #: ../app/models/katello/root_repository.rb:154
6543
+ #: ../app/models/katello/root_repository.rb:161
6582
6544
  msgid ""
6583
6545
  "Container Image Repositories are not protected at this time. They need to be p"
6584
6546
  "ublished via http to be available to containers."
6585
6547
  msgstr ""
6586
6548
 
6587
- #: ../app/models/katello/root_repository.rb:161
6549
+ #: ../app/models/katello/root_repository.rb:172
6588
6550
  msgid "cannot be set for non-yum repositories."
6589
6551
  msgstr ""
6590
6552
 
6591
- #: ../app/models/katello/root_repository.rb:167
6553
+ #: ../app/models/katello/root_repository.rb:178
6592
6554
  msgid ""
6593
6555
  "Checksum type cannot be set for yum repositories with on demand download polic"
6594
6556
  "y."
6595
6557
  msgstr ""
6596
6558
 
6597
- #: ../app/models/katello/root_repository.rb:173
6559
+ #: ../app/models/katello/root_repository.rb:184
6598
6560
  msgid "OSTree Repositories cannot be unprotected."
6599
6561
  msgstr ""
6600
6562
 
6601
- #: ../app/models/katello/root_repository.rb:201
6563
+ #: ../app/models/katello/root_repository.rb:189
6564
+ msgid "URL needs to have a trailing /"
6565
+ msgstr ""
6566
+
6567
+ #: ../app/models/katello/root_repository.rb:193
6568
+ msgid "Requirements yaml is invalid!"
6569
+ msgstr ""
6570
+
6571
+ #: ../app/models/katello/root_repository.rb:221
6602
6572
  msgid "cannot be set for non-ostree repositories."
6603
6573
  msgstr ""
6604
6574
 
6605
- #: ../app/models/katello/root_repository.rb:208
6575
+ #: ../app/models/katello/root_repository.rb:228
6606
6576
  msgid "Ignorable content can be only set for Yum repositories."
6607
6577
  msgstr ""
6608
6578
 
6609
- #: ../app/models/katello/root_repository.rb:210
6579
+ #: ../app/models/katello/root_repository.rb:230
6610
6580
  msgid "Invalid value specified for ignorable content."
6611
6581
  msgstr ""
6612
6582
 
6613
- #: ../app/models/katello/root_repository.rb:212
6583
+ #: ../app/models/katello/root_repository.rb:232
6614
6584
  msgid "Invalid value specified for ignorable content. Permissible values %s"
6615
6585
  msgstr ""
6616
6586
 
6617
- #: ../app/models/katello/root_repository.rb:219
6587
+ #: ../app/models/katello/root_repository.rb:239
6618
6588
  msgid "Invalid value specified for Container Image repositories."
6619
6589
  msgstr ""
6620
6590
 
6621
- #: ../app/models/katello/root_repository.rb:229
6591
+ #: ../app/models/katello/root_repository.rb:249
6622
6592
  msgid "are only allowed for Yum repositories."
6623
6593
  msgstr ""
6624
6594
 
6625
- #: ../app/models/katello/root_repository.rb:232
6595
+ #: ../app/models/katello/root_repository.rb:252
6626
6596
  msgid "invalid: Repositories can only require one OS version."
6627
6597
  msgstr ""
6628
6598
 
6629
- #: ../app/models/katello/root_repository.rb:236
6599
+ #: ../app/models/katello/root_repository.rb:256
6630
6600
  msgid "must be one of: %s"
6631
6601
  msgstr ""
6632
6602
 
6633
- #: ../app/models/katello/root_repository.rb:244
6603
+ #: ../app/models/katello/root_repository.rb:271
6634
6604
  msgid "Upstream username and password may only be set on custom repositories."
6635
6605
  msgstr ""
6636
6606
 
6637
- #: ../app/models/katello/root_repository.rb:246
6607
+ #: ../app/models/katello/root_repository.rb:273
6638
6608
  msgid "Upstream password requires upstream username be set."
6639
6609
  msgstr ""
6640
6610
 
6641
- #: ../app/models/katello/root_repository.rb:248
6611
+ #: ../app/models/katello/root_repository.rb:275
6642
6612
  msgid "Upstream username requires upstream password be set."
6643
6613
  msgstr ""
6644
6614
 
6645
- #: ../app/models/katello/root_repository.rb:322
6615
+ #: ../app/models/katello/root_repository.rb:287
6616
+ msgid "Auth token requires Auth URL be set."
6617
+ msgstr ""
6618
+
6619
+ #: ../app/models/katello/root_repository.rb:289
6620
+ msgid "Auth URL requires Auth token be set."
6621
+ msgstr ""
6622
+
6623
+ #: ../app/models/katello/root_repository.rb:367
6646
6624
  msgid "Cannot calculate name for custom repos"
6647
6625
  msgstr ""
6648
6626
 
@@ -7145,52 +7123,70 @@ msgstr ""
7145
7123
 
7146
7124
  #: ../app/models/setting/content.rb:146
7147
7125
  msgid ""
7126
+ "Allow Host registrations to bypass 'Host Profile Assume' as long as the host i"
7127
+ "s in build mode."
7128
+ msgstr ""
7129
+
7130
+ #: ../app/models/setting/content.rb:148
7131
+ msgid "Host Profile Can Change In Build"
7132
+ msgstr ""
7133
+
7134
+ #: ../app/models/setting/content.rb:149
7135
+ msgid "Allow hosts to re-register themselves only when they are in build mode"
7136
+ msgstr ""
7137
+
7138
+ #: ../app/models/setting/content.rb:150
7139
+ msgid "Host Can Re-Register Only In Build"
7140
+ msgstr ""
7141
+
7142
+ #: ../app/models/setting/content.rb:151
7143
+ msgid ""
7148
7144
  "Amount of workers in the pool to handle the execution of host-related tasks. W"
7149
7145
  "hen set to 0, the default queue will be used instead. Restart of the dynflowd/"
7150
7146
  "foreman-tasks service is required."
7151
7147
  msgstr ""
7152
7148
 
7153
- #: ../app/models/setting/content.rb:147
7149
+ #: ../app/models/setting/content.rb:152
7154
7150
  msgid "Host Tasks Workers Pool Size"
7155
7151
  msgstr ""
7156
7152
 
7157
- #: ../app/models/setting/content.rb:148
7153
+ #: ../app/models/setting/content.rb:153
7158
7154
  msgid "Number of host applicability calculations to process per task."
7159
7155
  msgstr ""
7160
7156
 
7161
- #: ../app/models/setting/content.rb:149
7157
+ #: ../app/models/setting/content.rb:154
7162
7158
  msgid "Applicability Batch Size"
7163
7159
  msgstr ""
7164
7160
 
7165
- #: ../app/models/setting/content.rb:150
7161
+ #: ../app/models/setting/content.rb:155
7166
7162
  msgid ""
7167
7163
  "For pages that support it, automatically perform search while typing in search"
7168
7164
  " input."
7169
7165
  msgstr ""
7170
7166
 
7171
- #: ../app/models/setting/content.rb:151
7167
+ #: ../app/models/setting/content.rb:156
7172
7168
  msgid "Autosearch"
7173
7169
  msgstr ""
7174
7170
 
7175
- #: ../app/models/setting/content.rb:152
7171
+ #: ../app/models/setting/content.rb:157
7176
7172
  msgid ""
7177
7173
  "If Autosearch is enabled, delay in milliseconds before executing searches whil"
7178
7174
  "e typing."
7179
7175
  msgstr ""
7180
7176
 
7181
- #: ../app/models/setting/content.rb:153
7177
+ #: ../app/models/setting/content.rb:158
7182
7178
  msgid "Autosearch delay"
7183
7179
  msgstr ""
7184
7180
 
7185
- #: ../app/models/setting/content.rb:154
7181
+ #: ../app/models/setting/content.rb:159
7186
7182
  msgid "The number of items fetched from a single paged Pulp API call."
7187
7183
  msgstr ""
7188
7184
 
7189
- #: ../app/models/setting/content.rb:155
7185
+ #: ../app/models/setting/content.rb:160
7190
7186
  msgid "Pulp bulk load size"
7191
7187
  msgstr ""
7192
7188
 
7193
- #: ../app/models/setting/content.rb:185
7189
+ #: ../app/models/setting/content.rb:190
7194
7190
  msgid "There is no such HTTP proxy"
7195
7191
  msgstr ""
7196
7192
 
@@ -7332,30 +7328,36 @@ msgstr ""
7332
7328
  msgid "Artifact Id and relative path are needed to create content"
7333
7329
  msgstr ""
7334
7330
 
7335
- #: ../app/services/katello/registration_manager.rb:146
7331
+ #: ../app/services/katello/registration_manager.rb:158
7336
7332
  msgid "Content View and Environment not set for registration."
7337
7333
  msgstr ""
7338
7334
 
7339
- #: ../app/services/katello/registration_manager.rb:239
7335
+ #: ../app/services/katello/registration_manager.rb:238
7340
7336
  msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
7341
7337
  msgstr ""
7342
7338
 
7343
- #: ../app/services/katello/registration_manager.rb:253
7339
+ #: ../app/services/katello/registration_manager.rb:252
7344
7340
  msgid ""
7345
7341
  "At least one activation key must have a lifecycle environment and content view"
7346
7342
  " assigned to it"
7347
7343
  msgstr ""
7348
7344
 
7349
- #: ../app/services/katello/registration_manager.rb:260
7345
+ #: ../app/services/katello/registration_manager.rb:259
7350
7346
  msgid ""
7351
7347
  "Attempted to destroy consumer %s from candlepin, but consumer does not exist i"
7352
7348
  "n candlepin"
7353
7349
  msgstr ""
7354
7350
 
7355
- #: ../app/services/katello/registration_manager.rb:262
7351
+ #: ../app/services/katello/registration_manager.rb:261
7356
7352
  msgid "Candlepin consumer %s has already been removed"
7357
7353
  msgstr ""
7358
7354
 
7355
+ #: ../app/services/katello/repository_type_manager.rb:158
7356
+ msgid ""
7357
+ "Content type %{content_type} is incompatible with repositories of type %{repo_"
7358
+ "type}"
7359
+ msgstr ""
7360
+
7359
7361
  #: ../app/services/katello/smart_proxy_helper.rb:20
7360
7362
  msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
7361
7363
  msgstr ""
@@ -7375,7 +7377,7 @@ msgstr ""
7375
7377
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:83
7376
7378
  #: ../lib/katello/plugin.rb:12 ../webpack/containers/Application/config.js:24
7377
7379
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:69
7378
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:238
7380
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:224
7379
7381
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:229
7380
7382
  msgid "Subscriptions"
7381
7383
  msgstr ""
@@ -7402,10 +7404,12 @@ msgstr ""
7402
7404
  #: ../app/views/dashboard/_content_views_widget.html.erb:17
7403
7405
  #: ../app/views/dashboard/_sync_widget.html.erb:18
7404
7406
  #: ../webpack/components/extensions/about/SystemStatuses.js:24
7405
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:40
7406
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:38
7407
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:40
7408
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:73
7407
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:58
7408
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:222
7409
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:225
7410
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:39
7411
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:33
7412
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:74
7409
7413
  #: ../webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js:8
7410
7414
  msgid "Status"
7411
7415
  msgstr ""
@@ -7421,14 +7425,15 @@ msgstr ""
7421
7425
  #: ../app/views/dashboard/_errata_widget.html.erb:15
7422
7426
  #: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:20
7423
7427
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:7
7424
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:35
7428
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:101
7429
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:53
7425
7430
  #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:60
7426
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:68
7431
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:69
7427
7432
  #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:14
7428
- #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:35
7433
+ #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:36
7429
7434
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:15
7430
7435
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:90
7431
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:64
7436
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:66
7432
7437
  msgid "Type"
7433
7438
  msgstr ""
7434
7439
 
@@ -7450,23 +7455,25 @@ msgstr ""
7450
7455
  #: ../webpack/components/Content/Details/ContentDetailRepositoryTableSchema.js:13
7451
7456
  #: ../webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js:14
7452
7457
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:7
7453
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:36
7458
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:68
7459
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:54
7454
7460
  #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:44
7455
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:34
7456
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:34
7457
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:69
7461
+ #: ../webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js:72
7462
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:35
7463
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:43
7464
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:70
7458
7465
  #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:15
7459
7466
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:9
7460
7467
  #: ../webpack/scenes/ModuleStreams/Details/Profiles/TableSchema.js:13
7461
7468
  #: ../webpack/scenes/ModuleStreams/ModuleStreamsTableSchema.js:15
7462
7469
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:4
7463
7470
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:60
7464
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:53
7471
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:55
7465
7472
  msgid "Name"
7466
7473
  msgstr ""
7467
7474
 
7468
7475
  #: ../app/views/dashboard/_host_collection_widget.html.erb:17
7469
- #: ../lib/katello/plugin.rb:181
7476
+ #: ../lib/katello/plugin.rb:177
7470
7477
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js:22
7471
7478
  msgid "Content Hosts"
7472
7479
  msgstr ""
@@ -7536,8 +7543,8 @@ msgstr ""
7536
7543
  #: ../app/views/dashboard/_sync_widget.html.erb:17
7537
7544
  #: ../app/views/katello/sync_management/_products.html.erb:7
7538
7545
  #: ../webpack/components/Content/Details/ContentDetailRepositoryTableSchema.js:31
7539
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:35
7540
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:70
7546
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:36
7547
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:71
7541
7548
  msgid "Product"
7542
7549
  msgstr ""
7543
7550
 
@@ -7546,7 +7553,7 @@ msgid "Finished"
7546
7553
  msgstr ""
7547
7554
 
7548
7555
  #: ../app/views/foreman/smart_proxies/_content_sync.html.erb:2
7549
- #: ../lib/katello/plugin.rb:259
7556
+ #: ../lib/katello/plugin.rb:255
7550
7557
  msgid "Content Sync"
7551
7558
  msgstr ""
7552
7559
 
@@ -7647,7 +7654,7 @@ msgid ""
7647
7654
  msgstr ""
7648
7655
 
7649
7656
  #: ../app/views/katello/errata_mailer/promote_errata.text.erb:9
7650
- #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:27
7657
+ #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:28
7651
7658
  msgid "Environment"
7652
7659
  msgstr ""
7653
7660
 
@@ -7676,7 +7683,7 @@ msgid "Sync Summary"
7676
7683
  msgstr ""
7677
7684
 
7678
7685
  #: ../app/views/katello/errata_mailer/sync_errata.text.erb:8
7679
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:36
7686
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:37
7680
7687
  msgid "Repository"
7681
7688
  msgstr ""
7682
7689
 
@@ -7705,7 +7712,7 @@ msgstr ""
7705
7712
  #: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:22
7706
7713
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:9
7707
7714
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:65
7708
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:74
7715
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:76
7709
7716
  msgid "SKU"
7710
7717
  msgstr ""
7711
7718
 
@@ -7713,7 +7720,7 @@ msgstr ""
7713
7720
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:10
7714
7721
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:70
7715
7722
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js:31
7716
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:84
7723
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:86
7717
7724
  msgid "Contract"
7718
7725
  msgstr ""
7719
7726
 
@@ -7721,7 +7728,7 @@ msgstr ""
7721
7728
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:11
7722
7729
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:75
7723
7730
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js:42
7724
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:94
7731
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:96
7725
7732
  msgid "Start Date"
7726
7733
  msgstr ""
7727
7734
 
@@ -7729,7 +7736,7 @@ msgstr ""
7729
7736
  #: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:12
7730
7737
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:80
7731
7738
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js:52
7732
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:104
7739
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:106
7733
7740
  msgid "End Date"
7734
7741
  msgstr ""
7735
7742
 
@@ -7773,7 +7780,7 @@ msgstr ""
7773
7780
  #: ../app/views/katello/sync_management/_products.html.erb:16
7774
7781
  #: ../db/seeds.d/109-katello-notification-blueprints.rb:12
7775
7782
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:21
7776
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:28
7783
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:33
7777
7784
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:25
7778
7785
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:86
7779
7786
  msgid "Details"
@@ -7804,6 +7811,9 @@ msgid "Synchronize Now"
7804
7811
  msgstr ""
7805
7812
 
7806
7813
  #: ../app/views/katello/sync_management/index.html.erb:5
7814
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:171
7815
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js:122
7816
+ #: ../webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js:143
7807
7817
  #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:274
7808
7818
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:147
7809
7819
  #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js:30
@@ -8129,100 +8139,100 @@ msgstr ""
8129
8139
  msgid "Content Types"
8130
8140
  msgstr ""
8131
8141
 
8132
- #: ../lib/katello/plugin.rb:97
8142
+ #: ../lib/katello/plugin.rb:96
8133
8143
  msgid "Deb Packages"
8134
8144
  msgstr ""
8135
8145
 
8136
- #: ../lib/katello/plugin.rb:108
8146
+ #: ../lib/katello/plugin.rb:106
8137
8147
  msgid "Container Image Tags"
8138
8148
  msgstr ""
8139
8149
 
8140
- #: ../lib/katello/plugin.rb:119
8150
+ #: ../lib/katello/plugin.rb:116
8141
8151
  msgid "Files"
8142
8152
  msgstr ""
8143
8153
 
8144
- #: ../lib/katello/plugin.rb:130
8154
+ #: ../lib/katello/plugin.rb:126
8145
8155
  msgid "OSTree Branches"
8146
8156
  msgstr ""
8147
8157
 
8148
- #: ../lib/katello/plugin.rb:170 ../webpack/containers/Application/config.js:49
8158
+ #: ../lib/katello/plugin.rb:166 ../webpack/containers/Application/config.js:49
8149
8159
  #: ../webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js:51
8150
8160
  msgid "Ansible Collections"
8151
8161
  msgstr ""
8152
8162
 
8153
- #: ../lib/katello/plugin.rb:282
8163
+ #: ../lib/katello/plugin.rb:278
8154
8164
  msgid "Storage"
8155
8165
  msgstr ""
8156
8166
 
8157
- #: ../lib/katello/plugin.rb:311
8167
+ #: ../lib/katello/plugin.rb:307
8158
8168
  msgid "Katello: Install Package"
8159
8169
  msgstr ""
8160
8170
 
8161
- #: ../lib/katello/plugin.rb:311
8171
+ #: ../lib/katello/plugin.rb:307
8162
8172
  msgid "Install package via Katello interface"
8163
8173
  msgstr ""
8164
8174
 
8165
- #: ../lib/katello/plugin.rb:312
8175
+ #: ../lib/katello/plugin.rb:308
8166
8176
  msgid "Katello: Update Package"
8167
8177
  msgstr ""
8168
8178
 
8169
- #: ../lib/katello/plugin.rb:312
8179
+ #: ../lib/katello/plugin.rb:308
8170
8180
  msgid "Update package via Katello interface"
8171
8181
  msgstr ""
8172
8182
 
8173
- #: ../lib/katello/plugin.rb:313
8183
+ #: ../lib/katello/plugin.rb:309
8174
8184
  msgid "Katello: Remove Package"
8175
8185
  msgstr ""
8176
8186
 
8177
- #: ../lib/katello/plugin.rb:313
8187
+ #: ../lib/katello/plugin.rb:309
8178
8188
  msgid "Remove package via Katello interface"
8179
8189
  msgstr ""
8180
8190
 
8181
- #: ../lib/katello/plugin.rb:314
8191
+ #: ../lib/katello/plugin.rb:310
8182
8192
  msgid "Katello: Install Package Group"
8183
8193
  msgstr ""
8184
8194
 
8185
- #: ../lib/katello/plugin.rb:314
8195
+ #: ../lib/katello/plugin.rb:310
8186
8196
  msgid "Install package group via Katello interface"
8187
8197
  msgstr ""
8188
8198
 
8189
- #: ../lib/katello/plugin.rb:315
8199
+ #: ../lib/katello/plugin.rb:311
8190
8200
  msgid "Katello: Update Package Group"
8191
8201
  msgstr ""
8192
8202
 
8193
- #: ../lib/katello/plugin.rb:315
8203
+ #: ../lib/katello/plugin.rb:311
8194
8204
  msgid "Update package group via Katello interface"
8195
8205
  msgstr ""
8196
8206
 
8197
- #: ../lib/katello/plugin.rb:316
8207
+ #: ../lib/katello/plugin.rb:312
8198
8208
  msgid "Katello: Remove Package Group"
8199
8209
  msgstr ""
8200
8210
 
8201
- #: ../lib/katello/plugin.rb:316
8211
+ #: ../lib/katello/plugin.rb:312
8202
8212
  msgid "Remove package group via Katello interface"
8203
8213
  msgstr ""
8204
8214
 
8205
- #: ../lib/katello/plugin.rb:317
8215
+ #: ../lib/katello/plugin.rb:313
8206
8216
  msgid "Katello: Install Errata"
8207
8217
  msgstr ""
8208
8218
 
8209
- #: ../lib/katello/plugin.rb:317
8219
+ #: ../lib/katello/plugin.rb:313
8210
8220
  msgid "Install errata via Katello interface"
8211
8221
  msgstr ""
8212
8222
 
8213
- #: ../lib/katello/plugin.rb:318
8223
+ #: ../lib/katello/plugin.rb:314
8214
8224
  msgid "Katello: Service Restart"
8215
8225
  msgstr ""
8216
8226
 
8217
- #: ../lib/katello/plugin.rb:318
8227
+ #: ../lib/katello/plugin.rb:314
8218
8228
  msgid "Restart Services via Katello interface"
8219
8229
  msgstr ""
8220
8230
 
8221
- #: ../lib/katello/plugin.rb:319
8231
+ #: ../lib/katello/plugin.rb:315
8222
8232
  msgid "Katello: Module Stream Actions"
8223
8233
  msgstr ""
8224
8234
 
8225
- #: ../lib/katello/plugin.rb:320
8235
+ #: ../lib/katello/plugin.rb:316
8226
8236
  msgid "Perform a module stream action via Katello interface"
8227
8237
  msgstr ""
8228
8238
 
@@ -8433,9 +8443,12 @@ msgstr ""
8433
8443
 
8434
8444
  #: ../webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js:40
8435
8445
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:10
8436
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:37
8437
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:39
8438
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:32
8446
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js:95
8447
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:55
8448
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:32
8449
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:37
8450
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishReview.js:38
8451
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishReview.js:48
8439
8452
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:13
8440
8453
  #: ../webpack/scenes/ModuleStreams/ModuleStreamsTableSchema.js:41
8441
8454
  msgid "Version"
@@ -8447,12 +8460,14 @@ msgid "Checksum"
8447
8460
  msgstr ""
8448
8461
 
8449
8462
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:8
8450
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:41
8463
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:90
8464
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:59
8451
8465
  #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:70
8452
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:37
8453
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:35
8454
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:42
8455
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:37
8466
+ #: ../webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js:123
8467
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:38
8468
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:44
8469
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:35
8470
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:42
8456
8471
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:11
8457
8472
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:5
8458
8473
  msgid "Description"
@@ -8463,10 +8478,10 @@ msgid "Tags"
8463
8478
  msgstr ""
8464
8479
 
8465
8480
  #: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:28
8466
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:39
8467
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:42
8481
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:57
8482
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:47
8468
8483
  #: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:32
8469
- #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:43
8484
+ #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:44
8470
8485
  msgid "Repositories"
8471
8486
  msgstr ""
8472
8487
 
@@ -8475,10 +8490,26 @@ msgstr ""
8475
8490
  msgid "No repositories to show"
8476
8491
  msgstr ""
8477
8492
 
8478
- #: ../webpack/scenes/ContentViews/ContentViewsActions.js:22
8493
+ #: ../webpack/scenes/ContentViews/ContentViewsActions.js:26
8479
8494
  msgid "Content view ${name} created"
8480
8495
  msgstr ""
8481
8496
 
8497
+ #: ../webpack/scenes/ContentViews/ContentViewsConstants.js:27
8498
+ msgid "Removed component from content view"
8499
+ msgstr ""
8500
+
8501
+ #: ../webpack/scenes/ContentViews/ContentViewsConstants.js:27
8502
+ msgid "Removed components from content view"
8503
+ msgstr ""
8504
+
8505
+ #: ../webpack/scenes/ContentViews/ContentViewsConstants.js:29
8506
+ msgid "Updated component details"
8507
+ msgstr ""
8508
+
8509
+ #: ../webpack/scenes/ContentViews/ContentViewsConstants.js:29
8510
+ msgid "Added component to content view"
8511
+ msgstr ""
8512
+
8482
8513
  #: ../webpack/scenes/ContentViews/Create/ContentViewFormComponents.js:22
8483
8514
  msgid "Composite Content View"
8484
8515
  msgstr ""
@@ -8499,120 +8530,247 @@ msgstr ""
8499
8530
  msgid "Import Only"
8500
8531
  msgstr ""
8501
8532
 
8533
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:79
8534
+ #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:50
8535
+ msgid "Label"
8536
+ msgstr ""
8537
+
8538
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:109
8539
+ msgid "Component content view"
8540
+ msgstr ""
8541
+
8542
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:113
8543
+ msgid "Single content view consisting of repositories"
8544
+ msgstr ""
8545
+
8546
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:126
8547
+ msgid "Consisting of multiple component content views"
8548
+ msgstr ""
8549
+
8550
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewForm.js:168
8551
+ #: ../webpack/scenes/ContentViews/Create/CreateContentViewModal.js:9
8552
+ msgid "Create content view"
8553
+ msgstr ""
8554
+
8555
+ #:
8556
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js:41
8557
+ msgid "Version ${item.version}"
8558
+ msgstr ""
8559
+
8560
+ #:
8561
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js:85
8562
+ msgid "Update version"
8563
+ msgstr ""
8564
+
8565
+ #:
8566
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js:85
8567
+ msgid "Add component"
8568
+ msgstr ""
8569
+
8570
+ #:
8571
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js:88
8572
+ msgid "Select available version of ${cvName} to use"
8573
+ msgstr ""
8574
+
8502
8575
  #:
8503
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js:19
8576
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js:115
8577
+ msgid "Always update to latest version"
8578
+ msgstr ""
8579
+
8580
+ #:
8581
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js:121
8582
+ #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:142
8583
+ msgid "Submit"
8584
+ msgstr ""
8585
+
8586
+ #:
8587
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js:21
8588
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:142
8589
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:29
8590
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:35
8591
+ msgid "Not yet published"
8592
+ msgstr ""
8593
+
8594
+ #:
8595
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js:22
8504
8596
  msgid "Latest (automatically updates)"
8505
8597
  msgstr ""
8506
8598
 
8507
8599
  #:
8508
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js:20
8600
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js:23
8509
8601
  #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:15
8510
8602
  msgid "Latest version"
8511
8603
  msgstr ""
8512
8604
 
8513
8605
  #:
8514
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js:20
8606
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js:23
8515
8607
  msgid "New version is available: Version ${latestVersion}"
8516
8608
  msgstr ""
8517
8609
 
8518
8610
  #:
8519
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:38
8520
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:33
8611
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:56
8612
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:38
8613
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishReview.js:39
8521
8614
  msgid "Environments"
8522
8615
  msgstr ""
8523
8616
 
8524
8617
  #:
8525
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:73
8618
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:147
8619
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:60
8620
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:88
8621
+ #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:77
8622
+ msgid "No description"
8623
+ msgstr ""
8624
+
8625
+ #:
8626
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:158
8627
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:207
8628
+ msgid "Add"
8629
+ msgstr ""
8630
+
8631
+ #:
8632
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:170
8633
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:101
8634
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:147
8635
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:210
8636
+ msgid "Remove"
8637
+ msgstr ""
8638
+
8639
+ #:
8640
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:178
8526
8641
  msgid "No content views belong to ${label}"
8527
8642
  msgstr ""
8528
8643
 
8529
8644
  #:
8530
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:74
8645
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:179
8531
8646
  msgid "Please add some content views."
8532
8647
  msgstr ""
8533
8648
 
8534
8649
  #:
8535
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:75
8536
- #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:111
8650
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:180
8651
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:142
8537
8652
  msgid "No matching content views found"
8538
8653
  msgstr ""
8539
8654
 
8540
8655
  #:
8541
- #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:76
8542
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:80
8543
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:74
8544
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:81
8545
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:110
8546
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:199
8547
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:79
8548
- #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:112
8656
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:181
8657
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:81
8658
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:75
8659
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:112
8660
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:111
8661
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:202
8662
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:119
8663
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:143
8549
8664
  msgid "Try changing your search settings."
8550
8665
  msgstr ""
8551
8666
 
8552
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:36
8553
- msgid " Content view updated."
8667
+ #:
8668
+ #: ../webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js:230
8669
+ msgid "Remove content views"
8670
+ msgstr ""
8671
+
8672
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:43
8673
+ msgid " Content view updated"
8554
8674
  msgstr ""
8555
8675
 
8556
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:75
8676
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:67
8677
+ msgid ""
8678
+ "Something went wrong while adding component! ${getResponseErrorMsgs(error.resp"
8679
+ "onse)}"
8680
+ msgstr ""
8681
+
8682
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:76
8683
+ msgid ""
8684
+ "Something went wrong while removing component! ${getResponseErrorMsgs(error.re"
8685
+ "sponse)}"
8686
+ msgstr ""
8687
+
8688
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:84
8689
+ msgid "Filter created"
8690
+ msgstr ""
8691
+
8692
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:85
8693
+ msgid ""
8694
+ "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.r"
8695
+ "esponse)}"
8696
+ msgstr ""
8697
+
8698
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:109
8557
8699
  msgid ""
8558
8700
  "Something went wrong while retrieving the repository types! ${getResponseError"
8559
8701
  "Msgs(error.response)}"
8560
8702
  msgstr ""
8561
8703
 
8562
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:82
8704
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:116
8563
8705
  msgid ""
8564
8706
  "Something went wrong while retrieving the content view filters! ${getResponseE"
8565
8707
  "rrorMsgs(error.response)}"
8566
8708
  msgstr ""
8567
8709
 
8568
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:89
8569
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:98
8710
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:126
8711
+ msgid "Filters successfully deleted"
8712
+ msgstr ""
8713
+
8714
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:127
8715
+ msgid ""
8716
+ "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.resp"
8717
+ "onse)}"
8718
+ msgstr ""
8719
+
8720
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:135
8721
+ msgid "Filter successfully deleted"
8722
+ msgstr ""
8723
+
8724
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:136
8725
+ msgid ""
8726
+ "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error."
8727
+ "response)}"
8728
+ msgstr ""
8729
+
8730
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:142
8731
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:151
8570
8732
  msgid ""
8571
8733
  "Something went wrong while retrieving the content view filter! ${getResponseEr"
8572
8734
  "rorMsgs(error.response)}"
8573
8735
  msgstr ""
8574
8736
 
8575
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:108
8737
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:161
8576
8738
  msgid ""
8577
8739
  "Something went wrong while retrieving the content view history! ${getResponseE"
8578
8740
  "rrorMsgs(error.response)}"
8579
8741
  msgstr ""
8580
8742
 
8581
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:116
8743
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:169
8582
8744
  msgid ""
8583
8745
  "Something went wrong while retrieving the content view filter rules! ${getResp"
8584
8746
  "onseErrorMsgs(error.response)}"
8585
8747
  msgstr ""
8586
8748
 
8587
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:126
8749
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:179
8588
8750
  msgid ""
8589
8751
  "Something went wrong while retrieving the content view components! ${getRespon"
8590
8752
  "seErrorMsgs(error.response)}"
8591
8753
  msgstr ""
8592
8754
 
8593
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:137
8755
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:190
8594
8756
  msgid ""
8595
8757
  "Something went wrong while retrieving the content view versions! ${getResponse"
8596
8758
  "ErrorMsgs(error.response)}"
8597
8759
  msgstr ""
8598
8760
 
8599
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:33
8600
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:30
8761
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:38
8762
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:31
8601
8763
  msgid "Versions"
8602
8764
  msgstr ""
8603
8765
 
8604
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:48
8766
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:53
8605
8767
  msgid "Filters"
8606
8768
  msgstr ""
8607
8769
 
8608
- #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:54
8770
+ #: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:59
8609
8771
  msgid "History"
8610
8772
  msgstr ""
8611
8773
 
8612
- #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:50
8613
- msgid "Label"
8614
- msgstr ""
8615
-
8616
8774
  #: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:77
8617
8775
  msgid "Autopublish"
8618
8776
  msgstr ""
@@ -8621,55 +8779,66 @@ msgstr ""
8621
8779
  msgid "Solve dependencies"
8622
8780
  msgstr ""
8623
8781
 
8782
+ #: ../webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js:63
8783
+ #: ../webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js:140
8784
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:137
8785
+ msgid "Create filter"
8786
+ msgstr ""
8787
+
8788
+ #: ../webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js:107
8789
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:46
8790
+ msgid "Content type"
8791
+ msgstr ""
8792
+
8624
8793
  #:
8625
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:77
8794
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:78
8626
8795
  msgid "No package groups have been added to this filter."
8627
8796
  msgstr ""
8628
8797
 
8629
8798
  #:
8630
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:78
8799
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:79
8631
8800
  msgid "Add to this filter using the 'Add package group' button."
8632
8801
  msgstr ""
8633
8802
 
8634
8803
  #:
8635
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:79
8804
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:80
8636
8805
  msgid "No matching package groups found."
8637
8806
  msgstr ""
8638
8807
 
8639
8808
  #:
8640
- #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:84
8809
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js:85
8641
8810
  msgid "Package groups"
8642
8811
  msgstr ""
8643
8812
 
8644
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:28
8813
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:29
8645
8814
  msgid "RPM name"
8646
8815
  msgstr ""
8647
8816
 
8648
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:29
8817
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:30
8649
8818
  msgid "Architecture"
8650
8819
  msgstr ""
8651
8820
 
8652
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:71
8821
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:72
8653
8822
  msgid "No rules have been added to this filter."
8654
8823
  msgstr ""
8655
8824
 
8656
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:72
8825
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:73
8657
8826
  msgid "Add to this filter using the 'Add RPM' button."
8658
8827
  msgstr ""
8659
8828
 
8660
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:73
8829
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:74
8661
8830
  msgid "No matching rules found."
8662
8831
  msgstr ""
8663
8832
 
8664
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:75
8833
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:76
8665
8834
  msgid "Included"
8666
8835
  msgstr ""
8667
8836
 
8668
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:75
8837
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:76
8669
8838
  msgid "Excluded"
8670
8839
  msgstr ""
8671
8840
 
8672
- #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:75
8841
+ #: ../webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js:76
8673
8842
  msgid " RPMs"
8674
8843
  msgstr ""
8675
8844
 
@@ -8696,71 +8865,67 @@ msgstr ""
8696
8865
  msgid "Exclude"
8697
8866
  msgstr ""
8698
8867
 
8699
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:36
8868
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:45
8700
8869
  msgid "Updated"
8701
8870
  msgstr ""
8702
8871
 
8703
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:37
8704
- msgid "Content type"
8705
- msgstr ""
8706
-
8707
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:38
8872
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:47
8708
8873
  msgid "Inclusion type"
8709
8874
  msgstr ""
8710
8875
 
8711
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:78
8876
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:109
8712
8877
  msgid "You currently don't have any filters for this content view."
8713
8878
  msgstr ""
8714
8879
 
8715
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:79
8880
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:110
8716
8881
  msgid "Add filters using the 'Add filter' button above."
8717
8882
  msgstr ""
8718
8883
 
8719
- #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:80
8884
+ #: ../webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js:111
8720
8885
  msgid "No matching filters found"
8721
8886
  msgstr ""
8722
8887
 
8723
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:38
8888
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:31
8724
8889
  msgid "Date"
8725
8890
  msgstr ""
8726
8891
 
8727
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:41
8892
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:34
8728
8893
  msgid "Action"
8729
8894
  msgstr ""
8730
8895
 
8731
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:43
8896
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:36
8732
8897
  msgid "User"
8733
8898
  msgstr ""
8734
8899
 
8735
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:107
8900
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:108
8736
8901
  msgid "You currently don't have any history for this content view."
8737
8902
  msgstr ""
8738
8903
 
8739
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:108
8904
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:109
8740
8905
  msgid "History will appear here when the content view is published or promoted."
8741
8906
  msgstr ""
8742
8907
 
8743
- #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:109
8908
+ #: ../webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js:110
8744
8909
  msgid "No matching history record found"
8745
8910
  msgstr ""
8746
8911
 
8747
8912
  #:
8748
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:71
8913
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:72
8749
8914
  msgid "Sync state"
8750
8915
  msgstr ""
8751
8916
 
8752
8917
  #:
8753
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:196
8918
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:199
8754
8919
  msgid "You currently don't have any repositories to add to this content view."
8755
8920
  msgstr ""
8756
8921
 
8757
8922
  #:
8758
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:197
8923
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:200
8759
8924
  msgid "Please add some repositories."
8760
8925
  msgstr ""
8761
8926
 
8762
8927
  #:
8763
- #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:198
8928
+ #: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:201
8764
8929
  msgid "No matching repositories found"
8765
8930
  msgstr ""
8766
8931
 
@@ -8774,37 +8939,88 @@ msgstr ""
8774
8939
  msgid "No environments"
8775
8940
  msgstr ""
8776
8941
 
8777
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:36
8942
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:41
8778
8943
  msgid "Additional content"
8779
8944
  msgstr ""
8780
8945
 
8781
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:60
8782
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:64
8783
- msgid "No description"
8946
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:55
8947
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:78
8948
+ msgid "Version "
8784
8949
  msgstr ""
8785
8950
 
8786
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:76
8951
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:116
8787
8952
  msgid "You currently don't have any versions for this content view."
8788
8953
  msgstr ""
8789
8954
 
8790
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:77
8955
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:117
8791
8956
  msgid "Versions will appear here when the content view is published."
8792
8957
  msgstr ""
8793
8958
 
8794
- #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:78
8959
+ #: ../webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js:118
8795
8960
  msgid "No matching version found"
8796
8961
  msgstr ""
8797
8962
 
8798
- #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:109
8963
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishFinish.js:122
8964
+ msgid "Publishing content view"
8965
+ msgstr ""
8966
+
8967
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishFinish.js:129
8968
+ msgid "In progress"
8969
+ msgstr ""
8970
+
8971
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishFinish.js:144
8972
+ #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:303
8973
+ msgid "Close"
8974
+ msgstr ""
8975
+
8976
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishFinish.js:153
8977
+ msgid " View task details "
8978
+ msgstr ""
8979
+
8980
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishForm.js:31
8981
+ msgid "A new version of "
8982
+ msgstr ""
8983
+
8984
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishForm.js:37
8985
+ msgid "Publish new version - "
8986
+ msgstr ""
8987
+
8988
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishReview.js:37
8989
+ #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:32
8990
+ msgid "Content view"
8991
+ msgstr ""
8992
+
8993
+ #: ../webpack/scenes/ContentViews/Publish/CVPublishReview.js:45
8994
+ msgid "Newly published"
8995
+ msgstr ""
8996
+
8997
+ #: ../webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js:109
8998
+ msgid "Publishing ${name}"
8999
+ msgstr ""
9000
+
9001
+ #: ../webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js:109
9002
+ msgid "Determining settings for ${name}"
9003
+ msgstr ""
9004
+
9005
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:118
9006
+ #: action_names.rb:62
9007
+ msgid "Promote"
9008
+ msgstr ""
9009
+
9010
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:123
9011
+ msgid "Copy"
9012
+ msgstr ""
9013
+
9014
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:140
8799
9015
  msgid "You currently don't have any Content Views."
8800
9016
  msgstr ""
8801
9017
 
8802
- #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:110
9018
+ #: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:141
8803
9019
  msgid "A content view can be added by using the \"New content view\" button below."
8804
9020
  msgstr ""
8805
9021
 
8806
9022
  #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:15
8807
- #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:39
9023
+ #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:40
8808
9024
  msgid "Last published"
8809
9025
  msgstr ""
8810
9026
 
@@ -8812,9 +9028,11 @@ msgstr ""
8812
9028
  msgid "Last task"
8813
9029
  msgstr ""
8814
9030
 
8815
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:29
8816
- #: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:35
8817
- msgid "Not yet published"
9031
+ #:
9032
+ #: ../webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js:33
9033
+ msgid ""
9034
+ "Select a lifecycle environment from the available promotion paths to promote n"
9035
+ "ew version."
8818
9036
  msgstr ""
8819
9037
 
8820
9038
  #: ../webpack/scenes/ContentViews/expansions/DetailsExpansion.js:11
@@ -8969,23 +9187,19 @@ msgstr ""
8969
9187
  msgid "No repositories enabled."
8970
9188
  msgstr ""
8971
9189
 
8972
- #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:31
8973
- msgid "Content view"
8974
- msgstr ""
8975
-
8976
- #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:47
9190
+ #: ../webpack/scenes/SmartProxy/SmartProxyContentTable.js:48
8977
9191
  msgid "Synced to smart proxy"
8978
9192
  msgstr ""
8979
9193
 
8980
9194
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:6
8981
9195
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:85
8982
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:114
9196
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:116
8983
9197
  msgid "Requires Virt-Who"
8984
9198
  msgstr ""
8985
9199
 
8986
9200
  #: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:7
8987
9201
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:95
8988
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:130
9202
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:132
8989
9203
  msgid "Consumed"
8990
9204
  msgstr ""
8991
9205
 
@@ -9195,10 +9409,6 @@ msgstr ""
9195
9409
  msgid "Manifest History"
9196
9410
  msgstr ""
9197
9411
 
9198
- #: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:303
9199
- msgid "Close"
9200
- msgstr ""
9201
-
9202
9412
  #: ../webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js:35
9203
9413
  msgid "Timestamp"
9204
9414
  msgstr ""
@@ -9216,7 +9426,7 @@ msgid ""
9216
9426
  msgstr ""
9217
9427
 
9218
9428
  #: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:100
9219
- #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:140
9429
+ #: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js:142
9220
9430
  msgid "Entitlements"
9221
9431
  msgstr ""
9222
9432
 
@@ -9232,37 +9442,33 @@ msgstr ""
9232
9442
  msgid "Exceeds available quantity"
9233
9443
  msgstr ""
9234
9444
 
9235
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:113
9236
- msgid "This is disabled because disconnected mode is enabled."
9445
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:104
9446
+ msgid ""
9447
+ "This is disabled because no connection could be made to the upstream Subscript"
9448
+ "ion Allocation."
9237
9449
  msgstr ""
9238
9450
 
9239
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:115
9451
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:106
9240
9452
  msgid "This is disabled because a manifest related task is in progress."
9241
9453
  msgstr ""
9242
9454
 
9243
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:117
9455
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:108
9244
9456
  msgid "This is disabled because no subscriptions are selected."
9245
9457
  msgstr ""
9246
9458
 
9247
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:119
9459
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:110
9248
9460
  msgid "This is disabled because no manifest has been uploaded."
9249
9461
  msgstr ""
9250
9462
 
9251
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:121
9252
- msgid ""
9253
- "This is disabled because no connection could be made to the upstream Subscript"
9254
- "ion Allocation."
9255
- msgstr ""
9256
-
9257
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:226
9463
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:212
9258
9464
  msgid "There are no Subscriptions to display"
9259
9465
  msgstr ""
9260
9466
 
9261
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:227
9467
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:213
9262
9468
  msgid "Import a Manifest to manage your Entitlements."
9263
9469
  msgstr ""
9264
9470
 
9265
- #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:230
9471
+ #: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:216
9266
9472
  msgid "Import a Manifest"
9267
9473
  msgstr ""
9268
9474
 
@@ -9301,11 +9507,6 @@ msgstr ""
9301
9507
  msgid "Click here to go to the tasks page for the task."
9302
9508
  msgstr ""
9303
9509
 
9304
- #:
9305
- #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:142
9306
- msgid "Submit"
9307
- msgstr ""
9308
-
9309
9510
  #:
9310
9511
  #: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:184
9311
9512
  msgid "There are no Subscription Allocations to display"
@@ -9445,110 +9646,106 @@ msgstr ""
9445
9646
  msgid "Remote action:"
9446
9647
  msgstr ""
9447
9648
 
9448
- #: action_names.rb:5
9649
+ #: action_names.rb:6
9449
9650
  msgid "Copy version units to library"
9450
9651
  msgstr ""
9451
9652
 
9452
- #: action_names.rb:11
9653
+ #: action_names.rb:13
9453
9654
  msgid "Verify checksum"
9454
9655
  msgstr ""
9455
9656
 
9456
- #: action_names.rb:14
9457
- msgid "Update http proxy details"
9657
+ #: action_names.rb:16
9658
+ msgid "Update redhat repository"
9458
9659
  msgstr ""
9459
9660
 
9460
9661
  #: action_names.rb:17
9461
- msgid "Instance update"
9662
+ msgid "Update http proxy details"
9462
9663
  msgstr ""
9463
9664
 
9464
9665
  #: action_names.rb:18
9465
- msgid "Index module streams"
9666
+ msgid "Update content urls"
9466
9667
  msgstr ""
9467
9668
 
9468
- #: action_names.rb:19
9469
- msgid "Index content"
9669
+ #: action_names.rb:21
9670
+ msgid "Instance update"
9470
9671
  msgstr ""
9471
9672
 
9472
- #: action_names.rb:20
9473
- msgid "Fetch pxe files"
9673
+ #: action_names.rb:22
9674
+ msgid "Index package groups"
9474
9675
  msgstr ""
9475
9676
 
9476
- #: action_names.rb:21
9477
- msgid "Errata mail"
9677
+ #: action_names.rb:23
9678
+ msgid "Index module streams"
9478
9679
  msgstr ""
9479
9680
 
9480
9681
  #: action_names.rb:24
9481
- msgid "Update http proxy"
9682
+ msgid "Index errata"
9482
9683
  msgstr ""
9483
9684
 
9484
- #: action_names.rb:30
9485
- msgid "Hypervisors"
9685
+ #: action_names.rb:25
9686
+ msgid "Index content"
9486
9687
  msgstr ""
9487
9688
 
9488
- #: action_names.rb:32
9489
- msgid "Auto attach subscriptions"
9689
+ #: action_names.rb:26
9690
+ msgid "Filtered index content"
9490
9691
  msgstr ""
9491
9692
 
9492
- #: action_names.rb:41
9493
- msgid "Promote"
9693
+ #: action_names.rb:27
9694
+ msgid "Fetch pxe files"
9494
9695
  msgstr ""
9495
9696
 
9496
- #: action_names.rb:52
9497
- msgid "Hypervisors update"
9697
+ #: action_names.rb:28
9698
+ msgid "Errata mail"
9498
9699
  msgstr ""
9499
9700
 
9500
- #: action_names.rb:55
9501
- msgid "Update content urls"
9701
+ #: action_names.rb:29
9702
+ msgid "Discover"
9502
9703
  msgstr ""
9503
9704
 
9504
- #: action_names.rb:57
9505
- msgid "Reindex subscriptions"
9705
+ #: action_names.rb:33
9706
+ msgid "Update http proxy"
9506
9707
  msgstr ""
9507
9708
 
9508
- #: action_names.rb:58
9509
- msgid "Update redhat repository"
9709
+ #: action_names.rb:34
9710
+ msgid "Reindex subscriptions"
9510
9711
  msgstr ""
9511
9712
 
9512
- #: action_names.rb:59
9513
- msgid "Filtered index content"
9713
+ #: action_names.rb:45
9714
+ msgid "Hypervisors update"
9514
9715
  msgstr ""
9515
9716
 
9516
- #: action_names.rb:60
9517
- msgid "Index errata"
9717
+ #: action_names.rb:46
9718
+ msgid "Hypervisors"
9518
9719
  msgstr ""
9519
9720
 
9520
- #: action_names.rb:61
9521
- msgid "Index package groups"
9721
+ #: action_names.rb:49
9722
+ msgid "Auto attach subscriptions"
9522
9723
  msgstr ""
9523
9724
 
9524
9725
  #: action_names.rb:63
9525
- msgid "Discover"
9726
+ msgid "Incremental Update of Content View Version(s) "
9526
9727
  msgstr ""
9527
9728
 
9528
9729
  #: action_names.rb:64
9529
- msgid "Incremental Update of Content View Version(s) "
9730
+ msgid "Sync capsule"
9530
9731
  msgstr ""
9531
9732
 
9532
- #: action_names.rb:67
9533
- msgid "Abstract async task"
9733
+ #: action_names.rb:69
9734
+ msgid "Agent action"
9534
9735
  msgstr ""
9535
9736
 
9536
- #: action_names.rb:68
9537
- msgid "Sync capsule"
9737
+ #: action_names.rb:71
9738
+ msgid "Abstract async task"
9538
9739
  msgstr ""
9539
9740
 
9540
9741
  #: action_names.rb:72
9541
- msgid "Agent action"
9542
- msgstr ""
9543
-
9544
- #: action_names.rb:73
9545
9742
  msgid "Import Puppet classes"
9546
9743
  msgstr ""
9547
9744
 
9548
- #: action_names.rb:74
9745
+ #: action_names.rb:73
9549
9746
  msgid "Import facts"
9550
9747
  msgstr ""
9551
9748
 
9552
- #: action_names.rb:75
9749
+ #: action_names.rb:74
9553
9750
  msgid "Action with sub plans"
9554
9751
  msgstr ""