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/cs/katello.po CHANGED
@@ -7,7 +7,7 @@
7
7
  # <lzap@seznam.cz>, 2013.
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: katello 2.4.0-RC1\n"
10
+ "Project-Id-Version: version 0.0.1\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
12
  "PO-Revision-Date: 2013-01-22 13:28+0000\n"
13
13
  "Last-Translator: lzap <lzap@seznam.cz>\n"
@@ -32,7 +32,7 @@ msgstr ""
32
32
  msgid " %{package_count} Package(s)"
33
33
  msgstr ""
34
34
 
35
- msgid " Content view updated."
35
+ msgid " Content view updated"
36
36
  msgstr ""
37
37
 
38
38
  msgid " Either select the latest content view or the content view version. Cannot set both."
@@ -41,6 +41,9 @@ msgstr ""
41
41
  msgid " RPMs"
42
42
  msgstr ""
43
43
 
44
+ msgid " View task details "
45
+ msgstr ""
46
+
44
47
  msgid " environment cannot be set to an environment already on its path"
45
48
  msgstr ""
46
49
 
@@ -333,6 +336,9 @@ msgstr ""
333
336
  msgid "A list of subscriptions expiring soon"
334
337
  msgstr ""
335
338
 
339
+ msgid "A new version of "
340
+ msgstr ""
341
+
336
342
  msgid "A post-promotion summary of hosts with installable errata"
337
343
  msgstr ""
338
344
 
@@ -342,7 +348,7 @@ msgstr ""
342
348
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
343
349
  msgstr ""
344
350
 
345
- msgid "A smart proxy seems to have been refreshed without pulpcore being running. You may want to "
351
+ msgid "A smart proxy seems to have been refreshed without pulpcore being running. Please refresh the smart proxy after ensuring that pulpcore services are running."
346
352
  msgstr ""
347
353
 
348
354
  msgid "A summary of available and applicable errata for your hosts"
@@ -385,16 +391,16 @@ msgstr "Aktivační klíče"
385
391
  msgid "Activation key ID"
386
392
  msgstr "Aktivační klíče"
387
393
 
388
- msgid "Activation key for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
394
+ msgid "Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead."
389
395
  msgstr ""
390
396
 
391
397
  msgid "Activation key(s) for Subscription Manager."
392
398
  msgstr ""
393
399
 
394
- msgid "Activation key(s) for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys"
400
+ msgid "Activation keys and subscriptions can be managed"
395
401
  msgstr ""
396
402
 
397
- msgid "Activation keys and subscriptions can be managed"
403
+ msgid "Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys."
398
404
  msgstr ""
399
405
 
400
406
  msgid "Activation keys: "
@@ -407,12 +413,18 @@ msgstr ""
407
413
  msgid "Active only"
408
414
  msgstr "Aktivační klíče"
409
415
 
416
+ msgid "Add"
417
+ msgstr ""
418
+
410
419
  msgid "Add Subscriptions"
411
420
  msgstr ""
412
421
 
413
422
  msgid "Add a subscription to a host"
414
423
  msgstr ""
415
424
 
425
+ msgid "Add component"
426
+ msgstr ""
427
+
416
428
  msgid "Add components to the content view"
417
429
  msgstr ""
418
430
 
@@ -455,6 +467,9 @@ msgstr ""
455
467
  msgid "Added Content:"
456
468
  msgstr ""
457
469
 
470
+ msgid "Added component to content view"
471
+ msgstr ""
472
+
458
473
  msgid "Adding content units"
459
474
  msgstr ""
460
475
 
@@ -479,6 +494,12 @@ msgstr ""
479
494
  msgid "All errata applied"
480
495
  msgstr ""
481
496
 
497
+ msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
498
+ msgstr ""
499
+
500
+ msgid "Allow hosts to re-register themselves only when they are in build mode"
501
+ msgstr ""
502
+
482
503
  msgid "Allow new Host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
483
504
  msgstr ""
484
505
 
@@ -488,6 +509,9 @@ msgstr ""
488
509
  msgid "Always Use Latest (currently %{version})"
489
510
  msgstr ""
