katello 3.17.3 → 3.18.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
  5. data/app/controllers/katello/api/v2/api_controller.rb +2 -1
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  8. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
  10. data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
  11. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  12. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  13. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  14. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
  15. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
  17. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  19. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  20. data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
  21. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  22. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  23. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  24. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  25. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  26. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  27. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
  28. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
  29. data/app/lib/actions/katello/content_view/publish.rb +3 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +4 -3
  31. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  32. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  33. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  34. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  35. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  36. data/app/lib/actions/katello/product/content_create.rb +7 -6
  37. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  38. data/app/lib/actions/katello/repository/import_upload.rb +2 -1
  39. data/app/lib/actions/katello/repository/update.rb +4 -1
  40. data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
  41. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  42. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  43. data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
  44. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  45. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
  46. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  47. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  48. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  49. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  51. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  52. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  53. data/app/lib/katello/resources/registry.rb +3 -3
  54. data/app/models/katello/authorization/activation_key.rb +4 -0
  55. data/app/models/katello/authorization/content_view.rb +13 -0
  56. data/app/models/katello/authorization/content_view_component.rb +15 -0
  57. data/app/models/katello/authorization/gpg_key.rb +12 -4
  58. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  59. data/app/models/katello/authorization/sync_plan.rb +16 -0
  60. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  61. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  62. data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
  63. data/app/models/katello/content_view_component.rb +2 -0
  64. data/app/models/katello/content_view_version_export_history.rb +2 -0
  65. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  66. data/app/models/katello/glue/pulp/repo.rb +8 -0
  67. data/app/models/katello/gpg_key.rb +1 -1
  68. data/app/models/katello/root_repository.rb +26 -1
  69. data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
  70. data/app/services/katello/candlepin/event_handler.rb +2 -0
  71. data/app/services/katello/candlepin/message_handler.rb +34 -0
  72. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  73. data/app/services/katello/host_status_manager.rb +9 -0
  74. data/app/services/katello/pulp3/api/apt.rb +57 -0
  75. data/app/services/katello/pulp3/api/core.rb +8 -0
  76. data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
  77. data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
  78. data/app/services/katello/pulp3/deb.rb +38 -0
  79. data/app/services/katello/pulp3/erratum.rb +1 -2
  80. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  81. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  82. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  83. data/app/services/katello/pulp3/repository/docker.rb +4 -0
  84. data/app/services/katello/pulp3/repository/yum.rb +2 -1
  85. data/app/services/katello/pulp3/repository.rb +11 -9
  86. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  87. data/app/services/katello/pulp3/task.rb +3 -3
  88. data/app/services/katello/pulp3/task_group.rb +0 -6
  89. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  90. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  91. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  92. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  93. data/config/routes/api/v2.rb +2 -0
  94. data/config/routes/overrides.rb +1 -0
  95. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  96. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
  97. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  98. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  99. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  100. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  101. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  102. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  104. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  123. data/lib/katello/engine.rb +1 -0
  124. data/lib/katello/permission_creator.rb +68 -59
  125. data/lib/katello/permissions/host_permissions.rb +1 -0
  126. data/lib/katello/plugin.rb +4 -1
  127. data/lib/katello/repository_types/deb.rb +9 -1
  128. data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
  129. data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
  130. data/lib/katello/tasks/reports.rake +1 -4
  131. data/lib/katello/tasks/reset.rake +2 -1
  132. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  133. data/lib/katello/version.rb +1 -1
  134. data/locale/action_names.rb +54 -47
  135. data/locale/bn/katello.po +165 -26
  136. data/locale/cs/katello.po +164 -24
  137. data/locale/de/katello.po +165 -26
  138. data/locale/en/katello.po +164 -23
  139. data/locale/es/katello.po +165 -25
  140. data/locale/fr/katello.po +165 -25
  141. data/locale/gu/katello.po +165 -26
  142. data/locale/hi/katello.po +165 -26
  143. data/locale/it/katello.po +165 -25
  144. data/locale/ja/katello.po +165 -26
  145. data/locale/katello.pot +1036 -802
  146. data/locale/kn/katello.po +165 -26
  147. data/locale/ko/katello.po +165 -25
  148. data/locale/mr/katello.po +165 -26
  149. data/locale/or/katello.po +165 -26
  150. data/locale/pa/katello.po +165 -26
  151. data/locale/pt/katello.po +164 -23
  152. data/locale/pt_BR/katello.po +165 -25
  153. data/locale/ru/katello.po +165 -25
  154. data/locale/ta/katello.po +165 -26
  155. data/locale/te/katello.po +165 -26
  156. data/locale/zh_CN/katello.po +165 -25
  157. data/locale/zh_TW/katello.po +165 -26
  158. data/webpack/components/ActionableDetail.js +2 -1
  159. data/webpack/components/Search/Search.js +1 -1
  160. data/webpack/components/Table/MainTable.js +6 -2
  161. data/webpack/components/Table/TableWrapper.js +46 -9
  162. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  163. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  164. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  165. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  166. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  167. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  168. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  169. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  170. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  171. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  172. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  173. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  174. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  175. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  176. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  177. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  178. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  179. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
  180. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  181. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  182. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  183. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  184. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  185. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  186. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  187. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  188. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  189. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  190. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  191. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  192. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  193. metadata +69 -26
