katello 3.17.0 → 3.18.0

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 (272) 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/capsule_content_controller.rb +2 -2
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  8. data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
  9. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  10. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  11. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
  12. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  13. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -71
  14. data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
  15. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  16. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  17. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  18. data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
  19. data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
  20. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
  21. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  22. data/app/controllers/katello/api/v2/products_controller.rb +9 -9
  23. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  24. data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
  25. data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
  26. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  28. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  29. data/app/controllers/katello/concerns/api/v2/authorization.rb +19 -5
  30. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
  31. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  32. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  33. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  34. data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
  35. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  36. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  37. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  38. data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
  39. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  40. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  41. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
  42. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  43. data/app/lib/actions/katello/content_view/publish.rb +9 -9
  44. data/app/lib/actions/katello/content_view_version/import.rb +8 -13
  45. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  47. data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
  48. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  49. data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
  50. data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
  51. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  52. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  53. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  54. data/app/lib/actions/katello/product/content_create.rb +7 -6
  55. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  56. data/app/lib/actions/katello/repository/import_upload.rb +4 -1
  57. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  58. data/app/lib/actions/katello/repository/sync.rb +3 -1
  59. data/app/lib/actions/katello/repository/update.rb +5 -1
  60. data/app/lib/actions/katello/repository/upload_files.rb +1 -0
  61. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
  62. data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
  63. data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
  64. data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
  65. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  66. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  67. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  68. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  69. data/app/lib/actions/pulp3/content_view_version/export.rb +7 -1
  70. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  71. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  72. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  73. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
  74. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  75. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  76. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
  77. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  78. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  79. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  80. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  81. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  82. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  83. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  84. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  85. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  86. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  87. data/app/lib/katello/resources/registry.rb +3 -3
  88. data/app/models/katello/authorization/activation_key.rb +4 -0
  89. data/app/models/katello/authorization/content_view.rb +13 -0
  90. data/app/models/katello/authorization/content_view_component.rb +15 -0
  91. data/app/models/katello/authorization/content_view_filter.rb +15 -0
  92. data/app/models/katello/authorization/content_view_version.rb +25 -2
  93. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  94. data/app/models/katello/authorization/gpg_key.rb +12 -4
  95. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  96. data/app/models/katello/authorization/organization.rb +8 -0
  97. data/app/models/katello/authorization/sync_plan.rb +16 -0
  98. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  99. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  100. data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
  101. data/app/models/katello/content_migration_progress.rb +4 -0
  102. data/app/models/katello/content_view.rb +30 -4
  103. data/app/models/katello/content_view_component.rb +2 -0
  104. data/app/models/katello/content_view_filter.rb +5 -0
  105. data/app/models/katello/content_view_history.rb +2 -1
  106. data/app/models/katello/content_view_package_filter.rb +1 -1
  107. data/app/models/katello/content_view_puppet_module.rb +8 -0
  108. data/app/models/katello/content_view_repository.rb +13 -1
  109. data/app/models/katello/content_view_version_export_history.rb +8 -1
  110. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  111. data/app/models/katello/glue/pulp/repo.rb +8 -0
  112. data/app/models/katello/gpg_key.rb +1 -1
  113. data/app/models/katello/ping.rb +8 -3
  114. data/app/models/katello/repository.rb +33 -0
  115. data/app/models/katello/root_repository.rb +26 -1
  116. data/app/models/katello/smart_proxy_sync_history.rb +8 -0
  117. data/app/services/katello/candlepin/event_handler.rb +2 -0
  118. data/app/services/katello/candlepin/message_handler.rb +34 -0
  119. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  120. data/app/services/katello/host_status_manager.rb +9 -0
  121. data/app/services/katello/pulp3/api/apt.rb +57 -0
  122. data/app/services/katello/pulp3/api/core.rb +8 -0
  123. data/app/services/katello/pulp3/api/docker.rb +4 -0
  124. data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
  125. data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
  126. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
  127. data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
  128. data/app/services/katello/pulp3/deb.rb +38 -0
  129. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  130. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  131. data/app/services/katello/pulp3/migration.rb +51 -10
  132. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  133. data/app/services/katello/pulp3/repository.rb +10 -4
  134. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  135. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  136. data/app/services/katello/pulp3/repository/docker.rb +9 -0
  137. data/app/services/katello/pulp3/repository/yum.rb +14 -9
  138. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  139. data/app/services/katello/pulp3/task.rb +4 -0
  140. data/app/services/katello/pulp3/task_group.rb +4 -0
  141. data/app/services/katello/repository_type.rb +2 -1
  142. data/app/services/katello/smart_proxy_helper.rb +9 -0
  143. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  144. data/app/views/foreman/hosts/_registration.html.erb +12 -0
  145. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  146. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  147. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  148. data/app/views/katello/layouts/react.html.erb +3 -2
  149. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  150. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  151. data/config/routes/api/v2.rb +24 -2
  152. data/config/routes/overrides.rb +1 -0
  153. data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
  154. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  155. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  156. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  157. data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
  158. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  159. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  160. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  161. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +92 -19
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  199. data/lib/katello/engine.rb +2 -0
  200. data/lib/katello/permission_creator.rb +98 -69
  201. data/lib/katello/permissions/host_permissions.rb +1 -0
  202. data/lib/katello/plugin.rb +10 -2
  203. data/lib/katello/repository_types/deb.rb +9 -1
  204. data/lib/katello/tasks/pulp3_migration.rake +17 -3
  205. data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
  206. data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
  207. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  208. data/lib/katello/tasks/reset.rake +2 -1
  209. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  210. data/lib/katello/version.rb +1 -1
  211. data/locale/action_names.rb +51 -44
  212. data/locale/bn/katello.po +279 -55
  213. data/locale/cs/katello.po +278 -51
  214. data/locale/de/katello.po +279 -52
  215. data/locale/en/katello.po +278 -49
  216. data/locale/es/katello.po +279 -51
  217. data/locale/fr/katello.po +279 -51
  218. data/locale/gu/katello.po +279 -55
  219. data/locale/hi/katello.po +279 -55
  220. data/locale/it/katello.po +279 -51
  221. data/locale/ja/katello.po +279 -52
  222. data/locale/katello.pot +1379 -971
  223. data/locale/kn/katello.po +279 -55
  224. data/locale/ko/katello.po +279 -51
  225. data/locale/mr/katello.po +279 -55
  226. data/locale/or/katello.po +279 -55
  227. data/locale/pa/katello.po +279 -55
  228. data/locale/pt/katello.po +278 -52
  229. data/locale/pt_BR/katello.po +279 -51
  230. data/locale/ru/katello.po +279 -51
  231. data/locale/ta/katello.po +279 -55
  232. data/locale/te/katello.po +279 -55
  233. data/locale/zh_CN/katello.po +279 -51
  234. data/locale/zh_TW/katello.po +279 -52
  235. data/webpack/components/ActionableDetail.js +2 -1
  236. data/webpack/components/Search/Search.js +1 -1
  237. data/webpack/components/Table/MainTable.js +6 -2
  238. data/webpack/components/Table/TableWrapper.js +46 -9
  239. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  240. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  241. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  242. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  243. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  244. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  245. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  246. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  247. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  248. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  249. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  250. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  251. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  252. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  253. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  254. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  255. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  256. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +29 -19
  257. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  258. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  259. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  260. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  261. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  262. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  263. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  264. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  265. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  266. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  267. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  268. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  269. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  270. data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
  271. metadata +74 -13
  272. data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