490
511
 
512
+ msgid "Always update to latest version"
513
+ msgstr ""
514
+
491
515
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
492
516
  msgstr ""
493
517
 
@@ -620,6 +644,12 @@ msgstr ""
620
644
  msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
621
645
  msgstr ""
622
646
 
647
+ msgid "Auth URL requires Auth token be set."
648
+ msgstr ""
649
+
650
+ msgid "Auth token requires Auth URL be set."
651
+ msgstr ""
652
+
623
653
  msgid "Author"
624
654
  msgstr ""
625
655
 
@@ -942,6 +972,9 @@ msgstr ""
942
972
  msgid "Component Content View"
943
973
  msgstr ""
944
974
 
975
+ msgid "Component content view"
976
+ msgstr ""
977
+
945
978
  msgid "Composite Content View"
946
979
  msgstr ""
947
980
 
@@ -964,6 +997,9 @@ msgstr ""
964
997
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
965
998
  msgstr ""
966
999
 
1000
+ msgid "Consisting of multiple component content views"
1001
+ msgstr ""
1002
+
967
1003
  msgid "Consumed"
968
1004
  msgstr ""
969
1005
 
@@ -1090,6 +1126,12 @@ msgstr ""
1090
1126
  msgid "Content type"
1091
1127
  msgstr ""
1092
1128
 
1129
+ msgid "Content type %{content_type_string} does not belong to an enabled repo type."
1130
+ msgstr ""
1131
+
1132
+ msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
1133
+ msgstr ""
1134
+
1093
1135
  msgid "Content view"
1094
1136
  msgstr ""
1095
1137
 
@@ -1146,6 +1188,9 @@ msgstr ""
1146
1188
  msgid "Contract Number"
1147
1189
  msgstr ""
1148
1190
 
1191
+ msgid "Copy"
1192
+ msgstr ""
1193
+
1149
1194
  #, fuzzy
1150
1195
  msgid "Copy an activation key"
1151
1196
  msgstr "Číst aktivační klíče"
@@ -1325,6 +1370,12 @@ msgstr ""
1325
1370
  msgid "Create an upload request"
1326
1371
  msgstr ""
1327
1372
 
1373
+ msgid "Create content view"
1374
+ msgstr ""
1375
+
1376
+ msgid "Create filter"
1377
+ msgstr ""
1378
+
1328
1379
  #, fuzzy
1329
1380
  msgid "Create organization"
1330
1381
  msgstr "Vybrat organizaci"
@@ -1534,6 +1585,9 @@ msgstr ""
1534
1585
  msgid "Delete manifest from Red Hat provider"
1535
1586
  msgstr ""
1536
1587
 
1588
+ msgid "Delete multiple filters from a content view"
1589
+ msgstr ""
1590
+
1537
1591
  #, fuzzy
1538
1592
  msgid "Deleted consumer '%s'"
1539
1593
  msgstr "Vybrat distribuci"
@@ -1613,6 +1667,9 @@ msgstr ""
1613
1667
  msgid "Details"
1614
1668
  msgstr ""
1615
1669
 
1670
+ msgid "Determining settings for ${name}"
1671
+ msgstr ""
1672
+
1616
1673
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1617
1674
  msgstr ""
1618
1675
 
@@ -1838,18 +1895,12 @@ msgstr ""
1838
1895
  msgid "Export Types"
1839
1896
  msgstr ""
1840
1897
 
1841
- msgid "Export a repository"
1842
- msgstr ""
1843
-
1844
1898
  msgid "Export as CSV"
1845
1899
  msgstr ""
1846
1900
 
1847
1901
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1848
1902
  msgstr ""
1849
1903
 
1850
- msgid "Export to ISO format"
1851
- msgstr ""
1852
-
1853
1904
  msgid "Exported version"
1854
1905
  msgstr ""
1855
1906
 
@@ -1916,6 +1967,9 @@ msgstr ""
1916
1967
  msgid "Filter composite versions whose publish was triggered by the specified component version"
1917
1968
  msgstr ""
1918
1969
 