data/locale/de/katello.po CHANGED
@@ -400,6 +400,9 @@ msgstr "Hinzugefügte Inhalte:"
400
400
  msgid "Adding content units"
401
401
  msgstr ""
402
402
 
403
+ msgid "Adding multiple versions of the same Puppet Module is not supported by incremental update. The following Puppet Modules have duplicate versions in the incremental update content list: %{dup_list}"
404
+ msgstr ""
405
+
403
406
  msgid "Addons"
404
407
  msgstr ""
405
408
 
@@ -504,6 +507,9 @@ msgstr ""
504
507
  msgid "Artifacts"
505
508
  msgstr ""
506
509
 
510
+ msgid "Assign system purpose attributes on one or more hosts"
511
+ msgstr ""
512
+
507
513
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
508
514
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
509
515
  msgstr[0] "%{count} Host ohne %{taxonomy_single} zu %{taxonomy_name} zuweisen"
@@ -549,9 +555,6 @@ msgstr ""
549
555
  msgid "Author"
550
556
  msgstr ""
551
557
 
552
- msgid "Auto Enablement may only be set on custom repositories."
553
- msgstr ""
554
-
555
558
  msgid "Auto Publish - Triggered by '%s'"
556
559
  msgstr ""
557
560
 
@@ -764,6 +767,9 @@ msgstr ""
764
767
  msgid "Cannot delete view while it exists in environments"
765
768
  msgstr "Ansicht kann nicht gelöscht werden, während sie in Umgebungen existiert"
766
769
 
770
+ msgid "Cannot import a composite content view"
771
+ msgstr ""
772
+
767
773
  msgid "Cannot import a custom subscription from a redhat product."
768
774
  msgstr ""
769
775
 
@@ -840,6 +846,9 @@ msgstr ""
840
846
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
841
847
  msgstr ""
842
848
 
849
+ msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
850
+ msgstr ""
851
+
843
852
  msgid "Click here to go to the tasks page for the task."
844
853
  msgstr ""
845
854
 
@@ -970,9 +979,15 @@ msgstr ""
970
979
  msgid "Content View Version not set"
971
980
  msgstr ""
972
981
 
982
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
983
+ msgstr ""
984
+
973
985
  msgid "Content View and Environment not set for registration."
974
986
  msgstr ""
975
987
 
988
+ msgid "Content View id"
989
+ msgstr ""
990
+
976
991
  # translation auto-copied from project PressGang CCMS topics, version 1, document 20647-698348, author hpeters
977
992
  msgid "Content Views"