@@ -22,6 +22,11 @@ msgstr ""
22
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
23
  "X-Generator: Zanata 3.6.0\n"
24
24
 
25
+ msgid ""
26
+ "\n"
27
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
28
+ msgstr ""
29
+
25
30
  msgid " %{errata_count} Errata"
26
31
  msgstr ""
27
32
 
@@ -343,12 +348,18 @@ msgstr ""
343
348
  msgid "Action with sub plans"
344
349
  msgstr ""
345
350
 
351
+ msgid "Activation Key(s)"
352
+ msgstr ""
353
+
346
354
  msgid "Activation Keys"
347
355
  msgstr "Aktivierungsschlüssel"
348
356
 
349
357
  msgid "Activation key ID"
350
358
  msgstr "Aktivierungsschlüssel-ID"
351
359
 
360
+ msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
361
+ msgstr ""
362
+
352
363
  msgid "Activation keys and subscriptions can be managed"
353
364
  msgstr "Aktivierungsschlüssel und Subskriptionen können verwaltet werden"
354
365
 
@@ -400,6 +411,9 @@ msgstr "Hinzugefügte Inhalte:"
400
411
  msgid "Adding content units"
401
412
  msgstr ""
402
413
 
414
+ 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}"
415
+ msgstr ""
416
+
403
417
  msgid "Addons"
404
418
  msgstr ""
405
419
 
@@ -504,6 +518,9 @@ msgstr ""
504
518
  msgid "Artifacts"
505
519
  msgstr ""
506
520
 
521
+ msgid "Assign system purpose attributes on one or more hosts"
522
+ msgstr ""
523
+
507
524
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
508
525
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
509
526
  msgstr[0] "%{count} Host ohne %{taxonomy_single} zu %{taxonomy_name} zuweisen"
@@ -549,9 +566,6 @@ msgstr ""
549
566
  msgid "Author"
550
567
  msgstr ""
551
568
 
552
- msgid "Auto Enablement may only be set on custom repositories."
553
- msgstr ""
554
-
555
569
  msgid "Auto Publish - Triggered by '%s'"
556
570
  msgstr ""
557
571
 
@@ -764,6 +778,9 @@ msgstr ""
764
778
  msgid "Cannot delete view while it exists in environments"
765
779
  msgstr "Ansicht kann nicht gelöscht werden, während sie in Umgebungen existiert"
766
780
 
781
+ msgid "Cannot import a composite content view"
782
+ msgstr ""
783
+
767
784
  msgid "Cannot import a custom subscription from a redhat product."
768
785
  msgstr ""
769
786
 
@@ -819,12 +836,18 @@ msgstr ""
819
836
  msgid "Cannot upload Container Image content."
820
837
  msgstr ""
821
838
 
839
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
840
+ msgstr ""
841
+
822
842
  msgid "Cannot validate contents on non-yum/deb repositories."
823
843
  msgstr ""
824
844
 
825
845
  msgid "Check if a connection can be made to Red Hat Subscription Management."
826
846
  msgstr ""
827
847
 
848
+ msgid "Check if the specified organization is eligible for Simple Content Access"
849
+ msgstr ""
850
+
828
851
  msgid "Check services before actions"
