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
@@ -16,6 +16,11 @@ msgstr ""
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
19
+ msgid ""
20
+ "\n"
21
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
22
+ msgstr ""
23
+
19
24
  msgid " %{errata_count} Errata"
20
25
  msgstr ""
21
26
 
@@ -336,12 +341,18 @@ msgstr ""
336
341
  msgid "Action with sub plans"
337
342
  msgstr ""
338
343
 
344
+ msgid "Activation Key(s)"
345
+ msgstr ""
346
+
339
347
  msgid "Activation Keys"
340
348
  msgstr ""
341
349
 
342
350
  msgid "Activation key ID"
343
351
  msgstr ""
344
352
 
353
+ 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."
354
+ msgstr ""
355
+
345
356
  msgid "Activation keys and subscriptions can be managed"
346
357
  msgstr ""
347
358
 
@@ -393,6 +404,9 @@ msgstr ""
393
404
  msgid "Adding content units"
394
405
  msgstr ""
395
406
 
407
+ 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}"
408
+ msgstr ""
409
+
396
410
  msgid "Addons"
397
411
  msgstr ""
398
412
 
@@ -497,6 +511,9 @@ msgstr ""
497
511
  msgid "Artifacts"
498
512
  msgstr ""
499
513
 
514
+ msgid "Assign system purpose attributes on one or more hosts"
515
+ msgstr ""
516
+
500
517
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
501
518
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
502
519
  msgstr[0] ""
@@ -541,9 +558,6 @@ msgstr ""
541
558
  msgid "Author"
542
559
  msgstr ""
543
560
 
544
- msgid "Auto Enablement may only be set on custom repositories."
545
- msgstr ""
546
-
547
561
  msgid "Auto Publish - Triggered by '%s'"
548
562
  msgstr ""
549
563
 
@@ -745,6 +759,9 @@ msgstr ""
745
759
  msgid "Cannot delete view while it exists in environments"
746
760
  msgstr ""
747
761
 
762
+ msgid "Cannot import a composite content view"
763
+ msgstr ""
764
+
748
765
  msgid "Cannot import a custom subscription from a redhat product."
749
766
  msgstr ""
750
767
 
@@ -799,12 +816,18 @@ msgstr ""
799
816
  msgid "Cannot upload Container Image content."
800
817
  msgstr ""
801
818
 
819
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
820
+ msgstr ""
821
+
802
822
  msgid "Cannot validate contents on non-yum/deb repositories."
803
823
  msgstr ""
804
824
 
805
825
  msgid "Check if a connection can be made to Red Hat Subscription Management."
806
826
  msgstr ""
807
827
 
828
+ msgid "Check if the specified organization is eligible for Simple Content Access"
829
+ msgstr ""
830
+
808
831
  msgid "Check services before actions"
809
832
  msgstr ""
810
833
 
@@ -838,7 +861,7 @@ msgstr ""
838
861
  msgid "Combined Profile Update for %s"
839
862
  msgstr ""
840
863
 
841
- msgid "Comma separated list of tags to sync for Container Image repository"
864
+ msgid "Comma-separated list of tags to sync for Container Image repository"
842
865
  msgstr ""
843
866
 
844
867
  msgid "Component"
@@ -892,9 +915,15 @@ msgstr ""
892
915
  msgid "Content Download URL"
893
916
  msgstr ""
894
917
 
918
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
919
+ msgstr ""
920
+
895
921
  msgid "Content Hosts"
896
922
  msgstr ""
897
923
 
924
+ msgid "Content Migration"
925
+ msgstr ""
926
+
898
927
  msgid "Content Source"
899
928
  msgstr ""
900
929
 
@@ -943,9 +972,15 @@ msgstr ""
943
972
  msgid "Content View Version not set"
944
973
  msgstr ""
945
974
 
975
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
976
+ msgstr ""
977
+
946
978
  msgid "Content View and Environment not set for registration."
947
979
  msgstr ""
948
980
 
981
+ msgid "Content View id"
982
+ msgstr ""
983
+
949
984
  msgid "Content Views"
950
985
  msgstr ""
951
986
 
@@ -982,6 +1017,9 @@ msgstr ""
982
1017
  msgid "Content view numeric identifier"
983
1018
  msgstr ""
984
1019
 
1020
+ msgid "Content view version export history identifier"
1021
+ msgstr ""
1022
+
985
1023
  msgid "Content view version identifier"