978
993
  msgstr "Inhaltsansichten"
@@ -1032,12 +1047,12 @@ msgstr ""
1032
1047
  msgid "Copy an activation key"
1033
1048
  msgstr "Aktivierungsschlüssel kopieren"
1034
1049
 
1050
+ msgid "Copy version units to library"
1051
+ msgstr ""
1052
+
1035
1053
  msgid "Cores: %s"
1036
1054
  msgstr "Kerne: %s"
1037
1055
 
1038
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1039
- msgstr ""
1040
-
1041
1056
  # translation auto-copied from project CFSE, version sam-1.2, document app
1042
1057
  msgid "Could not delete organization '%s'."
1043
1058
  msgstr "Organisation \"%s\" konnte nicht gelöscht werden."
@@ -1048,6 +1063,9 @@ msgstr "%{content} mit ID \"%{id}\" konnte nicht in Repository gefunden werden."
1048
1063
  msgid "Could not find %{count} errata. Only found: %{found}"
1049
1064
  msgstr ""
1050
1065
 
1066
+ msgid "Could not find %{name} resource with id %{id}"
1067
+ msgstr ""
1068
+
1051
1069
  msgid "Could not find Environment with ids: %s"
1052
1070
  msgstr "Umgebung mit IDs %s konnte nicht gefunden werden"
1053
1071
 
@@ -1081,9 +1099,6 @@ msgstr ""
1081
1099
  msgid "Couldn't find %{type} Filter with id %{id}"
1082
1100
  msgstr "%{type} Filter mit ID %{id} konnte nicht gefunden werden"
1083
1101
 
1084
- msgid "Couldn't find Content Credential '%s'"
1085
- msgstr ""
1086
-
1087
1102
  msgid "Couldn't find ContentViewFilter with id=%s"
1088
1103
  msgstr "Inhaltsansichtsfilter mit ID=%s konnte nicht gefunden werden."
1089
1104
 
@@ -1181,10 +1196,6 @@ msgstr ""
1181
1196
  msgid "Couldn't find subject of synchronization"
1182
1197
  msgstr "Subjekt der Synchronisation konnte nicht gefunden werden."
1183
1198
 
1184
- # translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
1185
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1186
- msgstr "Synchronisationsplan \"%{plan}\" konnte nicht in Organisation \"%{org}\" gefunden werden."
1187
-
1188
1199
  msgid "Count"
1189
1200
  msgstr ""
1190
1201
 
@@ -1468,6 +1479,15 @@ msgstr ""
1468
1479
  msgid "Desired quantity of the pool"
1469
1480
  msgstr ""
1470
1481
 
1482
+ msgid "Destination Server Name required for Pulp3 repositories"
1483
+ msgstr ""
1484
+
1485
+ msgid "Destination Server name"
1486
+ msgstr ""
1487
+
1488
+ msgid "Destination Server name, required for Pulp3"
1489
+ msgstr ""
1490
+
1471
1491
  # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1472
1492
  msgid "Destroy"
1473
1493
  msgstr "Löschen"
@@ -1520,6 +1540,9 @@ msgstr "Details"
1520
1540
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1521
1541
  msgstr ""
1522
1542
 
1543
+ msgid "Directory containing the exported Content View Version"
1544
+ msgstr ""
1545
+
1523
1546
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author rgromans
1524
1547
  msgid "Disable"
1525
1548
  msgstr "Deaktivieren"
@@ -1536,6 +1559,9 @@ msgstr ""
1536
1559
  msgid "Disable simple content access for a manifest"
1537
1560
  msgstr ""
1538
1561
 
1562
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1563
+ msgstr ""
1564
+
1539
1565
  msgid "Disconnected mode"
1540
1566
  msgstr ""
1541
1567
 
@@ -1621,6 +1647,9 @@ msgstr ""
1621
1647
  msgid "Enabled Repositories"
1622
1648
  msgstr ""
1623
1649
 