1970
+ msgid "Filter created"
1971
+ msgstr ""
1972
+
1919
1973
  msgid "Filter only composite content views"
1920
1974
  msgstr ""
1921
1975
 
@@ -1940,6 +1994,9 @@ msgstr ""
1940
1994
  msgid "Filter products by sync plan id"
1941
1995
  msgstr ""
1942
1996
 
1997
+ msgid "Filter successfully deleted"
1998
+ msgstr ""
1999
+
1943
2000
  msgid "Filter versions by environment"
1944
2001
  msgstr ""
1945
2002
 
@@ -1955,6 +2012,9 @@ msgstr ""
1955
2012
  msgid "Filters"
1956
2013
  msgstr ""
1957
2014
 
2015
+ msgid "Filters successfully deleted"
2016
+ msgstr ""
2017
+
1958
2018
  msgid "Finish action timeout"
1959
2019
  msgstr ""
1960
2020
 
@@ -2068,6 +2128,9 @@ msgstr ""
2068
2128
  msgid "Host '%{name}' does not belong to an organization"
2069
2129
  msgstr ""
2070
2130
 
2131
+ msgid "Host Can Re-Register Only In Build"
2132
+ msgstr ""
2133
+
2071
2134
  #, fuzzy
2072
2135
  msgid "Host Collection name"
2073
2136
  msgstr "organizace"
@@ -2088,6 +2151,9 @@ msgstr ""
2088
2151
  msgid "Host Profile Assume"
2089
2152
  msgstr ""
2090
2153
 
2154
+ msgid "Host Profile Can Change In Build"
2155
+ msgstr ""
2156
+
2091
2157
  msgid "Host Subscription Status"
2092
2158
  msgstr ""
2093
2159
 
@@ -2130,7 +2196,7 @@ msgstr ""
2130
2196
  msgid "Host id to list applicable packages for"
2131
2197
  msgstr ""
2132
2198
 
2133
- msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2199
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
2134
2200
  msgstr ""
2135
2201
 
2136
2202
  msgid "Host with ID %s already exists in the host collection."
@@ -2222,9 +2288,6 @@ msgstr ""
2222
2288
  msgid "ID: %s doesn't exist "
2223
2289
  msgstr ""
2224
2290
 
2225
- msgid "ISO export must be enabled when specifying ISO size"
2226
- msgstr ""
2227
-
2228
2291
  msgid "Id of a deb package to find repositories that contain the deb"
2229
2292
  msgstr ""
2230
2293
 
@@ -2407,6 +2470,9 @@ msgstr ""
2407
2470
  msgid "In Progress"
2408
2471
  msgstr ""
2409
2472
 
2473
+ msgid "In progress"
2474
+ msgstr ""
2475
+
2410
2476
  msgid "Include"
2411
2477
  msgstr ""
2412
2478
 
@@ -2560,9 +2626,6 @@ msgstr "Neplatný stav"
2560
2626
  msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
2561
2627
  msgstr ""
2562
2628
 
2563
- msgid "Invalid date provided."
2564
- msgstr ""
2565
-
2566
2629
  msgid "Invalid date range. The erratum filter rule start date must come before the end date"
2567
2630
  msgstr ""
2568
2631
 
@@ -2811,7 +2874,7 @@ msgstr ""
2811
2874
  msgid "List of Errata ids"
2812
2875
  msgstr ""
2813
2876
 
2814
- msgid "List of Errata ids to install. Will be removed in Katello 4.1."
2877
+ msgid "List of Errata ids to install. Will be removed in %s"
2815
2878
  msgstr ""
2816
2879
 
2817
2880
  msgid "List of Products for sync plan"
@@ -2820,7 +2883,7 @@ msgstr ""
2820
2883
  msgid "List of component content view version ids for composite views"
2821
2884
  msgstr ""
2822
2885
 
2823
- msgid "List of content (e.g. package names, package group names or errata ids)"
2886
+ msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
2824
2887
  msgstr ""
2825
2888
 
2826
2889
  msgid "List of content (e.g. package or package group names)"
@@ -2869,7 +2932,7 @@ msgstr ""
2869
2932
  msgid "List of hypervisor guest uuids"