829
852
  msgstr ""
830
853
 
@@ -860,7 +883,7 @@ msgstr ""
860
883
  msgid "Combined Profile Update for %s"
861
884
  msgstr ""
862
885
 
863
- msgid "Comma separated list of tags to sync for Container Image repository"
886
+ msgid "Comma-separated list of tags to sync for Container Image repository"
864
887
  msgstr ""
865
888
 
866
889
  # translation auto-copied from project PressGang CCMS topics, version 1, document 15564-459330
@@ -916,9 +939,15 @@ msgstr ""
916
939
  msgid "Content Download URL"
917
940
  msgstr ""
918
941
 
942
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
943
+ msgstr ""
944
+
919
945
  msgid "Content Hosts"
920
946
  msgstr "Inhaltshosts"
921
947
 
948
+ msgid "Content Migration"
949
+ msgstr ""
950
+
922
951
  msgid "Content Source"
923
952
  msgstr "Inhaltsquelle"
924
953
 
@@ -970,9 +999,15 @@ msgstr ""
970
999
  msgid "Content View Version not set"
971
1000
  msgstr ""
972
1001
 
1002
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1003
+ msgstr ""
1004
+
973
1005
  msgid "Content View and Environment not set for registration."
974
1006
  msgstr ""
975
1007
 
1008
+ msgid "Content View id"
1009
+ msgstr ""
1010
+
976
1011
  # translation auto-copied from project PressGang CCMS topics, version 1, document 20647-698348, author hpeters
977
1012
  msgid "Content Views"
978
1013
  msgstr "Inhaltsansichten"
@@ -1011,6 +1046,9 @@ msgstr "Kennung der Inhaltsansicht"
1011
1046
  msgid "Content view numeric identifier"
1012
1047
  msgstr "Numerische ID der Inhaltsansicht"
1013
1048
 
1049
+ msgid "Content view version export history identifier"
1050
+ msgstr ""
1051
+
1014
1052
  msgid "Content view version identifier"
1015
1053
  msgstr "ID der Inhaltsansichtsversion"
1016
1054
 
@@ -1032,12 +1070,12 @@ msgstr ""
1032
1070
  msgid "Copy an activation key"
1033
1071
  msgstr "Aktivierungsschlüssel kopieren"
1034
1072
 
1073
+ msgid "Copy version units to library"
1074
+ msgstr ""
1075
+
1035
1076
  msgid "Cores: %s"
1036
1077
  msgstr "Kerne: %s"
1037
1078
 
1038
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1039
- msgstr ""
1040
-
1041
1079
  # translation auto-copied from project CFSE, version sam-1.2, document app
1042
1080
  msgid "Could not delete organization '%s'."
1043
1081
  msgstr "Organisation \"%s\" konnte nicht gelöscht werden."
@@ -1048,6 +1086,12 @@ msgstr "%{content} mit ID \"%{id}\" konnte nicht in Repository gefunden werden."
1048
1086
  msgid "Could not find %{count} errata. Only found: %{found}"
1049
1087
  msgstr ""
1050
1088
 
1089
+ msgid "Could not find %{name} resource with id %{id}"
1090
+ msgstr ""
1091
+
1092
+ msgid "Could not find %{name} resources with ids %{ids}"
1093
+ msgstr ""
1094
+
1051
1095
  msgid "Could not find Environment with ids: %s"
1052
1096
  msgstr "Umgebung mit IDs %s konnte nicht gefunden werden"
1053
1097
 
@@ -1081,9 +1125,6 @@ msgstr ""
1081
1125
  msgid "Couldn't find %{type} Filter with id %{id}"
1082
1126
  msgstr "%{type} Filter mit ID %{id} konnte nicht gefunden werden"
1083
1127
 
1084
- msgid "Couldn't find Content Credential '%s'"
1085
- msgstr ""
1086
-
1087
1128
  msgid "Couldn't find ContentViewFilter with id=%s"
1088
1129
  msgstr "Inhaltsansichtsfilter mit ID=%s konnte nicht gefunden werden."
1089
1130
 
@@ -1133,12 +1174,6 @@ msgstr "Umgebung \"%s\" konnte nicht gefunden werden."
1133
1174
  msgid "Couldn't find errata ids '%s'"
1134
1175
  msgstr "Errata-IDs \"%s\" konnten nicht gefunden werden."
1135
1176
 
1136
- msgid "Couldn't find gpg key '%s'"
1137
- msgstr "GPG-Schlüssel \"%s\" konnte nicht gefunden werden."
1138
-
1139
- msgid "Couldn't find host '%s'"
1140
- msgstr ""
1141
-
1142
1177
  msgid "Couldn't find host collection '%s'"
1143
1178
  msgstr "Hostsammlung \"%s\" konnte nicht gefunden werden."
1144
1179
 
@@ -1152,9 +1187,6 @@ msgstr "Organisation \"%s\" konnte nicht gefunden werden."
1152
1187
  msgid "Couldn't find prior-environment '%s'"
1153
1188
  msgstr "Vorherige Umgebung \"%s\" konnte nicht gefunden werden."
1154
1189
 
1155
- msgid "Couldn't find product '%s'"
1156
- msgstr "Produkt \"%s\" konnte nicht gefunden werden."
1157
-
1158
1190
  # translation auto-copied from project CFSE, version sam-1.2, document app