986
1024
  msgstr ""
987
1025
 
@@ -1003,10 +1041,10 @@ msgstr ""
1003
1041
  msgid "Copy an activation key"
1004
1042
  msgstr ""
1005
1043
 
1006
- msgid "Cores: %s"
1044
+ msgid "Copy version units to library"
1007
1045
  msgstr ""
1008
1046
 
1009
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1047
+ msgid "Cores: %s"
1010
1048
  msgstr ""
1011
1049
 
1012
1050
  msgid "Could not delete organization '%s'."
@@ -1018,6 +1056,12 @@ msgstr ""
1018
1056
  msgid "Could not find %{count} errata. Only found: %{found}"
1019
1057
  msgstr ""
1020
1058
 
1059
+ msgid "Could not find %{name} resource with id %{id}"
1060
+ msgstr ""
1061
+
1062
+ msgid "Could not find %{name} resources with ids %{ids}"
1063
+ msgstr ""
1064
+
1021
1065
  msgid "Could not find Environment with ids: %s"
1022
1066
  msgstr ""
1023
1067
 
@@ -1051,9 +1095,6 @@ msgstr ""
1051
1095
  msgid "Couldn't find %{type} Filter with id %{id}"
1052
1096
  msgstr ""
1053
1097
 
1054
- msgid "Couldn't find Content Credential '%s'"
1055
- msgstr ""
1056
-
1057
1098
  msgid "Couldn't find ContentViewFilter with id=%s"
1058
1099
  msgstr ""
1059
1100
 
@@ -1099,12 +1140,6 @@ msgstr ""
1099
1140
  msgid "Couldn't find errata ids '%s'"
1100
1141
  msgstr ""
1101
1142
 
1102
- msgid "Couldn't find gpg key '%s'"
1103
- msgstr ""
1104
-
1105
- msgid "Couldn't find host '%s'"
1106
- msgstr ""
1107
-
1108
1143
  msgid "Couldn't find host collection '%s'"
1109
1144
  msgstr ""
1110
1145
 
@@ -1117,36 +1152,18 @@ msgstr ""
1117
1152
  msgid "Couldn't find prior-environment '%s'"
1118
1153
  msgstr ""
1119
1154
 
1120
- msgid "Couldn't find product '%s'"
1121
- msgstr ""
1122
-
1123
1155
  msgid "Couldn't find product with id '%s'"
1124
1156
  msgstr ""
1125
1157
 
1126
1158
  msgid "Couldn't find repository '%s'"
1127
1159
  msgstr ""
1128
1160
 
1129
- msgid "Couldn't find repository set with id '%s'."
1130
- msgstr ""
1131
-
1132
1161
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1133
1162
  msgstr ""
1134
1163
 
1135
- msgid "Couldn't find ssl ca cert '%s'"
1136
- msgstr ""
1137
-
1138
- msgid "Couldn't find ssl client cert '%s'"
1139
- msgstr ""
1140
-
1141
- msgid "Couldn't find ssl client key '%s'"
1142
- msgstr ""
1143
-
1144
1164
  msgid "Couldn't find subject of synchronization"
1145
1165
  msgstr ""
1146
1166
 
1147
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1148
- msgstr ""
1149
-
1150
1167
  msgid "Count"
1151
1168
  msgstr ""
1152
1169
 
@@ -1216,6 +1233,9 @@ msgstr ""
1216
1233
  msgid "Current organization not set."
1217
1234
  msgstr ""
1218
1235
 
1236
+ msgid "Custom"
1237
+ msgstr ""
1238
+
1219
1239
  msgid "Custom Content Repositories"
1220
1240
  msgstr ""
1221
1241
 
@@ -1420,9 +1440,15 @@ msgstr ""
1420
1440
  msgid "Description of the repository"
1421
1441
  msgstr ""
1422
1442
 
1443
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1444
+ msgstr ""
1445
+
1423
1446
  msgid "Desired quantity of the pool"
1424
1447
  msgstr ""
1425
1448
 
1449
+ msgid "Destination Server name"
1450
+ msgstr ""
1451
+
1426
1452
  msgid "Destroy"
1427
1453
  msgstr ""
1428
1454
 
@@ -1474,6 +1500,9 @@ msgstr ""
1474
1500
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1475
1501
  msgstr ""
1476
1502
 