1650
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1651
+ msgstr ""
1652
+
1624
1653
  msgid "End Date"
1625
1654
  msgstr ""
1626
1655
 
@@ -1745,6 +1774,9 @@ msgstr ""
1745
1774
  msgid "Export to ISO format"
1746
1775
  msgstr ""
1747
1776
 
1777
+ msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1778
+ msgstr ""
1779
+
1748
1780
  msgid "Exported version"
1749
1781
  msgstr ""
1750
1782
 
@@ -1886,10 +1918,6 @@ msgstr ""
1886
1918
  msgid "GPG Key URL"
1887
1919
  msgstr ""
1888
1920
 
1889
- # translation auto-copied from project PressGang CCMS topics, version 1, document 31337-708757, author hpeters
1890
- msgid "GPG Keys"
1891
- msgstr "GPG-Schlüssel"
1892
-
1893
1921
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
1894
1922
  msgid "Generate and Download"
1895
1923
  msgstr "Generieren und herunterladen"
@@ -1996,6 +2024,9 @@ msgstr "Hostsammlung ist leer."
1996
2024
  msgid "Host content and subscription details"
1997
2025
  msgstr "Hostinhalt und Subskriptionsdetails"
1998
2026
 
2027
+ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2028
+ msgstr ""
2029
+
1999
2030
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2000
2031
  msgstr ""
2001
2032
 
@@ -2215,6 +2246,12 @@ msgstr ""
2215
2246
  msgid "Immediate"
2216
2247
  msgstr ""
2217
2248
 
2249
+ msgid "Import"
2250
+ msgstr ""
2251
+
2252
+ msgid "Import Content View Version"
2253
+ msgstr ""
2254
+
2218
2255
  msgid "Import Manifest"
2219
2256
  msgstr "Manifest importieren"
2220
2257
 
@@ -2236,6 +2273,9 @@ msgstr ""
2236
2273
  msgid "Import a Manifest using the manifest tab above."
2237
2274
  msgstr ""
2238
2275
 
2276
+ msgid "Import a content view version"
2277
+ msgstr ""
2278
+
2239
2279
  msgid "Import facts"
2240
2280
  msgstr "Fakten importieren"
2241
2281
 
@@ -2406,6 +2446,9 @@ msgstr ""
2406
2446
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2407
2447
  msgstr "Ungültige Regel angegeben, \"version\" kann nicht in demselben Tupel angegeben werden wie \"min_version\" oder \"max_version\""
2408
2448
 
2449
+ msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2450
+ msgstr ""
2451
+
2409
2452
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2410
2453
  msgstr "Ungültige Parameter in der Anfrage für diese Operation gesendet. Bitte setzen Sie sich bitte mit einem Systemadministrator in Verbindung."
2411
2454
 
@@ -2419,6 +2462,9 @@ msgstr ""
2419
2462
  msgid "Invalid params provided - date_type must be one of %s"
2420
2463
  msgstr ""
2421
2464
 
2465
+ msgid "Invalid path specified."
2466
+ msgstr ""
2467
+
2422
2468
  msgid ""
2423
2469
  "Invalid puppet module parameters specified. \\\n"
2424
2470
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2496,9 +2542,6 @@ msgstr ""
2496
2542
  msgid "Learn more about adding Subscription Manifests"
2497
2543
  msgstr ""
2498
2544
 
2499
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2500
- msgstr ""
2501
-
2502
2545
  msgid "Library lifecycle environments may not be deleted."
2503
2546
  msgstr "Library-Lebenszyklusumgebungen dürfen nicht gelöscht werden."
2504
2547
 
@@ -2753,6 +2796,9 @@ msgstr ""
2753
2796
  msgid "List srpms"
2754
2797
  msgstr ""
2755
2798
 
2799
+ msgid "List subscriptions"
2800
+ msgstr ""
2801
+
2756
2802
  msgid "List sync plans"