1159
1191
  msgid "Couldn't find product with id '%s'"
1160
1192
  msgstr "Produkt mit ID \"%s\" konnte nicht gefunden werden."
@@ -1163,28 +1195,12 @@ msgstr "Produkt mit ID \"%s\" konnte nicht gefunden werden."
1163
1195
  msgid "Couldn't find repository '%s'"
1164
1196
  msgstr "Repository \"%s\" konnte nicht gefunden werden."
1165
1197
 
1166
- msgid "Couldn't find repository set with id '%s'."
1167
- msgstr "Repository-Gruppe mit ID \"%s\" konnte nicht gefunden werden."
1168
-
1169
1198
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1170
1199
  msgstr ""
1171
1200
 
1172
- msgid "Couldn't find ssl ca cert '%s'"
1173
- msgstr ""
1174
-
1175
- msgid "Couldn't find ssl client cert '%s'"
1176
- msgstr ""
1177
-
1178
- msgid "Couldn't find ssl client key '%s'"
1179
- msgstr ""
1180
-
1181
1201
  msgid "Couldn't find subject of synchronization"
1182
1202
  msgstr "Subjekt der Synchronisation konnte nicht gefunden werden."
1183
1203
 
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
1204
  msgid "Count"
1189
1205
  msgstr ""
1190
1206
 
@@ -1256,6 +1272,9 @@ msgstr ""
1256
1272
  msgid "Current organization not set."
1257
1273
  msgstr ""
1258
1274
 
1275
+ msgid "Custom"
1276
+ msgstr ""
1277
+
1259
1278
  # translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
1260
1279
  msgid "Custom Content Repositories"
1261
1280
  msgstr "Benutzerdefinierte Inhaltsrepositorys"
@@ -1465,9 +1484,15 @@ msgstr "Beschreibung der neu veröffentlichten Inhaltsansichtsversion"
1465
1484
  msgid "Description of the repository"
1466
1485
  msgstr ""
1467
1486
 
1487
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1488
+ msgstr ""
1489
+
1468
1490
  msgid "Desired quantity of the pool"
1469
1491
  msgstr ""
1470
1492
 
1493
+ msgid "Destination Server name"
1494
+ msgstr ""
1495
+
1471
1496
  # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1472
1497
  msgid "Destroy"
1473
1498
  msgstr "Löschen"
@@ -1520,6 +1545,9 @@ msgstr "Details"
1520
1545
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1521
1546
  msgstr ""
1522
1547
 
1548
+ msgid "Directory containing the exported Content View Version"
1549
+ msgstr ""
1550
+
1523
1551
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author rgromans
1524
1552
  msgid "Disable"
1525
1553
  msgstr "Deaktivieren"
@@ -1536,6 +1564,9 @@ msgstr ""
1536
1564
  msgid "Disable simple content access for a manifest"
1537
1565
  msgstr ""
1538
1566
 
1567
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1568
+ msgstr ""
1569
+
1539
1570
  msgid "Disconnected mode"
1540
1571
  msgstr ""
1541
1572
 
@@ -1621,6 +1652,9 @@ msgstr ""
1621
1652
  msgid "Enabled Repositories"
1622
1653
  msgstr ""
1623
1654
 
1655
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1656
+ msgstr ""
1657
+
1624
1658
  msgid "End Date"
1625
1659
  msgstr ""
1626
1660
 
@@ -1733,7 +1767,10 @@ msgstr ""
1733
1767
  msgid "Export CSV"
1734
1768
  msgstr ""
1735
1769
 
1736
- msgid "Export a content view version"
1770
+ msgid "Export Library"
1771
+ msgstr ""
1772
+
1773
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1737
1774
  msgstr ""
1738
1775
 
1739
1776
  msgid "Export a repository"
@@ -1742,9 +1779,15 @@ msgstr ""
1742
1779
  msgid "Export as CSV"
1743
1780
  msgstr ""
1744
1781
 
1782
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1783
+ msgstr ""
1784
+
1745
1785
  msgid "Export to ISO format"
1746
1786
  msgstr ""
1747
1787
 
1788
+ msgid "Export to ISO format."
1789
+ msgstr ""
1790
+
1748
1791
  msgid "Exported version"
1749
1792
  msgstr ""
1750
1793
 
@@ -1886,10 +1929,6 @@ msgstr ""
1886
1929
  msgid "GPG Key URL"
1887
1930
  msgstr ""
1888
1931
 
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
1932
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
1894
1933
  msgid "Generate and Download"
1895
1934
  msgstr "Generieren und herunterladen"
@@ -1996,6 +2035,9 @@ msgstr "Hostsammlung ist leer."
1996
2035
  msgid "Host content and subscription details"
1997
2036
  msgstr "Hostinhalt und Subskriptionsdetails"
1998
2037
 
2038
+ 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."
2039
+ msgstr ""
2040
+
1999
2041
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2000
2042
  msgstr ""
2001
2043
 
@@ -2020,6 +2062,9 @@ msgstr ""
2020
2062
  msgid "Host id to list applicable packages for"
2021
2063
  msgstr ""
2022
2064
 
2065
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2066
+ msgstr ""
2067
+
2023
2068
  msgid "Host with ID %s already exists in the host collection."
2024
2069
  msgstr ""
2025
2070
 