1503
+ msgid "Directory containing the exported Content View Version"
1504
+ msgstr ""
1505
+
1477
1506
  msgid "Disable"
1478
1507
  msgstr ""
1479
1508
 
@@ -1489,6 +1518,9 @@ msgstr ""
1489
1518
  msgid "Disable simple content access for a manifest"
1490
1519
  msgstr ""
1491
1520
 
1521
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1522
+ msgstr ""
1523
+
1492
1524
  msgid "Disconnected mode"
1493
1525
  msgstr ""
1494
1526
 
@@ -1570,6 +1602,9 @@ msgstr ""
1570
1602
  msgid "Enabled Repositories"
1571
1603
  msgstr ""
1572
1604
 
1605
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1606
+ msgstr ""
1607
+
1573
1608
  msgid "End Date"
1574
1609
  msgstr ""
1575
1610
 
@@ -1675,7 +1710,10 @@ msgstr ""
1675
1710
  msgid "Export CSV"
1676
1711
  msgstr ""
1677
1712
 
1678
- msgid "Export a content view version"
1713
+ msgid "Export Library"
1714
+ msgstr ""
1715
+
1716
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1679
1717
  msgstr ""
1680
1718
 
1681
1719
  msgid "Export a repository"
@@ -1684,9 +1722,15 @@ msgstr ""
1684
1722
  msgid "Export as CSV"
1685
1723
  msgstr ""
1686
1724
 
1725
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1726
+ msgstr ""
1727
+
1687
1728
  msgid "Export to ISO format"
1688
1729
  msgstr ""
1689
1730
 
1731
+ msgid "Export to ISO format."
1732
+ msgstr ""
1733
+
1690
1734
  msgid "Exported version"
1691
1735
  msgstr ""
1692
1736
 
@@ -1828,9 +1872,6 @@ msgstr ""
1828
1872
  msgid "GPG Key URL"
1829
1873
  msgstr ""
1830
1874
 
1831
- msgid "GPG Keys"
1832
- msgstr ""
1833
-
1834
1875
  msgid "Generate and Download"
1835
1876
  msgstr ""
1836
1877
 
@@ -1936,6 +1977,9 @@ msgstr ""
1936
1977
  msgid "Host content and subscription details"
1937
1978
  msgstr ""
1938
1979
 
1980
+ 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."
1981
+ msgstr ""
1982
+
1939
1983
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1940
1984
  msgstr ""
1941
1985
 
@@ -1960,6 +2004,9 @@ msgstr ""
1960
2004
  msgid "Host id to list applicable packages for"
1961
2005
  msgstr ""
1962
2006
 
2007
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2008
+ msgstr ""
2009
+
1963
2010
  msgid "Host with ID %s already exists in the host collection."
1964
2011
  msgstr ""
1965
2012
 
@@ -2113,6 +2160,9 @@ msgstr ""
2113
2160
  msgid "Identifiers for Lifecycle Environment"
2114
2161
  msgstr ""
2115
2162
 
2163
+ 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"
2164
+ msgstr ""
2165
+
2116
2166
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2117
2167
  msgstr ""
2118
2168
 
@@ -2155,6 +2205,15 @@ msgstr ""
2155
2205
  msgid "Immediate"
2156
2206
  msgstr ""
2157
2207
 
2208
+ msgid "Import"
2209
+ msgstr ""
2210
+
2211
+ msgid "Import Content View Version"
2212
+ msgstr ""
2213
+
2214
+ msgid "Import Default Content View"
2215
+ msgstr ""
2216
+
2158
2217
  msgid "Import Manifest"
2159
2218
  msgstr ""
2160
2219
 
@@ -2176,12 +2235,27 @@ msgstr ""
2176
2235
  msgid "Import a Manifest using the manifest tab above."
2177
2236
  msgstr ""
2178
2237
 
2238
+ msgid "Import a content view version"
2239
+ msgstr ""
2240
+
2241
+ msgid "Import a content view version to the library"
2242
+ msgstr ""
2243
+
2179
2244
  msgid "Import facts"
2180
2245
  msgstr ""
2181
2246
 
2182
2247
  msgid "Import uploads into a repository"
2183
2248
  msgstr ""
2184
2249
 
2250
+ msgid "Import-only can not be changed after creation"
2251
+ msgstr ""
2252
+
2253
+ msgid "Import-only content views can not be published directly"
2254
+ msgstr ""
2255
+
2256
+ msgid "Import-only content views will be available in a future version."
2257
+ msgstr ""
2258
+
2185
2259
  msgid "Importing manifest into '%{subject}' failed."