2757
2803
  msgstr "Synchronisationspläne auflisten"
2758
2804
 
@@ -2841,6 +2887,9 @@ msgstr "Nachricht"
2841
2887
  msgid "Messaging connection"
2842
2888
  msgstr ""
2843
2889
 
2890
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2891
+ msgstr ""
2892
+
2844
2893
  msgid "Mismatched"
2845
2894
  msgstr ""
2846
2895
 
@@ -2985,12 +3034,18 @@ msgstr ""
2985
3034
  msgid "No hosts registered with subscription-manager found in selection."
2986
3035
  msgstr ""
2987
3036
 
3037
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3038
+ msgstr ""
3039
+
2988
3040
  msgid "No manifest file uploaded"
2989
3041
  msgstr "Keine Manifestdatei hochgeladen"
2990
3042
 
2991
3043
  msgid "No matching content views found"
2992
3044
  msgstr ""
2993
3045
 
3046
+ msgid "No matching repositories found"
3047
+ msgstr ""
3048
+
2994
3049
  msgid "No new packages installed"
2995
3050
  msgstr "Keine neuen Pakete installiert"
2996
3051
 
@@ -3126,6 +3181,9 @@ msgstr ""
3126
3181
  msgid "On-disk location for exported repositories"
3127
3182
  msgstr ""
3128
3183
 
3184
+ msgid "On-disk location for pulp 3 exported repositories"
3185
+ msgstr ""
3186
+
3129
3187
  msgid "One of parameters [ %s ] required but not specified."
3130
3188
  msgstr "Einer der Parameter [ %s ] ist erforderlich, jedoch nicht angegeben."
3131
3189
 
@@ -3158,6 +3216,9 @@ msgstr "Operatoren"
3158
3216
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3159
3217
  msgstr ""
3160
3218
 
3219
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3220
+ msgstr ""
3221
+
3161
3222
  msgid "Organization"
3162
3223
  msgstr "Organisation"
3163
3224
 
@@ -3407,6 +3468,9 @@ msgstr "Physisch"
3407
3468
  msgid "Plan numeric identifier"
3408
3469
  msgstr "Numerische Plan-ID"
3409
3470
 
3471
+ msgid "Please add some repositories."
3472
+ msgstr ""
3473
+
3410
3474
  msgid "Please enter a positive number above zero"
3411
3475
  msgstr ""
3412
3476
 
@@ -3540,6 +3604,9 @@ msgstr ""
3540
3604
  msgid "Pulp"
3541
3605
  msgstr ""
3542
3606
 
3607
+ msgid "Pulp 3 export destination filepath"
3608
+ msgstr ""
3609
+
3543
3610
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3544
3611
  msgstr ""
3545
3612
 
@@ -3594,6 +3661,12 @@ msgstr ""
3594
3661
  msgid "Pulp task error"
3595
3662
  msgstr "Pulp-Taskfehler"
3596
3663
 
3664
+ msgid "Pulp user or group unable to read '%s'."
3665
+ msgstr ""
3666
+
3667
+ msgid "Pulp user or group unable to read content in '%s'."
3668
+ msgstr ""
3669
+
3597
3670
  msgid "Pulpcore"
3598
3671
  msgstr ""
3599
3672
 
@@ -3734,6 +3807,9 @@ msgstr "Zu aktivierende Release-Version"
3734
3807
  msgid "Reload data"
3735
3808
  msgstr "Daten neu laden"
3736
3809
 
3810
+ msgid "Remote action:"
3811
+ msgstr ""
3812
+
3737
3813
  msgid "Removal of package group(s) requested: %{groups}"
3738
3814
  msgstr ""
3739
3815
 
@@ -3818,6 +3894,9 @@ msgstr "Paket wird entfernt …"
3818
3894
  msgid "Repo Type"
3819
3895
  msgstr ""
3820
3896
 
3897
+ msgid "Report"
3898
+ msgstr ""
3899
+
3821
3900
  # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