2870
2933
  msgstr ""
2871
2934
 
2872
- msgid "List of package group names"
2935
+ msgid "List of package group names (Deprecated)"
2873
2936
  msgstr ""
2874
2937
 
2875
2938
  #, fuzzy
@@ -3044,6 +3107,9 @@ msgstr ""
3044
3107
  msgid "Mismatched"
3045
3108
  msgstr ""
3046
3109
 
3110
+ msgid "Missing activation key!"
3111
+ msgstr ""
3112
+
3047
3113
  msgid "Missing arguments %{substitutions} for %{content_url}"
3048
3114
  msgstr ""
3049
3115
 
@@ -3149,6 +3215,9 @@ msgstr ""
3149
3215
  msgid "New version is available: Version ${latestVersion}"
3150
3216
  msgstr ""
3151
3217
 
3218
+ msgid "Newly published"
3219
+ msgstr ""
3220
+
3152
3221
  msgid "No"
3153
3222
  msgstr ""
3154
3223
 
@@ -3416,9 +3485,6 @@ msgstr ""
3416
3485
  msgid "On Demand"
3417
3486
  msgstr ""
3418
3487
 
3419
- msgid "On demand repositories cannot be exported."
3420
- msgstr ""
3421
-
3422
3488
  msgid "On-disk location for exported repositories"
3423
3489
  msgstr ""
3424
3490
 
@@ -3453,9 +3519,6 @@ msgstr ""
3453
3519
  msgid "Operators"
3454
3520
  msgstr ""
3455
3521
 
3456
- msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3457
- msgstr ""
3458
-
3459
3522
  msgid "Organization"
3460
3523
  msgstr "Organizace"
3461
3524
 
@@ -3897,9 +3960,18 @@ msgstr ""
3897
3960
  msgid "Publish a content view"
3898
3961
  msgstr "Vyhledat obsah"
3899
3962
 
3963
+ msgid "Publish new version - "
3964
+ msgstr ""
3965
+
3900
3966
  msgid "Published new version"
3901
3967
  msgstr ""
3902
3968
 
3969
+ msgid "Publishing ${name}"
3970
+ msgstr ""
3971
+
3972
+ msgid "Publishing content view"
3973
+ msgstr ""
3974
+
3903
3975
  msgid "Pulling remote branches. Downloaded %s units."
3904
3976
  msgstr ""
3905
3977
 
@@ -3909,7 +3981,7 @@ msgstr ""
3909
3981
  msgid "Pulp 3 export destination filepath"
3910
3982
  msgstr ""
3911
3983
 
3912
- msgid "Pulp Consumer %s has already been removed"
3984
+ msgid "Pulp 3 is not enabled on Smart proxy!"
3913
3985
  msgstr ""
3914
3986
 
3915
3987
  msgid "Pulp Docker registry port"
@@ -4086,6 +4158,9 @@ msgstr ""
4086
4158
  msgid "Removal of package(s) requested: %{packages}"
4087
4159
  msgstr ""
4088
4160
 
4161
+ msgid "Remove"
4162
+ msgstr ""
4163
+
4089
4164
  #, fuzzy
4090
4165
  msgid "Remove Content"
4091
4166
  msgstr "Smazat role"
@@ -4113,6 +4188,9 @@ msgstr ""
4113
4188
  msgid "Remove content view version"
4114
4189
  msgstr ""
4115
4190
 
4191
+ msgid "Remove content views"
4192
+ msgstr ""
4193
+
4116
4194
  #, fuzzy
4117
4195
  msgid "Remove from Environment"
4118
4196
  msgstr "prostředí"
@@ -4161,6 +4239,12 @@ msgstr ""
4161
4239
  msgid "Remove versions and/or environments from a content view and reassign systems and keys"
4162
4240
  msgstr ""
4163
4241
 
4242
+ msgid "Removed component from content view"
4243
+ msgstr ""
4244
+
4245
+ msgid "Removed components from content view"
4246
+ msgstr ""
4247
+
4164
4248
  #, fuzzy
4165
4249
  msgid "Removing Package Group..."