2186
2260
  msgstr ""
2187
2261
 
@@ -2353,6 +2427,9 @@ msgstr ""
2353
2427
  msgid "Invalid params provided - date_type must be one of %s"
2354
2428
  msgstr ""
2355
2429
 
2430
+ msgid "Invalid path specified."
2431
+ msgstr ""
2432
+
2356
2433
  msgid ""
2357
2434
  "Invalid puppet module parameters specified. \\\n"
2358
2435
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2361,6 +2438,12 @@ msgstr ""
2361
2438
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2362
2439
  msgstr ""
2363
2440
 
2441
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2442
+ msgstr ""
2443
+
2444
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2445
+ msgstr ""
2446
+
2364
2447
  msgid "Invalid value specified for Container Image repositories."
2365
2448
  msgstr ""
2366
2449
 
@@ -2370,6 +2453,9 @@ msgstr ""
2370
2453
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2371
2454
  msgstr ""
2372
2455
 
2456
+ msgid "Katello"
2457
+ msgstr ""
2458
+
2373
2459
  msgid "Katello ID of local pool to update"
2374
2460
  msgstr ""
2375
2461
 
@@ -2430,9 +2516,6 @@ msgstr ""
2430
2516
  msgid "Learn more about adding Subscription Manifests"
2431
2517
  msgstr ""
2432
2518
 
2433
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2434
- msgstr ""
2435
-
2436
2519
  msgid "Library lifecycle environments may not be deleted."
2437
2520
  msgstr ""
2438
2521
 
@@ -2532,6 +2615,9 @@ msgstr ""
2532
2615
  msgid "List errata available for the content host"
2533
2616
  msgstr ""
2534
2617
 
2618
+ msgid "List export histories"
2619
+ msgstr ""
2620
+
2535
2621
  msgid "List filter rules"
2536
2622
  msgstr ""
2537
2623
 
@@ -2685,6 +2771,9 @@ msgstr ""
2685
2771
  msgid "List srpms"
2686
2772
  msgstr ""
2687
2773
 
2774
+ msgid "List subscriptions"
2775
+ msgstr ""
2776
+
2688
2777
  msgid "List sync plans"
2689
2778
  msgstr ""
2690
2779
 
@@ -2772,6 +2861,9 @@ msgstr ""
2772
2861
  msgid "Messaging connection"
2773
2862
  msgstr ""
2774
2863
 
2864
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2865
+ msgstr ""
2866
+
2775
2867
  msgid "Mismatched"
2776
2868
  msgstr ""
2777
2869
 
@@ -2901,6 +2993,9 @@ msgstr ""
2901
2993
  msgid "No errors"
2902
2994
  msgstr ""
2903
2995
 
2996
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
2997
+ msgstr ""
2998
+
2904
2999
  msgid "No file uploaded"
2905
3000
  msgstr ""
2906
3001
 
@@ -2913,12 +3008,18 @@ msgstr ""
2913
3008
  msgid "No hosts registered with subscription-manager found in selection."
2914
3009
  msgstr ""
2915
3010
 
3011
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3012
+ msgstr ""
3013
+
2916
3014
  msgid "No manifest file uploaded"
2917
3015
  msgstr ""
2918
3016
 
2919
3017
  msgid "No matching content views found"
2920
3018
  msgstr ""
2921
3019
 
3020
+ msgid "No matching repositories found"
3021
+ msgstr ""
3022
+
2922
3023
  msgid "No new packages installed"
2923
3024
  msgstr ""
2924
3025
 
@@ -3054,6 +3155,9 @@ msgstr ""
3054
3155
  msgid "On-disk location for exported repositories"
3055
3156
  msgstr ""
3056
3157
 
3158
+ msgid "On-disk location for pulp 3 exported repositories"
3159
+ msgstr ""
3160
+
3057
3161
  msgid "One of parameters [ %s ] required but not specified."
3058
3162
  msgstr ""
3059
3163
 
@@ -3084,6 +3188,9 @@ msgstr ""
3084
3188
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3085
3189
  msgstr ""
3086
3190
 
3191
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3192
+ msgstr ""
3193
+
3087
3194
  msgid "Organization"
3088
3195
  msgstr ""
3089
3196
 