3822
3901
  msgid "Repositories"
3823
3902
  msgstr "Repositorys"
@@ -3894,6 +3973,9 @@ msgstr ""
3894
3973
  msgid "Resolve Traces"
3895
3974
  msgstr ""
3896
3975
 
3976
+ msgid "Resolve traces for one or more hosts"
3977
+ msgstr ""
3978
+
3897
3979
  msgid "Resource"
3898
3980
  msgstr ""
3899
3981
 
@@ -3973,6 +4055,9 @@ msgstr "Inhalt eines Repository-GPG-Schlüssels ausgeben, direkt verwendet von y
3973
4055
  msgid "Role"
3974
4056
  msgstr ""
3975
4057
 
4058
+ msgid "Role of host"
4059
+ msgstr ""
4060
+
3976
4061
  msgid "Run Sync Plan:"
3977
4062
  msgstr ""
3978
4063
 
@@ -4074,6 +4159,9 @@ msgstr "Servicelevel %s"
4074
4159
  msgid "Service Level (SLA)"
4075
4160
  msgstr ""
4076
4161
 
4162
+ msgid "Service level of host"
4163
+ msgstr ""
4164
+
4077
4165
  msgid "Service level to be used for autoheal"
4078
4166
  msgstr ""
4079
4167
 
@@ -4169,6 +4257,9 @@ msgstr "Verfügbare Releases für den Inhaltshost anzeigen"
4169
4257
  msgid "Show the available repository types"
4170
4258
  msgstr ""
4171
4259
 
4260
+ msgid "Show the export history for a content view version"
4261
+ msgstr ""
4262
+
4172
4263
  msgid "Shows status of Katello system and it's subcomponents"
4173
4264
  msgstr ""
4174
4265
 
@@ -4178,6 +4269,12 @@ msgstr "Versionsinformationen anzeigen"
4178
4269
  msgid "Simple Content Access"
4179
4270
  msgstr ""
4180
4271
 
4272
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4273
+ msgstr ""
4274
+
4275
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4276
+ msgstr ""
4277
+
4181
4278
  msgid "Size of file to upload"
4182
4279
  msgstr ""
4183
4280
 
@@ -4424,6 +4521,9 @@ msgstr "Ein oder mehrere Produkte synchronisieren"
4424
4521
  msgid "Sync plan identifier to attach"
4425
4522
  msgstr "ID des zu verknüpfenden Synchronisationsplans"
4426
4523
 
4524
+ msgid "Sync state"
4525
+ msgstr ""
4526
+
4427
4527
  msgid "Synced Content"
4428
4528
  msgstr ""
4429
4529
 
@@ -4534,6 +4634,9 @@ msgstr "DIe folgenden Hosts haben relevante Errata: "
4534
4634
  msgid "The id of the host to alter"
4535
4635
  msgstr ""
4536
4636
 
4637
+ msgid "The import path must be in a subdirectory under '%s'."
4638
+ msgstr ""
4639
+
4537
4640
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4538
4641
  msgstr ""
4539
4642
 
@@ -4582,6 +4685,9 @@ msgstr ""
4582
4685
  msgid "The requested resource does not belong to the specified organization"
4583
4686
  msgstr ""
4584
4687
 
4688
+ msgid "The requested traces were not found for this host"
4689
+ msgstr ""
4690
+
4585
4691
  msgid "The selected content source and lifecycle environment do not match"
4586
4692
  msgstr ""
4587
4693
 
@@ -4645,6 +4751,9 @@ msgstr ""
4645
4751
  msgid "There's no running synchronization for this smart proxy."
4646
4752
  msgstr ""
4647
4753
 
4754
+ msgid "This API endpoint is only valid for Pulp 3 repositories."
4755
+ msgstr ""
4756
+
4648
4757
  msgid "This Host is not currently registered with subscription-manager."
4649
4758
  msgstr ""
4650
4759
 