@@ -2173,6 +2218,9 @@ msgstr ""
2173
2218
  msgid "Identifiers for Lifecycle Environment"
2174
2219
  msgstr ""
2175
2220
 
2221
+ msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2222
+ msgstr ""
2223
+
2176
2224
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2177
2225
  msgstr ""
2178
2226
 
@@ -2215,6 +2263,15 @@ msgstr ""
2215
2263
  msgid "Immediate"
2216
2264
  msgstr ""
2217
2265
 
2266
+ msgid "Import"
2267
+ msgstr ""
2268
+
2269
+ msgid "Import Content View Version"
2270
+ msgstr ""
2271
+
2272
+ msgid "Import Default Content View"
2273
+ msgstr ""
2274
+
2218
2275
  msgid "Import Manifest"
2219
2276
  msgstr "Manifest importieren"
2220
2277
 
@@ -2236,12 +2293,27 @@ msgstr ""
2236
2293
  msgid "Import a Manifest using the manifest tab above."
2237
2294
  msgstr ""
2238
2295
 
2296
+ msgid "Import a content view version"
2297
+ msgstr ""
2298
+
2299
+ msgid "Import a content view version to the library"
2300
+ msgstr ""
2301
+
2239
2302
  msgid "Import facts"
2240
2303
  msgstr "Fakten importieren"
2241
2304
 
2242
2305
  msgid "Import uploads into a repository"
2243
2306
  msgstr "Uploads in ein Repository importieren"
2244
2307
 
2308
+ msgid "Import-only can not be changed after creation"
2309
+ msgstr ""
2310
+
2311
+ msgid "Import-only content views can not be published directly"
2312
+ msgstr ""
2313
+
2314
+ msgid "Import-only content views will be available in a future version."
2315
+ msgstr ""
2316
+
2245
2317
  msgid "Importing manifest into '%{subject}' failed."
2246
2318
  msgstr ""
2247
2319
 
@@ -2419,6 +2491,9 @@ msgstr ""
2419
2491
  msgid "Invalid params provided - date_type must be one of %s"
2420
2492
  msgstr ""
2421
2493
 
2494
+ msgid "Invalid path specified."
2495
+ msgstr ""
2496
+
2422
2497
  msgid ""
2423
2498
  "Invalid puppet module parameters specified. \\\n"
2424
2499
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2427,6 +2502,12 @@ msgstr ""
2427
2502
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2428
2503
  msgstr "Ungültiges Puppet-Modul. Vergewissern Sie sich, dass das Puppet-Modul eine metadata.json-Datei enthält und ordnungsgemäß komprimiert ist."
2429
2504
 
2505
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2506
+ msgstr ""
2507
+
2508
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2509
+ msgstr ""
2510
+
2430
2511
  msgid "Invalid value specified for Container Image repositories."
2431
2512
  msgstr ""
2432
2513
 
@@ -2436,6 +2517,9 @@ msgstr ""
2436
2517
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2437
2518
  msgstr ""
2438
2519
 
2520
+ msgid "Katello"
2521
+ msgstr ""
2522
+
2439
2523
  msgid "Katello ID of local pool to update"
2440
2524
  msgstr ""
2441
2525
 
@@ -2496,9 +2580,6 @@ msgstr ""
2496
2580
  msgid "Learn more about adding Subscription Manifests"
2497
2581
  msgstr ""
2498
2582
 
2499
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2500
- msgstr ""
2501
-
2502
2583
  msgid "Library lifecycle environments may not be deleted."
2503
2584
  msgstr "Library-Lebenszyklusumgebungen dürfen nicht gelöscht werden."
2504
2585
 
@@ -2600,6 +2681,9 @@ msgstr "Errata auflisten"
2600
2681
  msgid "List errata available for the content host"
2601
2682
  msgstr "Verfügbare Errata für den Inhaltshost auflisten"
2602
2683
 
2684
+ msgid "List export histories"
2685
+ msgstr ""
2686
+
2603
2687
  msgid "List filter rules"
2604
2688
  msgstr "Filterregeln auflisten"
2605
2689
 
@@ -2753,6 +2837,9 @@ msgstr ""
2753
2837
  msgid "List srpms"
2754
2838
  msgstr ""
2755
2839
 
2840
+ msgid "List subscriptions"
2841
+ msgstr ""
2842
+
2756
2843
  msgid "List sync plans"
2757
2844
  msgstr "Synchronisationspläne auflisten"
2758
2845
 
@@ -2841,6 +2928,9 @@ msgstr "Nachricht"
2841
2928
  msgid "Messaging connection"
2842
2929
  msgstr ""
2843
2930
 
2931
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2932
+ msgstr ""
2933
+
2844
2934
  msgid "Mismatched"
2845
2935
  msgstr ""
2846
2936
 
@@ -2973,6 +3063,9 @@ msgstr ""
2973
3063
  msgid "No errors"
2974
3064
  msgstr "Keine Fehler"
2975
3065
 
3066
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3067
+ msgstr ""
3068
+
2976
3069
  msgid "No file uploaded"
2977
3070
  msgstr "Keine Datei hochgeladen"
2978
3071
 
@@ -2985,12 +3078,18 @@ msgstr ""
2985
3078
  msgid "No hosts registered with subscription-manager found in selection."
2986
3079
  msgstr ""
2987
3080
 
3081
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3082
+ msgstr ""
3083
+
2988
3084
  msgid "No manifest file uploaded"