@@ -3312,6 +3419,18 @@ msgstr ""
3312
3419
  msgid "Perform an Incremental Update on one or more Content View Versions"
3313
3420
  msgstr ""
3314
3421
 
3422
+ msgid "Performs a full-export of a content view version."
3423
+ msgstr ""
3424
+
3425
+ msgid "Performs a full-export of the repositories in library."
3426
+ msgstr ""
3427
+
3428
+ msgid "Performs an incremental-export of a content view version."
3429
+ msgstr ""
3430
+
3431
+ msgid "Performs an incremental-export of the repositories in library."
3432
+ msgstr ""
3433
+
3315
3434
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3316
3435
  msgstr ""
3317
3436
 
@@ -3321,6 +3440,9 @@ msgstr ""
3321
3440
  msgid "Plan numeric identifier"
3322
3441
  msgstr ""
3323
3442
 
3443
+ msgid "Please add some repositories."
3444
+ msgstr ""
3445
+
3324
3446
  msgid "Please enter a positive number above zero"
3325
3447
  msgstr ""
3326
3448
 
@@ -3348,6 +3470,9 @@ msgstr ""
3348
3470
  msgid "Please select one from the list below and you will be redirected."
3349
3471
  msgstr ""
3350
3472
 
3473
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3474
+ msgstr ""
3475
+
3351
3476
  msgid "Processing metadata"
3352
3477
  msgstr ""
3353
3478
 
@@ -3452,6 +3577,9 @@ msgstr ""
3452
3577
  msgid "Pulp"
3453
3578
  msgstr ""
3454
3579
 
3580
+ msgid "Pulp 3 export destination filepath"
3581
+ msgstr ""
3582
+
3455
3583
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3456
3584
  msgstr ""
3457
3585
 
@@ -3506,6 +3634,12 @@ msgstr ""
3506
3634
  msgid "Pulp task error"
3507
3635
  msgstr ""
3508
3636
 
3637
+ msgid "Pulp user or group unable to read '%s'."
3638
+ msgstr ""
3639
+
3640
+ msgid "Pulp user or group unable to read content in '%s'."
3641
+ msgstr ""
3642
+
3509
3643
  msgid "Pulpcore"
3510
3644
  msgstr ""
3511
3645
 
@@ -3581,6 +3715,9 @@ msgstr ""
3581
3715
  msgid "Recommended Repositories"
3582
3716
  msgstr ""
3583
3717
 
3718
+ msgid "Red Hat"
3719
+ msgstr ""
3720
+
3584
3721
  msgid "Red Hat CDN URL"
3585
3722
  msgstr ""
3586
3723
 
@@ -3797,6 +3934,9 @@ msgstr ""
3797
3934
  msgid "Resolve Traces"
3798
3935
  msgstr ""
3799
3936
 
3937
+ msgid "Resolve traces for one or more hosts"
3938
+ msgstr ""
3939
+
3800
3940
  msgid "Resource"
3801
3941
  msgstr ""
3802
3942
 
@@ -3875,6 +4015,9 @@ msgstr ""
3875
4015
  msgid "Role"
3876
4016
  msgstr ""
3877
4017
 
4018
+ msgid "Role of host"
4019
+ msgstr ""
4020
+
3878
4021
  msgid "Run Sync Plan:"
3879
4022
  msgstr ""
3880
4023
 
@@ -3971,6 +4114,9 @@ msgstr ""
3971
4114
  msgid "Service Level (SLA)"
3972
4115
  msgstr ""
3973
4116
 
4117
+ msgid "Service level of host"
4118
+ msgstr ""
4119
+
3974
4120
  msgid "Service level to be used for autoheal"
3975
4121
  msgstr ""
3976
4122
 
@@ -4073,6 +4219,15 @@ msgstr ""
4073
4219
  msgid "Simple Content Access"
4074
4220
  msgstr ""
4075
4221
 
4222
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4223
+ msgstr ""
4224
+
4225
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4226
+ msgstr ""
4227
+
4228
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4229
+ msgstr ""
4230
+
4076
4231
  msgid "Size of file to upload"
4077
4232
  msgstr ""
4078
4233
 
@@ -4106,6 +4261,9 @@ msgstr ""
4106
4261
  msgid "Specify the list of units in each repo"
4107
4262
  msgstr ""
4108
4263
 
4264
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4265
+ msgstr ""
4266
+
4109
4267
  msgid "Stacking ID"