@@ -4784,10 +4893,13 @@ msgstr ""
4784
4893
  msgid "Unable to detect puppet path"
4785
4894
  msgstr ""
4786
4895
 
4787
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4896
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4788
4897
  msgstr ""
4789
4898
 
4790
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4899
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4900
+ msgstr ""
4901
+
4902
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4791
4903
  msgstr ""
4792
4904
 
4793
4905
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5004,6 +5116,12 @@ msgstr ""
5004
5116
  msgid "Updating Package..."
5005
5117
  msgstr "Paket wird aktualisiert …"
5006
5118
 
5119
+ msgid "Updating System Purpose for host"
5120
+ msgstr ""
5121
+
5122
+ msgid "Updating System Purpose for host %s"
5123
+ msgstr ""
5124
+
5007
5125
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
5008
5126
  msgid "Updating package group..."
5009
5127
  msgstr "Paketgruppe wird aktualisiert …"
@@ -5059,9 +5177,15 @@ msgstr ""
5059
5177
  msgid "Usage Type"
5060
5178
  msgstr ""
5061
5179
 
5180
+ msgid "Usage of host"
5181
+ msgstr ""
5182
+
5062
5183
  msgid "Use remote execution by default"
5063
5184
  msgstr ""
5064
5185
 
5186
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5187
+ msgstr ""
5188
+
5065
5189
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5066
5190
  msgstr "Benutzer \"%s\" hat keine Organisations-ID angegeben und hat keine Standardorganisation."
5067
5191
 
@@ -5086,6 +5210,15 @@ msgstr ""
5086
5210
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5087
5211
  msgstr ""
5088
5212
 
5213
+ msgid "Verify checksum"
5214
+ msgstr ""
5215
+
5216
+ msgid "Verify checksum for one or more products"
5217
+ msgstr ""
5218
+
5219
+ msgid "Verify checksum of repository contents"
5220
+ msgstr ""
5221
+
5089
5222
  msgid "Version"
5090
5223
  msgstr ""
5091
5224
 
@@ -5103,7 +5236,7 @@ msgstr ""
5103
5236
  msgid "Virtual"
5104
5237
  msgstr "Virtuell"
5105
5238
 
5106
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5239
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5107
5240
  msgstr ""
5108
5241
 
5109
5242
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5172,6 +5305,9 @@ msgstr "Sie können keine parent_id für eine Organisation festlegen. Diese Funk
5172
5305
  msgid "You currently don't have any Content Views."
5173
5306
  msgstr ""
5174
5307
 
5308
+ msgid "You currently don't have any repositories to add to this content view."
5309
+ msgstr ""
5310
+
5175
5311
  msgid "You do not have permissions to delete %s"
5176
5312
  msgstr "Sie sind nicht dazu berechtigt, %s zu löschen"
5177
5313
 
@@ -5589,9 +5725,6 @@ msgstr ""
5589
5725
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5590
5726
  msgstr ""
5591
5727
 
5592
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5593
- msgstr ""
5594
-
5595
5728
  msgid "if true, will ignore the globally configured proxy when syncing"
5596
5729
  msgstr ""
5597
5730
 
@@ -5670,6 +5803,9 @@ msgstr "Höchstanzahl von registrierten Inhaltshosts"
5670
5803
  msgid "maximum size of each ISO in MB"
5671
5804
  msgstr ""
5672
5805
 
5806
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5807
+ msgstr ""
5808
+
5673
5809
  msgid "may not be less than the number of hosts associated with the host collection."
5674
5810
  msgstr ""
5675
5811
 
@@ -5951,6 +6087,9 @@ msgstr ""
5951
6087
  msgid "the uuid of the puppet module to associate"
5952
6088
  msgstr "UUID des zu verknüpfenden Puppet-Moduls"
5953
6089
 
6090
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6091
+ msgstr ""
6092
+
5954
6093
  msgid "true if the latest version of the component's content view is desired"
5955
6094
  msgstr ""
5956
6095