4166
4250
  msgstr "Skupiny balíčků"
@@ -4186,9 +4270,6 @@ msgstr "repozitář"
4186
4270
  msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
4187
4271
  msgstr ""
4188
4272
 
4189
- msgid "Repository %s cannot be deleted since they are Red Hat repositories."
4190
- msgstr ""
4191
-
4192
4273
  msgid "Repository '%(repoName)s' has been disabled."
4193
4274
  msgstr ""
4194
4275
 
@@ -4204,9 +4285,6 @@ msgstr ""
4204
4285
  msgid "Repository cannot be disabled since it has already been promoted."
4205
4286
  msgstr ""
4206
4287
 
4207
- msgid "Repository content type must be 'yum' to export."
4208
- msgstr ""
4209
-
4210
4288
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
4211
4289
  msgstr ""
4212
4290
 
@@ -4239,6 +4317,9 @@ msgstr ""
4239
4317
  msgid "Republish Version Repositories"
4240
4318
  msgstr ""
4241
4319
 
4320
+ msgid "Requirements yaml is invalid!"
4321
+ msgstr ""
4322
+
4242
4323
  msgid "Requires Virt-Who"
4243
4324
  msgstr ""
4244
4325
 
@@ -4281,9 +4362,6 @@ msgstr ""
4281
4362
  msgid "Return errata that are upgradable on one or more hosts"
4282
4363
  msgstr ""
4283
4364
 
4284
- msgid "Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."
4285
- msgstr ""
4286
-
4287
4365
  msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
4288
4366
  msgstr ""
4289
4367
 
@@ -4405,6 +4483,9 @@ msgstr ""
4405
4483
  msgid "Select Value"
4406
4484
  msgstr ""
4407
4485
 
4486
+ msgid "Select a lifecycle environment from the available promotion paths to promote new version."
4487
+ msgstr ""
4488
+
4408
4489
  msgid "Select all rows"
4409
4490
  msgstr ""
4410
4491
 
@@ -4415,6 +4496,9 @@ msgstr "Vybrat organizaci"
4415
4496
  msgid "Select an organization"
4416
4497
  msgstr ""
4417
4498
 
4499
+ msgid "Select available version of ${cvName} to use"
4500
+ msgstr ""
4501
+
4418
4502
  msgid "Select hosts to assign to %s"
4419
4503
  msgstr ""
4420
4504
 
@@ -4547,6 +4631,9 @@ msgstr ""
4547
4631
  msgid "Simple Content Access has been enabled for '%{subject}'."
4548
4632
  msgstr ""
4549
4633
 
4634
+ msgid "Single content view consisting of repositories"
4635
+ msgstr ""
4636
+
4550
4637
  msgid "Size of file to upload"
4551
4638
  msgstr ""
4552
4639
 
@@ -4559,6 +4646,9 @@ msgstr ""
4559
4646
  msgid "Smart proxy IDs"
4560
4647
  msgstr ""
4561
4648
 
4649
+ msgid "Smart proxy content source not found!"
4650
+ msgstr ""
4651
+
4562
4652
  msgid "Sockets: %s"
4563
4653
  msgstr ""
4564
4654
 
@@ -4577,6 +4667,21 @@ msgstr ""
4577
4667
  msgid "Some services are not properly started. See the About page for more information."
4578
4668
  msgstr ""
4579
4669
 
4670
+ msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
4671
+ msgstr ""
4672
+
4673
+ msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
4674
+ msgstr ""
4675
+
4676
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
4677
+ msgstr ""
4678
+
4679
+ msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
4680
+ msgstr ""
4681
+
4682
+ msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
4683
+ msgstr ""
4684
+
4580
4685
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
4581
4686
  msgstr ""
4582
4687
 
@@ -4930,12 +5035,6 @@ msgstr ""
4930
5035
  msgid "The email notification will include subscriptions expiring in this number of days or fewer."
4931
5036
  msgstr ""
4932
5037
 
4933
- msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
4934
- msgstr ""
4935
-
4936
- msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
4937
- msgstr ""
4938
-
4939
5038
  msgid "The erratum filter rule end date is in an invalid format or type."