4110
4268
  msgstr ""
4111
4269
 
@@ -4307,6 +4465,9 @@ msgstr ""
4307
4465
  msgid "Sync plan identifier to attach"
4308
4466
  msgstr ""
4309
4467
 
4468
+ msgid "Sync state"
4469
+ msgstr ""
4470
+
4310
4471
  msgid "Synced Content"
4311
4472
  msgstr ""
4312
4473
 
@@ -4367,6 +4528,9 @@ msgstr ""
4367
4528
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4368
4529
  msgstr ""
4369
4530
 
4531
+ msgid "The TOC file specified in the metadata does not exist. %s "
4532
+ msgstr ""
4533
+
4370
4534
  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."
4371
4535
  msgstr ""
4372
4536
 
@@ -4406,15 +4570,26 @@ msgstr ""
4406
4570
  msgid "The erratum type must be an array. Invalid value provided"
4407
4571
  msgstr ""
4408
4572
 
4573
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4574
+ msgstr ""
4575
+
4409
4576
  msgid "The field to sort the data by. Defaults to the created date."
4410
4577
  msgstr ""
4411
4578
 
4412
4579
  msgid "The following hosts have errata that apply to them: "
4413
4580
  msgstr ""
4414
4581
 
4582
+ msgid ""
4583
+ "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"
4584
+ " %{repos}"
4585
+ msgstr ""
4586
+
4415
4587
  msgid "The id of the host to alter"
4416
4588
  msgstr ""
4417
4589
 
4590
+ msgid "The import path must be in a subdirectory under '%s'."
4591
+ msgstr ""
4592
+
4418
4593
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4419
4594
  msgstr ""
4420
4595
 
@@ -4463,6 +4638,9 @@ msgstr ""
4463
4638
  msgid "The requested resource does not belong to the specified organization"
4464
4639
  msgstr ""
4465
4640
 
4641
+ msgid "The requested traces were not found for this host"
4642
+ msgstr ""
4643
+
4466
4644
  msgid "The selected content source and lifecycle environment do not match"
4467
4645
  msgstr ""
4468
4646
 
@@ -4525,6 +4703,9 @@ msgstr ""
4525
4703
  msgid "There's no running synchronization for this smart proxy."
4526
4704
  msgstr ""
4527
4705
 
4706
+ msgid "This Content View must be set to Import-only before performing an import"
4707
+ msgstr ""
4708
+
4528
4709
  msgid "This Host is not currently registered with subscription-manager."
4529
4710
  msgstr ""
4530
4711
 
@@ -4534,6 +4715,9 @@ msgstr ""
4534
4715
  msgid "This action doesn't support package groups"
4535
4716
  msgstr ""
4536
4717
 
4718
+ msgid "This action will become available after the Pulp 3 content migration"
4719
+ msgstr ""
4720
+
4537
4721
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4538
4722
  msgstr ""
4539
4723
 
@@ -4663,10 +4847,16 @@ msgstr ""
4663
4847
  msgid "Unable to detect puppet path"
4664
4848
  msgstr ""
4665
4849
 
4666
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4850
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4667
4851
  msgstr ""
4668
4852
 
4669
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4853
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4854
+ msgstr ""
4855
+
4856
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4857
+ msgstr ""
4858
+
4859
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4670
4860
  msgstr ""
4671
4861
 
4672
4862
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -4879,6 +5069,12 @@ msgstr ""
4879
5069
  msgid "Updating Package..."
4880
5070
  msgstr ""
4881
5071
 
5072
+ msgid "Updating System Purpose for host"
5073
+ msgstr ""
5074
+
5075
+ msgid "Updating System Purpose for host %s"
5076
+ msgstr ""
5077
+
4882
5078
  msgid "Updating package group..."
4883
5079
  msgstr ""
4884
5080
 
@@ -4933,9 +5129,15 @@ msgstr ""
4933
5129
  msgid "Usage Type"
4934
5130
  msgstr ""
4935
5131
 
5132
+ msgid "Usage of host"
5133
+ msgstr ""
5134
+
4936
5135
  msgid "Use remote execution by default"
4937
5136
  msgstr ""
4938
5137
 
5138
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5139
+ msgstr ""
5140
+
4939
5141
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
4940
5142
  msgstr ""
4941
5143
 
@@ -4960,6 +5162,15 @@ msgstr ""
4960
5162
  msgid "Value must either be a boolean or 'default' for 'enabled'"