2989
3085
  msgstr "Keine Manifestdatei hochgeladen"
2990
3086
 
2991
3087
  msgid "No matching content views found"
2992
3088
  msgstr ""
2993
3089
 
3090
+ msgid "No matching repositories found"
3091
+ msgstr ""
3092
+
2994
3093
  msgid "No new packages installed"
2995
3094
  msgstr "Keine neuen Pakete installiert"
2996
3095
 
@@ -3126,6 +3225,9 @@ msgstr ""
3126
3225
  msgid "On-disk location for exported repositories"
3127
3226
  msgstr ""
3128
3227
 
3228
+ msgid "On-disk location for pulp 3 exported repositories"
3229
+ msgstr ""
3230
+
3129
3231
  msgid "One of parameters [ %s ] required but not specified."
3130
3232
  msgstr "Einer der Parameter [ %s ] ist erforderlich, jedoch nicht angegeben."
3131
3233
 
@@ -3158,6 +3260,9 @@ msgstr "Operatoren"
3158
3260
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3159
3261
  msgstr ""
3160
3262
 
3263
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3264
+ msgstr ""
3265
+
3161
3266
  msgid "Organization"
3162
3267
  msgstr "Organisation"
3163
3268
 
@@ -3396,6 +3501,18 @@ msgstr ""
3396
3501
  msgid "Perform an Incremental Update on one or more Content View Versions"
3397
3502
  msgstr "Inkrementelle Aktualisierung auf einer oder mehreren Inhaltsansichtsversionen durchführen"
3398
3503
 
3504
+ msgid "Performs a full-export of a content view version."
3505
+ msgstr ""
3506
+
3507
+ msgid "Performs a full-export of the repositories in library."
3508
+ msgstr ""
3509
+
3510
+ msgid "Performs an incremental-export of a content view version."
3511
+ msgstr ""
3512
+
3513
+ msgid "Performs an incremental-export of the repositories in library."
3514
+ msgstr ""
3515
+
3399
3516
  # translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
3400
3517
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3401
3518
  msgstr "Zugriff verweigert. Benutzer \"%{user}\" hat keine Berechtigung zum Zugriff auf Organisation \"%{org}\"."
@@ -3407,6 +3524,9 @@ msgstr "Physisch"
3407
3524
  msgid "Plan numeric identifier"
3408
3525
  msgstr "Numerische Plan-ID"
3409
3526
 
3527
+ msgid "Please add some repositories."
3528
+ msgstr ""
3529
+
3410
3530
  msgid "Please enter a positive number above zero"
3411
3531
  msgstr ""
3412
3532
 
@@ -3434,6 +3554,9 @@ msgstr ""
3434
3554
  msgid "Please select one from the list below and you will be redirected."
3435
3555
  msgstr ""
3436
3556
 
3557
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3558
+ msgstr ""
3559
+
3437
3560
  msgid "Processing metadata"
3438
3561
  msgstr "Metadaten werden verarbeitet"
3439
3562
 
@@ -3540,6 +3663,9 @@ msgstr ""
3540
3663
  msgid "Pulp"
3541
3664
  msgstr ""
3542
3665
 
3666
+ msgid "Pulp 3 export destination filepath"
3667
+ msgstr ""
3668
+
3543
3669
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3544
3670
  msgstr ""
3545
3671
 
@@ -3594,6 +3720,12 @@ msgstr ""
3594
3720
  msgid "Pulp task error"
3595
3721
  msgstr "Pulp-Taskfehler"
3596
3722
 
3723
+ msgid "Pulp user or group unable to read '%s'."
3724
+ msgstr ""
3725
+
3726
+ msgid "Pulp user or group unable to read content in '%s'."
3727
+ msgstr ""
3728
+
3597
3729
  msgid "Pulpcore"
3598
3730
  msgstr ""
3599
3731
 
@@ -3672,6 +3804,9 @@ msgstr ""
3672
3804
  msgid "Recommended Repositories"
3673
3805
  msgstr ""
3674
3806
 
3807
+ msgid "Red Hat"
3808
+ msgstr ""
3809
+
3675
3810
  msgid "Red Hat CDN URL"
3676
3811
  msgstr "Red Hat CDN-URL"
3677
3812
 
@@ -3894,6 +4029,9 @@ msgstr ""
3894
4029
  msgid "Resolve Traces"
3895
4030
  msgstr ""
3896
4031
 
4032
+ msgid "Resolve traces for one or more hosts"
4033
+ msgstr ""
4034
+
3897
4035
  msgid "Resource"
3898
4036
  msgstr ""
3899
4037
 
@@ -3973,6 +4111,9 @@ msgstr "Inhalt eines Repository-GPG-Schlüssels ausgeben, direkt verwendet von y
3973
4111
  msgid "Role"
3974
4112
  msgstr ""
3975
4113
 
4114
+ msgid "Role of host"
4115
+ msgstr ""
4116
+
3976
4117
  msgid "Run Sync Plan:"
3977
4118
  msgstr ""
3978
4119
 
@@ -4074,6 +4215,9 @@ msgstr "Servicelevel %s"
4074
4215
  msgid "Service Level (SLA)"
4075
4216
  msgstr ""
4076
4217
 
4218
+ msgid "Service level of host"
4219
+ msgstr ""
4220
+
4077
4221
  msgid "Service level to be used for autoheal"