4940
5039
  msgstr ""
4941
5040
 
@@ -4968,6 +5067,9 @@ msgstr ""
4968
5067
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
4969
5068
  msgstr ""
4970
5069
 
5070
+ msgid "The maximum number of versions of each package to keep."
5071
+ msgstr ""
5072
+
4971
5073
  msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
4972
5074
  msgstr ""
4973
5075
 
@@ -5108,9 +5210,6 @@ msgstr ""
5108
5210
  msgid "This is disabled because a manifest task is in progress"
5109
5211
  msgstr ""
5110
5212
 
5111
- msgid "This is disabled because disconnected mode is enabled."
5112
- msgstr ""
5113
-
5114
5213
  msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
5115
5214
  msgstr ""
5116
5215
 
@@ -5195,6 +5294,9 @@ msgstr ""
5195
5294
  msgid "Type of content: \"cert\", \"gpg_key\""
5196
5295
  msgstr ""
5197
5296
 
5297
+ msgid "URL needs to have a trailing /"
5298
+ msgstr ""
5299
+
5198
5300
  msgid "UUID"
5199
5301
  msgstr ""
5200
5302
 
@@ -5222,12 +5324,6 @@ msgstr ""
5222
5324
  msgid "Unable to detect puppet path"
5223
5325
  msgstr ""
5224
5326
 
5225
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5226
- msgstr ""
5227
-
5228
- msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5229
- msgstr ""
5230
-
5231
5327
  msgid "Unable to find product '%s' in organization '%s'"
5232
5328
  msgstr ""
5233
5329
 
@@ -5443,9 +5539,15 @@ msgstr ""
5443
5539
  msgid "Update the quantity of one or more subscriptions on an upstream allocation"
5444
5540
  msgstr ""
5445
5541
 
5542
+ msgid "Update version"
5543
+ msgstr ""
5544
+
5446
5545
  msgid "Updated"
5447
5546
  msgstr ""
5448
5547
 
5548
+ msgid "Updated component details"
5549
+ msgstr ""
5550
+
5449
5551
  msgid "Updates"
5450
5552
  msgstr ""
5451
5553
 
@@ -5488,9 +5590,6 @@ msgstr ""
5488
5590
  msgid "Upload content into the repository"
5489
5591
  msgstr ""
5490
5592
 
5491
- msgid "Upload errata into"
5492
- msgstr ""
5493
-
5494
5593
  msgid "Upload into"
5495
5594
  msgstr ""
5496
5595
 
@@ -5566,6 +5665,12 @@ msgstr ""
5566
5665
  msgid "Version"
5567
5666
  msgstr ""
5568
5667
 
5668
+ msgid "Version "
5669
+ msgstr ""
5670
+
5671
+ msgid "Version ${item.version}"
5672
+ msgstr ""
5673
+
5569
5674
  msgid "Versions"
5570
5675
  msgstr ""
5571
5676
 
@@ -6027,6 +6132,9 @@ msgstr ""
6027
6132
  msgid "filter identifier"
6028
6133
  msgstr ""
6029
6134
 
6135
+ msgid "filter identifiers"
6136
+ msgstr ""
6137
+
6030
6138
  msgid "filter only environments containing this name"
6031
6139
  msgstr ""
6032
6140
 
@@ -6125,6 +6233,9 @@ msgstr ""
6125
6233
  msgid "is invalid"
6126
6234
  msgstr ""
6127
6235
 
6236
+ msgid "is not enabled. must be one of the following: %s"
6237
+ msgstr ""
6238
+
6128
6239
  msgid "label of the environment"
6129
6240
  msgstr ""
6130
6241
 
@@ -6159,9 +6270,6 @@ msgstr ""
6159
6270
  msgid "maximum number of registered content hosts"
6160
6271
  msgstr ""
6161
6272
 
6162
- msgid "maximum size of each ISO in MB"
6163
- msgstr ""
6164
-
6165
6273
  msgid "may not be less than the number of hosts associated with the host collection."
6166
6274
  msgstr ""
6167
6275