4961
5163
  msgstr ""
4962
5164
 
5165
+ msgid "Verify checksum"
5166
+ msgstr ""
5167
+
5168
+ msgid "Verify checksum for one or more products"
5169
+ msgstr ""
5170
+
5171
+ msgid "Verify checksum of repository contents"
5172
+ msgstr ""
5173
+
4963
5174
  msgid "Version"
4964
5175
  msgstr ""
4965
5176
 
@@ -4975,7 +5186,7 @@ msgstr ""
4975
5186
  msgid "Virtual"
4976
5187
  msgstr ""
4977
5188
 
4978
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5189
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
4979
5190
  msgstr ""
4980
5191
 
4981
5192
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5044,6 +5255,9 @@ msgstr ""
5044
5255
  msgid "You currently don't have any Content Views."
5045
5256
  msgstr ""
5046
5257
 
5258
+ msgid "You currently don't have any repositories to add to this content view."
5259
+ msgstr ""
5260
+
5047
5261
  msgid "You do not have permissions to delete %s"
5048
5262
  msgstr ""
5049
5263
 
@@ -5149,6 +5363,9 @@ msgstr ""
5149
5363
  msgid "an ostree branch"
5150
5364
  msgstr ""
5151
5365
 
5366
+ msgid "are only allowed for Yum repositories."
5367
+ msgstr ""
5368
+
5152
5369
  msgid "attempted to sync without a feed URL"
5153
5370
  msgstr ""
5154
5371
 
@@ -5167,6 +5384,9 @@ msgstr ""
5167
5384
  msgid "can't be blank"
5168
5385
  msgstr ""
5169
5386
 
5387
+ msgid "cannot add filter to import-only view"
5388
+ msgstr ""
5389
+
5170
5390
  msgid "cannot be a binary file."
5171
5391
  msgstr ""
5172
5392
 
@@ -5221,13 +5441,13 @@ msgstr ""
5221
5441
  msgid "checking Pulp task status"
5222
5442
  msgstr ""
5223
5443
 
5224
- msgid "comma separated list of architectures to be synched from deb-archive"
5444
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5225
5445
  msgstr ""
5226
5446
 
5227
- msgid "comma separated list of releases to be synched from deb-archive"
5447
+ msgid "comma-separated list of releases to be synced from deb-archive"
5228
5448
  msgstr ""
5229
5449
 
5230
- msgid "comma separated list of repo components to be synched from deb-archive"
5450
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5231
5451
  msgstr ""
5232
5452
 
5233
5453
  msgid "composite content view identifier"
@@ -5455,9 +5675,6 @@ msgstr ""
5455
5675
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5456
5676
  msgstr ""
5457
5677
 
5458
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5459
- msgstr ""
5460
-
5461
5678
  msgid "if true, will ignore the globally configured proxy when syncing"
5462
5679
  msgstr ""
5463
5680
 
@@ -5491,6 +5708,9 @@ msgstr ""
5491
5708
  msgid "invalid container image name"
5492
5709
  msgstr ""
5493
5710
 
5711
+ msgid "invalid: Repositories can only require one OS version."
5712
+ msgstr ""
5713
+
5494
5714
  msgid "is already attached to the capsule"
5495
5715
  msgstr ""
5496
5716
 
@@ -5530,6 +5750,9 @@ msgstr ""
5530
5750
  msgid "maximum size of each ISO in MB"
5531
5751
  msgstr ""
5532
5752
 
5753
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5754
+ msgstr ""
5755
+
5533
5756
  msgid "may not be less than the number of hosts associated with the host collection."
5534
5757
  msgstr ""
5535
5758
 
@@ -5551,6 +5774,9 @@ msgstr ""
5551
5774
  msgid "must be one of the following: %s"
5552
5775
  msgstr ""
5553
5776
 
5777
+ msgid "must be one of: %s"
5778
+ msgstr ""
5779
+
5554
5780
  msgid "must be unique within one organization"
5555
5781
  msgstr ""
5556
5782
 
@@ -5803,6 +6029,9 @@ msgstr ""
5803
6029
  msgid "the uuid of the puppet module to associate"
5804
6030
  msgstr ""
5805
6031
 
6032
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6033
+ msgstr ""
6034
+
5806
6035
  msgid "true if the latest version of the component's content view is desired"
5807
6036
  msgstr ""
5808
6037