4078
4222
  msgstr ""
4079
4223
 
@@ -4178,6 +4322,15 @@ msgstr "Versionsinformationen anzeigen"
4178
4322
  msgid "Simple Content Access"
4179
4323
  msgstr ""
4180
4324
 
4325
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4326
+ msgstr ""
4327
+
4328
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4329
+ msgstr ""
4330
+
4331
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4332
+ msgstr ""
4333
+
4181
4334
  msgid "Size of file to upload"
4182
4335
  msgstr ""
4183
4336
 
@@ -4212,6 +4365,9 @@ msgstr ""
4212
4365
  msgid "Specify the list of units in each repo"
4213
4366
  msgstr ""
4214
4367
 
4368
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4369
+ msgstr ""
4370
+
4215
4371
  msgid "Stacking ID"
4216
4372
  msgstr ""
4217
4373
 
@@ -4424,6 +4580,9 @@ msgstr "Ein oder mehrere Produkte synchronisieren"
4424
4580
  msgid "Sync plan identifier to attach"
4425
4581
  msgstr "ID des zu verknüpfenden Synchronisationsplans"
4426
4582
 
4583
+ msgid "Sync state"
4584
+ msgstr ""
4585
+
4427
4586
  msgid "Synced Content"
4428
4587
  msgstr ""
4429
4588
 
@@ -4486,6 +4645,9 @@ msgstr "Die \"%s\" Umgebung kann keinen Änderungssatz enthalten!"
4486
4645
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4487
4646
  msgstr ""
4488
4647
 
4648
+ msgid "The TOC file specified in the metadata does not exist. %s "
4649
+ msgstr ""
4650
+
4489
4651
  msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
4490
4652
  msgstr ""
4491
4653
 
@@ -4525,15 +4687,26 @@ msgstr "Das Startdatum der Erratum-Filterregel hat ein ungültiges Format oder
4525
4687
  msgid "The erratum type must be an array. Invalid value provided"
4526
4688
  msgstr "Der Erratum-Typ muss ein Array sein. Ungültiger Wert angegeben"
4527
4689
 
4690
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4691
+ msgstr ""
4692
+
4528
4693
  msgid "The field to sort the data by. Defaults to the created date."
4529
4694
  msgstr ""
4530
4695
 
4531
4696
  msgid "The following hosts have errata that apply to them: "
4532
4697
  msgstr "DIe folgenden Hosts haben relevante Errata: "
4533
4698
 
4699
+ msgid ""
4700
+ "The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
4701
+ " %{repos}"
4702
+ msgstr ""
4703
+
4534
4704
  msgid "The id of the host to alter"
4535
4705
  msgstr ""
4536
4706
 
4707
+ msgid "The import path must be in a subdirectory under '%s'."
4708
+ msgstr ""
4709
+
4537
4710
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4538
4711
  msgstr ""
4539
4712
 
@@ -4582,6 +4755,9 @@ msgstr ""
4582
4755
  msgid "The requested resource does not belong to the specified organization"
4583
4756
  msgstr ""
4584
4757
 
4758
+ msgid "The requested traces were not found for this host"
4759
+ msgstr ""
4760
+
4585
4761
  msgid "The selected content source and lifecycle environment do not match"
4586
4762
  msgstr ""
4587
4763
 
@@ -4645,6 +4821,9 @@ msgstr ""
4645
4821
  msgid "There's no running synchronization for this smart proxy."
4646
4822
  msgstr ""
4647
4823
 
4824
+ msgid "This Content View must be set to Import-only before performing an import"
4825
+ msgstr ""
4826
+
4648
4827
  msgid "This Host is not currently registered with subscription-manager."
4649
4828
  msgstr ""
4650
4829
 
@@ -4654,6 +4833,9 @@ msgstr ""
4654
4833
  msgid "This action doesn't support package groups"
4655
4834
  msgstr ""
4656
4835
 
4836
+ msgid "This action will become available after the Pulp 3 content migration"
4837
+ msgstr ""
4838
+
4657
4839
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4658
4840
  msgstr "Dieses Zertifikat ermöglicht es dem Benutzer, die Repositorys in jeder Umgebung mit einem Browser anzuzeigen."
4659
4841
 
@@ -4784,10 +4966,16 @@ msgstr ""
4784
4966
  msgid "Unable to detect puppet path"
4785
4967
  msgstr ""
4786
4968
 
4787
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4969
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4788
4970
  msgstr ""
4789
4971
 
4790
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4972
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4973
+ msgstr ""
4974
+
4975
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4976
+ msgstr ""
4977
+
4978
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4791
4979
  msgstr ""
4792
4980
 
4793
4981
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5004,6 +5192,12 @@ msgstr ""
5004
5192
  msgid "Updating Package..."
5005
5193
  msgstr "Paket wird aktualisiert …"
5006
5194
 
5195
+ msgid "Updating System Purpose for host"
5196
+ msgstr ""
5197
+
5198
+ msgid "Updating System Purpose for host %s"
5199
+ msgstr ""
5200
+
5007
5201
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
5008
5202
  msgid "Updating package group..."
5009
5203
  msgstr "Paketgruppe wird aktualisiert …"
@@ -5059,9 +5253,15 @@ msgstr ""
5059
5253
  msgid "Usage Type"
5060
5254
  msgstr ""
5061
5255
 
5256
+ msgid "Usage of host"
5257
+ msgstr ""
5258
+
5062
5259
  msgid "Use remote execution by default"
5063
5260
  msgstr ""
5064
5261
 
5262
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5263
+ msgstr ""
5264
+
5065
5265
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5066
5266
  msgstr "Benutzer \"%s\" hat keine Organisations-ID angegeben und hat keine Standardorganisation."
5067
5267
 
@@ -5086,6 +5286,15 @@ msgstr ""
5086
5286
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5087
5287
  msgstr ""
5088
5288
 
5289
+ msgid "Verify checksum"
5290
+ msgstr ""
5291
+
5292
+ msgid "Verify checksum for one or more products"
5293
+ msgstr ""
5294
+
5295
+ msgid "Verify checksum of repository contents"
5296
+ msgstr ""
5297
+
5089
5298
  msgid "Version"
5090
5299
  msgstr ""
5091
5300
 
@@ -5103,7 +5312,7 @@ msgstr ""
5103
5312
  msgid "Virtual"
5104
5313
  msgstr "Virtuell"
5105
5314
 
5106
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5315
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5107
5316
  msgstr ""
5108
5317
 
5109
5318
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5172,6 +5381,9 @@ msgstr "Sie können keine parent_id für eine Organisation festlegen. Diese Funk
5172
5381
  msgid "You currently don't have any Content Views."
5173
5382
  msgstr ""
5174
5383
 
5384
+ msgid "You currently don't have any repositories to add to this content view."
5385
+ msgstr ""
5386
+
5175
5387
  msgid "You do not have permissions to delete %s"
5176
5388
  msgstr "Sie sind nicht dazu berechtigt, %s zu löschen"
5177
5389
 
@@ -5278,6 +5490,9 @@ msgstr "eine Organisation"
5278
5490
  msgid "an ostree branch"
5279
5491
  msgstr ""
5280
5492
 
5493
+ msgid "are only allowed for Yum repositories."
5494
+ msgstr ""
5495
+
5281
5496
  msgid "attempted to sync without a feed URL"
5282
5497
  msgstr ""
5283
5498
 
@@ -5296,6 +5511,9 @@ msgstr ""
5296
5511
  msgid "can't be blank"
5297
5512
  msgstr "darf nicht leer sein"
5298
5513
 
5514
+ msgid "cannot add filter to import-only view"
5515
+ msgstr ""
5516
+
5299
5517
  msgid "cannot be a binary file."
5300
5518
  msgstr "darf keine Binärdatei sein."
5301
5519
 
@@ -5352,13 +5570,13 @@ msgstr ""
5352
5570
  msgid "checking Pulp task status"
5353
5571
  msgstr ""
5354
5572
 
5355
- msgid "comma separated list of architectures to be synched from deb-archive"
5573
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5356
5574
  msgstr ""
5357
5575
 
5358
- msgid "comma separated list of releases to be synched from deb-archive"
5576
+ msgid "comma-separated list of releases to be synced from deb-archive"
5359
5577
  msgstr ""
5360
5578
 
5361
- msgid "comma separated list of repo components to be synched from deb-archive"
5579
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5362
5580
  msgstr ""
5363
5581
 
5364
5582
  msgid "composite content view identifier"
@@ -5589,9 +5807,6 @@ msgstr ""
5589
5807
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5590
5808
  msgstr ""
5591
5809
 
5592
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5593
- msgstr ""
5594
-
5595
5810
  msgid "if true, will ignore the globally configured proxy when syncing"
5596
5811
  msgstr ""
5597
5812
 
@@ -5631,6 +5846,9 @@ msgstr ""
5631
5846
  msgid "invalid container image name"
5632
5847
  msgstr ""
5633
5848
 
5849
+ msgid "invalid: Repositories can only require one OS version."
5850
+ msgstr ""
5851
+
5634
5852
  msgid "is already attached to the capsule"
5635
5853
  msgstr "ist bereits mit der Capsule verknüpft"
5636
5854
 
@@ -5670,6 +5888,9 @@ msgstr "Höchstanzahl von registrierten Inhaltshosts"
5670
5888
  msgid "maximum size of each ISO in MB"
5671
5889
  msgstr ""
5672
5890
 
5891
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5892
+ msgstr ""
5893
+
5673
5894
  msgid "may not be less than the number of hosts associated with the host collection."
5674
5895
  msgstr ""
5675
5896
 
@@ -5691,6 +5912,9 @@ msgstr "muss ein positiver Ganzzahlwert sein."
5691
5912
  msgid "must be one of the following: %s"
5692
5913
  msgstr "muss eines der folgenden sein: %s"
5693
5914
 
5915
+ msgid "must be one of: %s"
5916
+ msgstr ""
5917
+
5694
5918
  msgid "must be unique within one organization"
5695
5919
  msgstr "muss innerhalb einer Organisation eindeutig sein"
5696
5920
 
@@ -5951,6 +6175,9 @@ msgstr ""
5951
6175
  msgid "the uuid of the puppet module to associate"
5952
6176
  msgstr "UUID des zu verknüpfenden Puppet-Moduls"
5953
6177
 
6178
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6179
+ msgstr ""
6180
+
5954
6181
  msgid "true if the latest version of the component's content view is desired"
5955
6182
  msgstr ""
5956
6183