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
 
@@ -344,12 +349,18 @@ msgstr ""
344
349
  msgid "Action with sub plans"
345
350
  msgstr ""
346
351
 
352
+ msgid "Activation Key(s)"
353
+ msgstr ""
354
+
347
355
  msgid "Activation Keys"
348
356
  msgstr "Chiavi di attivazione"
349
357
 
350
358
  msgid "Activation key ID"
351
359
  msgstr "ID chiave di attivazione"
352
360
 
361
+ 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."
362
+ msgstr ""
363
+
353
364
  msgid "Activation keys and subscriptions can be managed"
354
365
  msgstr "È possibile gestire le chiavi di attivazione e le sottoscrizioni."
355
366
 
@@ -401,6 +412,9 @@ msgstr "Contenuto aggiunto:"
401
412
  msgid "Adding content units"
402
413
  msgstr ""
403
414
 
415
+ 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}"
416
+ msgstr ""
417
+
404
418
  msgid "Addons"
405
419
  msgstr ""
406
420
 
@@ -505,6 +519,9 @@ msgstr ""
505
519
  msgid "Artifacts"
506
520
  msgstr ""
507
521
 
522
+ msgid "Assign system purpose attributes on one or more hosts"
523
+ msgstr ""
524
+
508
525
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
509
526
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
510
527
  msgstr[0] "Assegna %{count} host senza %{taxonomy_single} a %{taxonomy_name}"
@@ -550,9 +567,6 @@ msgstr ""
550
567
  msgid "Author"
551
568
  msgstr ""
552
569
 
553
- msgid "Auto Enablement may only be set on custom repositories."
554
- msgstr ""
555
-
556
570
  msgid "Auto Publish - Triggered by '%s'"
557
571
  msgstr ""
558
572
 
@@ -762,6 +776,9 @@ msgstr ""
762
776
  msgid "Cannot delete view while it exists in environments"
763
777
  msgstr "Impossibile cancellare la visuale mentre la stessa abbandona gli ambienti"
764
778
 
779
+ msgid "Cannot import a composite content view"
780
+ msgstr ""
781
+
765
782
  msgid "Cannot import a custom subscription from a redhat product."
766
783
  msgstr ""
767
784
 
@@ -817,12 +834,18 @@ msgstr ""
817
834
  msgid "Cannot upload Container Image content."
818
835
  msgstr ""
819
836
 
837
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
838
+ msgstr ""
839
+
820
840
  msgid "Cannot validate contents on non-yum/deb repositories."
821
841
  msgstr ""
822
842
 
823
843
  msgid "Check if a connection can be made to Red Hat Subscription Management."
824
844
  msgstr ""
825
845
 
846
+ msgid "Check if the specified organization is eligible for Simple Content Access"
847
+ msgstr ""
848
+
826
849
  msgid "Check services before actions"
827
850
  msgstr ""
828
851
 
@@ -858,7 +881,7 @@ msgstr ""
858
881
  msgid "Combined Profile Update for %s"
859
882
  msgstr ""
860
883
 
861
- msgid "Comma separated list of tags to sync for Container Image repository"
884
+ msgid "Comma-separated list of tags to sync for Container Image repository"
862
885
  msgstr ""
863
886
 
864
887
  # translation auto-copied from project [RHEL] [STORAGE] DM Multipath, version 6.4, document MPIO_Overview
@@ -914,9 +937,15 @@ msgstr ""
914
937
  msgid "Content Download URL"
915
938
  msgstr ""
916
939
 
940
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
941
+ msgstr ""
942
+
917
943
  msgid "Content Hosts"
918
944
  msgstr "Host di contenuto"
919
945
 
946
+ msgid "Content Migration"
947
+ msgstr ""
948
+
920
949
  msgid "Content Source"
921
950
  msgstr "Sorgente contenuto"
922
951
 
@@ -968,9 +997,15 @@ msgstr ""
968
997
  msgid "Content View Version not set"
969
998
  msgstr ""
970
999
 
1000
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1001
+ msgstr ""
1002
+
971
1003
  msgid "Content View and Environment not set for registration."
972
1004
  msgstr ""
973
1005
 
1006
+ msgid "Content View id"
1007
+ msgstr ""
1008
+
974
1009
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
975
1010
  msgid "Content Views"
976
1011
  msgstr "Visualizzazioni contenuto"
@@ -1009,6 +1044,9 @@ msgstr "Etichetta visualizzazione del contenuto"
1009
1044
  msgid "Content view numeric identifier"
1010
1045
  msgstr "Indentificatore numerico per la visualizzazione del contenuto"
1011
1046
 
1047
+ msgid "Content view version export history identifier"
1048
+ msgstr ""
1049
+
1012
1050
  msgid "Content view version identifier"
1013
1051
  msgstr "Indentificatore versione della visualizzazione del contenuto"
1014
1052
 
@@ -1030,12 +1068,12 @@ msgstr ""
1030
1068
  msgid "Copy an activation key"
1031
1069
  msgstr "Copia una chiave di attivazione"
1032
1070
 
1071
+ msgid "Copy version units to library"
1072
+ msgstr ""
1073
+
1033
1074
  msgid "Cores: %s"
1034
1075
  msgstr "Core: %s"
1035
1076
 
1036
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1037
- msgstr ""
1038
-
1039
1077
  msgid "Could not delete organization '%s'."
1040
1078
  msgstr "Impossibile cancellare l'organizzazione '%s'."
1041
1079
 
@@ -1045,6 +1083,12 @@ msgstr "Impossibile trovare %{content} con id '%{id}' nel repository."
1045
1083
  msgid "Could not find %{count} errata. Only found: %{found}"
1046
1084
  msgstr ""
1047
1085
 
1086
+ msgid "Could not find %{name} resource with id %{id}"
1087
+ msgstr ""
1088
+
1089
+ msgid "Could not find %{name} resources with ids %{ids}"
1090
+ msgstr ""
1091
+
1048
1092
  msgid "Could not find Environment with ids: %s"
1049
1093
  msgstr "Impossibile trovare l'ambiente con id: %s"
1050
1094
 
@@ -1078,9 +1122,6 @@ msgstr ""
1078
1122
  msgid "Couldn't find %{type} Filter with id %{id}"
1079
1123
  msgstr "Impossibile trovare il filtro %{type} con id %{id}"
1080
1124
 
1081
- msgid "Couldn't find Content Credential '%s'"
1082
- msgstr ""
1083
-
1084
1125
  msgid "Couldn't find ContentViewFilter with id=%s"
1085
1126
  msgstr "Impossibile trovare ContentViewFilter con id=%s"
1086
1127
 
@@ -1127,12 +1168,6 @@ msgstr "Impossibile trovare l'ambiente '%s'"
1127
1168
  msgid "Couldn't find errata ids '%s'"
1128
1169
  msgstr "Impossibile trovare gli id '%s' dell'errata"
1129
1170
 
1130
- msgid "Couldn't find gpg key '%s'"
1131
- msgstr "Impossibile trovare la chiave gpg '%s'"
1132
-
1133
- msgid "Couldn't find host '%s'"
1134
- msgstr ""
1135
-
1136
1171
  msgid "Couldn't find host collection '%s'"
1137
1172
  msgstr "Impossibile trovare l'insieme di host di contenuto '%s'"
1138
1173
 
@@ -1145,36 +1180,18 @@ msgstr "Impossibile trovare l'organizzazione '%s'"
1145
1180
  msgid "Couldn't find prior-environment '%s'"
1146
1181
  msgstr "Impossibile trovare l'ambiente precendete '%s'"
1147
1182
 
1148
- msgid "Couldn't find product '%s'"
1149
- msgstr "Impossibile trovare il prodotto '%s'"
1150
-
1151
1183
  msgid "Couldn't find product with id '%s'"
1152
1184
  msgstr "Impossibile trovare il prodotto con id '%s'"
1153
1185
 
1154
1186
  msgid "Couldn't find repository '%s'"
1155
1187
  msgstr "Impossibile trovare il repositorio '%s'"
1156
1188
 
1157
- msgid "Couldn't find repository set with id '%s'."
1158
- msgstr "Impossibile trovare l'insieme del repositorio con id '%s'."
1159
-
1160
1189
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1161
1190
  msgstr ""
1162
1191
 
1163
- msgid "Couldn't find ssl ca cert '%s'"
1164
- msgstr ""
1165
-
1166
- msgid "Couldn't find ssl client cert '%s'"
1167
- msgstr ""
1168
-
1169
- msgid "Couldn't find ssl client key '%s'"
1170
- msgstr ""
1171
-
1172
1192
  msgid "Couldn't find subject of synchronization"
1173
1193
  msgstr "Impossibile trovare il soggetto della sincronizzazione"
1174
1194
 
1175
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1176
- msgstr "Impossibile trovare la programmazione per la sincronizzazione '%{plan}' nell'organizzazione '%{org}'"
1177
-
1178
1195
  msgid "Count"
1179
1196
  msgstr ""
1180
1197
 
@@ -1245,6 +1262,9 @@ msgstr ""
1245
1262
  msgid "Current organization not set."
1246
1263
  msgstr ""
1247
1264
 
1265
+ msgid "Custom"
1266
+ msgstr ""
1267
+
1248
1268
  msgid "Custom Content Repositories"
1249
1269
  msgstr "Repositori del contenuto personalizzati"
1250
1270
 
@@ -1452,9 +1472,15 @@ msgstr "Descrizione per la nuova versione della visualizzazione del contenuto pu
1452
1472
  msgid "Description of the repository"
1453
1473
  msgstr ""
1454
1474
 
1475
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1476
+ msgstr ""
1477
+
1455
1478
  msgid "Desired quantity of the pool"
1456
1479
  msgstr ""
1457
1480
 
1481
+ msgid "Destination Server name"
1482
+ msgstr ""
1483
+
1458
1484
  msgid "Destroy"
1459
1485
  msgstr "Elimina"
1460
1486
 
@@ -1506,6 +1532,9 @@ msgstr "Dettagli"
1506
1532
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1507
1533
  msgstr ""
1508
1534
 
1535
+ msgid "Directory containing the exported Content View Version"
1536
+ msgstr ""
1537
+
1509
1538
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author fvalen
1510
1539
  msgid "Disable"
1511
1540
  msgstr "Disabilita"
@@ -1522,6 +1551,9 @@ msgstr ""
1522
1551
  msgid "Disable simple content access for a manifest"
1523
1552
  msgstr ""
1524
1553
 
1554
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1555
+ msgstr ""
1556
+
1525
1557
  msgid "Disconnected mode"
1526
1558
  msgstr ""
1527
1559
 
@@ -1606,6 +1638,9 @@ msgstr ""
1606
1638
  msgid "Enabled Repositories"
1607
1639
  msgstr ""
1608
1640
 
1641
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1642
+ msgstr ""
1643
+
1609
1644
  msgid "End Date"
1610
1645
  msgstr ""
1611
1646
 
@@ -1716,7 +1751,10 @@ msgstr ""
1716
1751
  msgid "Export CSV"
1717
1752
  msgstr ""
1718
1753
 
1719
- msgid "Export a content view version"
1754
+ msgid "Export Library"
1755
+ msgstr ""
1756
+
1757
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1720
1758
  msgstr ""
1721
1759
 
1722
1760
  msgid "Export a repository"
@@ -1725,9 +1763,15 @@ msgstr ""
1725
1763
  msgid "Export as CSV"
1726
1764
  msgstr ""
1727
1765
 
1766
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1767
+ msgstr ""
1768
+
1728
1769
  msgid "Export to ISO format"
1729
1770
  msgstr ""
1730
1771
 
1772
+ msgid "Export to ISO format."
1773
+ msgstr ""
1774
+
1731
1775
  msgid "Exported version"
1732
1776
  msgstr ""
1733
1777
 
@@ -1869,10 +1913,6 @@ msgstr ""
1869
1913
  msgid "GPG Key URL"
1870
1914
  msgstr ""
1871
1915
 
1872
- # translation auto-copied from project PressGang CCMS topics, version 1, document 31337-708757, author fvalen
1873
- msgid "GPG Keys"
1874
- msgstr "Chiavi GPG"
1875
-
1876
1916
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
1877
1917
  msgid "Generate and Download"
1878
1918
  msgstr "Genera e scarica"
@@ -1979,6 +2019,9 @@ msgstr "L'insieme di host è vuoto."
1979
2019
  msgid "Host content and subscription details"
1980
2020
  msgstr "Contenuto host e informazioni sulla sottoscrizione"
1981
2021
 
2022
+ 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."
2023
+ msgstr ""
2024
+
1982
2025
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1983
2026
  msgstr ""
1984
2027
 
@@ -2003,6 +2046,9 @@ msgstr ""
2003
2046
  msgid "Host id to list applicable packages for"
2004
2047
  msgstr ""
2005
2048
 
2049
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2050
+ msgstr ""
2051
+
2006
2052
  msgid "Host with ID %s already exists in the host collection."
2007
2053
  msgstr ""
2008
2054
 
@@ -2156,6 +2202,9 @@ msgstr ""
2156
2202
  msgid "Identifiers for Lifecycle Environment"
2157
2203
  msgstr ""
2158
2204
 
2205
+ 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"
2206
+ msgstr ""
2207
+
2159
2208
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2160
2209
  msgstr ""
2161
2210
 
@@ -2198,6 +2247,15 @@ msgstr ""
2198
2247
  msgid "Immediate"
2199
2248
  msgstr ""
2200
2249
 
2250
+ msgid "Import"
2251
+ msgstr ""
2252
+
2253
+ msgid "Import Content View Version"
2254
+ msgstr ""
2255
+
2256
+ msgid "Import Default Content View"
2257
+ msgstr ""
2258
+
2201
2259
  msgid "Import Manifest"
2202
2260
  msgstr "Importa manifesto"
2203
2261
 
@@ -2219,12 +2277,27 @@ msgstr ""
2219
2277
  msgid "Import a Manifest using the manifest tab above."
2220
2278
  msgstr ""
2221
2279
 
2280
+ msgid "Import a content view version"
2281
+ msgstr ""
2282
+
2283
+ msgid "Import a content view version to the library"
2284
+ msgstr ""
2285
+
2222
2286
  msgid "Import facts"
2223
2287
  msgstr "Importa gli eventi"
2224
2288
 
2225
2289
  msgid "Import uploads into a repository"
2226
2290
  msgstr "Importa caricamento in un repositorio"
2227
2291
 
2292
+ msgid "Import-only can not be changed after creation"
2293
+ msgstr ""
2294
+
2295
+ msgid "Import-only content views can not be published directly"
2296
+ msgstr ""
2297
+
2298
+ msgid "Import-only content views will be available in a future version."
2299
+ msgstr ""
2300
+
2228
2301
  msgid "Importing manifest into '%{subject}' failed."
2229
2302
  msgstr ""
2230
2303
 
@@ -2399,6 +2472,9 @@ msgstr ""
2399
2472
  msgid "Invalid params provided - date_type must be one of %s"
2400
2473
  msgstr ""
2401
2474
 
2475
+ msgid "Invalid path specified."
2476
+ msgstr ""
2477
+
2402
2478
  msgid ""
2403
2479
  "Invalid puppet module parameters specified. \\\n"
2404
2480
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2407,6 +2483,12 @@ msgstr ""
2407
2483
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2408
2484
  msgstr "Modulo puppet non valido. Assicurarsi che il modulo puppet contenga il file metadata.json e che lo stesso sia stato compresso correttamente."
2409
2485
 
2486
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2487
+ msgstr ""
2488
+
2489
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2490
+ msgstr ""
2491
+
2410
2492
  msgid "Invalid value specified for Container Image repositories."
2411
2493
  msgstr ""
2412
2494
 
@@ -2416,6 +2498,9 @@ msgstr ""
2416
2498
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2417
2499
  msgstr ""
2418
2500
 
2501
+ msgid "Katello"
2502
+ msgstr ""
2503
+
2419
2504
  msgid "Katello ID of local pool to update"
2420
2505
  msgstr ""
2421
2506
 
@@ -2476,9 +2561,6 @@ msgstr ""
2476
2561
  msgid "Learn more about adding Subscription Manifests"
2477
2562
  msgstr ""
2478
2563
 
2479
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2480
- msgstr ""
2481
-
2482
2564
  msgid "Library lifecycle environments may not be deleted."
2483
2565
  msgstr "Gli ambienti ciclo di vita e libreria non possono essere rimossi."
2484
2566
 
@@ -2578,6 +2660,9 @@ msgstr "Elenca gli errata"
2578
2660
  msgid "List errata available for the content host"
2579
2661
  msgstr "Elenca gli errata disponibili per l'host di contenuto"
2580
2662
 
2663
+ msgid "List export histories"
2664
+ msgstr ""
2665
+
2581
2666
  msgid "List filter rules"
2582
2667
  msgstr "Elenca le regole del filtro"
2583
2668
 
@@ -2731,6 +2816,9 @@ msgstr ""
2731
2816
  msgid "List srpms"
2732
2817
  msgstr ""
2733
2818
 
2819
+ msgid "List subscriptions"
2820
+ msgstr ""
2821
+
2734
2822
  msgid "List sync plans"
2735
2823
  msgstr "Elenca le programmazioni per la sincronizzazione"
2736
2824
 
@@ -2819,6 +2907,9 @@ msgstr "Messaggio"
2819
2907
  msgid "Messaging connection"
2820
2908
  msgstr ""
2821
2909
 
2910
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2911
+ msgstr ""
2912
+
2822
2913
  msgid "Mismatched"
2823
2914
  msgstr ""
2824
2915
 
@@ -2950,6 +3041,9 @@ msgstr ""
2950
3041
  msgid "No errors"
2951
3042
  msgstr "Nessun errore "
2952
3043
 
3044
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3045
+ msgstr ""
3046
+
2953
3047
  msgid "No file uploaded"
2954
3048
  msgstr "Nessun file caricato"
2955
3049
 
@@ -2962,12 +3056,18 @@ msgstr ""
2962
3056
  msgid "No hosts registered with subscription-manager found in selection."
2963
3057
  msgstr ""
2964
3058
 
3059
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3060
+ msgstr ""
3061
+
2965
3062
  msgid "No manifest file uploaded"
2966
3063
  msgstr "Nessun file del manifesto caricato"
2967
3064
 
2968
3065
  msgid "No matching content views found"
2969
3066
  msgstr ""
2970
3067
 
3068
+ msgid "No matching repositories found"
3069
+ msgstr ""
3070
+
2971
3071
  msgid "No new packages installed"
2972
3072
  msgstr "Nessun nuovo pacchetto installato"
2973
3073
 
@@ -3103,6 +3203,9 @@ msgstr ""
3103
3203
  msgid "On-disk location for exported repositories"
3104
3204
  msgstr ""
3105
3205
 
3206
+ msgid "On-disk location for pulp 3 exported repositories"
3207
+ msgstr ""
3208
+
3106
3209
  msgid "One of parameters [ %s ] required but not specified."
3107
3210
  msgstr "Uno dei parametri [ %s ] necessario ma non specificato."
3108
3211
 
@@ -3134,6 +3237,9 @@ msgstr "Operatori"
3134
3237
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3135
3238
  msgstr ""
3136
3239
 
3240
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3241
+ msgstr ""
3242
+
3137
3243
  msgid "Organization"
3138
3244
  msgstr "Organizzazione"
3139
3245
 
@@ -3371,6 +3477,18 @@ msgstr ""
3371
3477
  msgid "Perform an Incremental Update on one or more Content View Versions"
3372
3478
  msgstr "Esegui un aggiornamento incrementale su una o più versioni della visualizzazione del contenuto"
3373
3479
 
3480
+ msgid "Performs a full-export of a content view version."
3481
+ msgstr ""
3482
+
3483
+ msgid "Performs a full-export of the repositories in library."
3484
+ msgstr ""
3485
+
3486
+ msgid "Performs an incremental-export of a content view version."
3487
+ msgstr ""
3488
+
3489
+ msgid "Performs an incremental-export of the repositories in library."
3490
+ msgstr ""
3491
+
3374
3492
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3375
3493
  msgstr "Permesso negato. L'utente '%{user}' non presenta alcun permesso per accedere all'organizzazione '%{org}'. "
3376
3494
 
@@ -3381,6 +3499,9 @@ msgstr "Fisico"
3381
3499
  msgid "Plan numeric identifier"
3382
3500
  msgstr "Identificatore numerico della programmazione"
3383
3501
 
3502
+ msgid "Please add some repositories."
3503
+ msgstr ""
3504
+
3384
3505
  msgid "Please enter a positive number above zero"
3385
3506
  msgstr ""
3386
3507
 
@@ -3408,6 +3529,9 @@ msgstr ""
3408
3529
  msgid "Please select one from the list below and you will be redirected."
3409
3530
  msgstr ""
3410
3531
 
3532
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3533
+ msgstr ""
3534
+
3411
3535
  msgid "Processing metadata"
3412
3536
  msgstr "Processazione metadati"
3413
3537
 
@@ -3514,6 +3638,9 @@ msgstr ""
3514
3638
  msgid "Pulp"
3515
3639
  msgstr ""
3516
3640
 
3641
+ msgid "Pulp 3 export destination filepath"
3642
+ msgstr ""
3643
+
3517
3644
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3518
3645
  msgstr ""
3519
3646
 
@@ -3568,6 +3695,12 @@ msgstr ""
3568
3695
  msgid "Pulp task error"
3569
3696
  msgstr "Errore attività di Pulp"
3570
3697
 
3698
+ msgid "Pulp user or group unable to read '%s'."
3699
+ msgstr ""
3700
+
3701
+ msgid "Pulp user or group unable to read content in '%s'."
3702
+ msgstr ""
3703
+
3571
3704
  msgid "Pulpcore"
3572
3705
  msgstr ""
3573
3706
 
@@ -3644,6 +3777,9 @@ msgstr ""
3644
3777
  msgid "Recommended Repositories"
3645
3778
  msgstr ""
3646
3779
 
3780
+ msgid "Red Hat"
3781
+ msgstr ""
3782
+
3647
3783
  msgid "Red Hat CDN URL"
3648
3784
  msgstr "Red Hat CDN URL"
3649
3785
 
@@ -3864,6 +4000,9 @@ msgstr ""
3864
4000
  msgid "Resolve Traces"
3865
4001
  msgstr ""
3866
4002
 
4003
+ msgid "Resolve traces for one or more hosts"
4004
+ msgstr ""
4005
+
3867
4006
  msgid "Resource"
3868
4007
  msgstr ""
3869
4008
 
@@ -3943,6 +4082,9 @@ msgstr "Ritorna il contenuto di una chiave gpg del repositorio usata direttament
3943
4082
  msgid "Role"
3944
4083
  msgstr ""
3945
4084
 
4085
+ msgid "Role of host"
4086
+ msgstr ""
4087
+
3946
4088
  msgid "Run Sync Plan:"
3947
4089
  msgstr ""
3948
4090
 
@@ -4043,6 +4185,9 @@ msgstr "Livello %s del servizio"
4043
4185
  msgid "Service Level (SLA)"
4044
4186
  msgstr ""
4045
4187
 
4188
+ msgid "Service level of host"
4189
+ msgstr ""
4190
+
4046
4191
  msgid "Service level to be used for autoheal"
4047
4192
  msgstr ""
4048
4193
 
@@ -4146,6 +4291,15 @@ msgstr "Mostra le informazioni sulla versione"
4146
4291
  msgid "Simple Content Access"
4147
4292
  msgstr ""
4148
4293
 
4294
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4295
+ msgstr ""
4296
+
4297
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4298
+ msgstr ""
4299
+
4300
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4301
+ msgstr ""
4302
+
4149
4303
  msgid "Size of file to upload"
4150
4304
  msgstr ""
4151
4305
 
@@ -4180,6 +4334,9 @@ msgstr ""
4180
4334
  msgid "Specify the list of units in each repo"
4181
4335
  msgstr ""
4182
4336
 
4337
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4338
+ msgstr ""
4339
+
4183
4340
  msgid "Stacking ID"
4184
4341
  msgstr ""
4185
4342
 
@@ -4391,6 +4548,9 @@ msgstr "Sincronizza uno o più prodotti"
4391
4548
  msgid "Sync plan identifier to attach"
4392
4549
  msgstr "identificatore programmazione della sincronizzazione da assegnare"
4393
4550
 
4551
+ msgid "Sync state"
4552
+ msgstr ""
4553
+
4394
4554
  msgid "Synced Content"
4395
4555
  msgstr ""
4396
4556
 
@@ -4453,6 +4613,9 @@ msgstr "L'ambiente '%s' non può contenere un changeset!"
4453
4613
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4454
4614
  msgstr ""
4455
4615
 
4616
+ msgid "The TOC file specified in the metadata does not exist. %s "
4617
+ msgstr ""
4618
+
4456
4619
  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."
4457
4620
  msgstr ""
4458
4621
 
@@ -4492,15 +4655,26 @@ msgstr "La data d'inizio della regola del filtro dell'erratum non ha un formato
4492
4655
  msgid "The erratum type must be an array. Invalid value provided"
4493
4656
  msgstr "Il tipo di erratum deve essere un array. È stato fornito un valore non valido"
4494
4657
 
4658
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4659
+ msgstr ""
4660
+
4495
4661
  msgid "The field to sort the data by. Defaults to the created date."
4496
4662
  msgstr ""
4497
4663
 
4498
4664
  msgid "The following hosts have errata that apply to them: "
4499
4665
  msgstr "I seguenti host dispongono di errata da applicare:"
4500
4666
 
4667
+ msgid ""
4668
+ "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"
4669
+ " %{repos}"
4670
+ msgstr ""
4671
+
4501
4672
  msgid "The id of the host to alter"
4502
4673
  msgstr ""
4503
4674
 
4675
+ msgid "The import path must be in a subdirectory under '%s'."
4676
+ msgstr ""
4677
+
4504
4678
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4505
4679
  msgstr ""
4506
4680
 
@@ -4549,6 +4723,9 @@ msgstr ""
4549
4723
  msgid "The requested resource does not belong to the specified organization"
4550
4724
  msgstr ""
4551
4725
 
4726
+ msgid "The requested traces were not found for this host"
4727
+ msgstr ""
4728
+
4552
4729
  msgid "The selected content source and lifecycle environment do not match"
4553
4730
  msgstr ""
4554
4731
 
@@ -4612,6 +4789,9 @@ msgstr ""
4612
4789
  msgid "There's no running synchronization for this smart proxy."
4613
4790
  msgstr ""
4614
4791
 
4792
+ msgid "This Content View must be set to Import-only before performing an import"
4793
+ msgstr ""
4794
+
4615
4795
  msgid "This Host is not currently registered with subscription-manager."
4616
4796
  msgstr ""
4617
4797
 
@@ -4621,6 +4801,9 @@ msgstr ""
4621
4801
  msgid "This action doesn't support package groups"
4622
4802
  msgstr ""
4623
4803
 
4804
+ msgid "This action will become available after the Pulp 3 content migration"
4805
+ msgstr ""
4806
+
4624
4807
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4625
4808
  msgstr "Questo certificato permette all'utente di visualizzare i repositori in qualsiasi ambiente del browser."
4626
4809
 
@@ -4751,10 +4934,16 @@ msgstr ""
4751
4934
  msgid "Unable to detect puppet path"
4752
4935
  msgstr ""
4753
4936
 
4754
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4937
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4755
4938
  msgstr ""
4756
4939
 
4757
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4940
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4941
+ msgstr ""
4942
+
4943
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4944
+ msgstr ""
4945
+
4946
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4758
4947
  msgstr ""
4759
4948
 
4760
4949
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -4969,6 +5158,12 @@ msgstr ""
4969
5158
  msgid "Updating Package..."
4970
5159
  msgstr "Aggiornamento pacchetto in corso..."
4971
5160
 
5161
+ msgid "Updating System Purpose for host"
5162
+ msgstr ""
5163
+
5164
+ msgid "Updating System Purpose for host %s"
5165
+ msgstr ""
5166
+
4972
5167
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
4973
5168
  msgid "Updating package group..."
4974
5169
  msgstr "Aggiornamento gruppo di pacchetti..."
@@ -5024,9 +5219,15 @@ msgstr ""
5024
5219
  msgid "Usage Type"
5025
5220
  msgstr ""
5026
5221
 
5222
+ msgid "Usage of host"
5223
+ msgstr ""
5224
+
5027
5225
  msgid "Use remote execution by default"
5028
5226
  msgstr ""
5029
5227
 
5228
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5229
+ msgstr ""
5230
+
5030
5231
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5031
5232
  msgstr "L'utente '%s' non ha specificato alcun ID per l'organizzazione e non ha alcuna organizzazione predefinita."
5032
5233
 
@@ -5051,6 +5252,15 @@ msgstr ""
5051
5252
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5052
5253
  msgstr ""
5053
5254
 
5255
+ msgid "Verify checksum"
5256
+ msgstr ""
5257
+
5258
+ msgid "Verify checksum for one or more products"
5259
+ msgstr ""
5260
+
5261
+ msgid "Verify checksum of repository contents"
5262
+ msgstr ""
5263
+
5054
5264
  msgid "Version"
5055
5265
  msgstr ""
5056
5266
 
@@ -5068,7 +5278,7 @@ msgstr ""
5068
5278
  msgid "Virtual"
5069
5279
  msgstr "Virtuale"
5070
5280
 
5071
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5281
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5072
5282
  msgstr ""
5073
5283
 
5074
5284
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5137,6 +5347,9 @@ msgstr "Impossibile impostare parent_id sull'organizzazione. Questa funzione è
5137
5347
  msgid "You currently don't have any Content Views."
5138
5348
  msgstr ""
5139
5349
 
5350
+ msgid "You currently don't have any repositories to add to this content view."
5351
+ msgstr ""
5352
+
5140
5353
  msgid "You do not have permissions to delete %s"
5141
5354
  msgstr "Non sei in possesso dei permessi necessari per eliminare %s"
5142
5355
 
@@ -5242,6 +5455,9 @@ msgstr "una organizzazione"
5242
5455
  msgid "an ostree branch"
5243
5456
  msgstr ""
5244
5457
 
5458
+ msgid "are only allowed for Yum repositories."
5459
+ msgstr ""
5460
+
5245
5461
  msgid "attempted to sync without a feed URL"
5246
5462
  msgstr ""
5247
5463
 
@@ -5260,6 +5476,9 @@ msgstr ""
5260
5476
  msgid "can't be blank"
5261
5477
  msgstr "non può essere vuoto"
5262
5478
 
5479
+ msgid "cannot add filter to import-only view"
5480
+ msgstr ""
5481
+
5263
5482
  msgid "cannot be a binary file."
5264
5483
  msgstr "non può essere un file binario."
5265
5484
 
@@ -5315,13 +5534,13 @@ msgstr ""
5315
5534
  msgid "checking Pulp task status"
5316
5535
  msgstr ""
5317
5536
 
5318
- msgid "comma separated list of architectures to be synched from deb-archive"
5537
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5319
5538
  msgstr ""
5320
5539
 
5321
- msgid "comma separated list of releases to be synched from deb-archive"
5540
+ msgid "comma-separated list of releases to be synced from deb-archive"
5322
5541
  msgstr ""
5323
5542
 
5324
- msgid "comma separated list of repo components to be synched from deb-archive"
5543
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5325
5544
  msgstr ""
5326
5545
 
5327
5546
  msgid "composite content view identifier"
@@ -5550,9 +5769,6 @@ msgstr ""
5550
5769
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5551
5770
  msgstr ""
5552
5771
 
5553
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5554
- msgstr ""
5555
-
5556
5772
  msgid "if true, will ignore the globally configured proxy when syncing"
5557
5773
  msgstr ""
5558
5774
 
@@ -5586,6 +5802,9 @@ msgstr ""
5586
5802
  msgid "invalid container image name"
5587
5803
  msgstr ""
5588
5804
 
5805
+ msgid "invalid: Repositories can only require one OS version."
5806
+ msgstr ""
5807
+
5589
5808
  msgid "is already attached to the capsule"
5590
5809
  msgstr "è già assegnato a questo capsule"
5591
5810
 
@@ -5625,6 +5844,9 @@ msgstr "numero massimo degli host di contenuto registrati"
5625
5844
  msgid "maximum size of each ISO in MB"
5626
5845
  msgstr ""
5627
5846
 
5847
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5848
+ msgstr ""
5849
+
5628
5850
  msgid "may not be less than the number of hosts associated with the host collection."
5629
5851
  msgstr ""
5630
5852
 
@@ -5646,6 +5868,9 @@ msgstr "deve essere un valore intero positivo."
5646
5868
  msgid "must be one of the following: %s"
5647
5869
  msgstr "deve essere uno dei seguenti: %s"
5648
5870
 
5871
+ msgid "must be one of: %s"
5872
+ msgstr ""
5873
+
5649
5874
  msgid "must be unique within one organization"
5650
5875
  msgstr "deve essere unico all'interno di una organizzazione"
5651
5876
 
@@ -5903,6 +6128,9 @@ msgstr ""
5903
6128
  msgid "the uuid of the puppet module to associate"
5904
6129
  msgstr "uuid del modulo puppet da associare"
5905
6130
 
6131
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6132
+ msgstr ""
6133
+
5906
6134
  msgid "true if the latest version of the component's content view is desired"
5907
6135
  msgstr ""
5908
6136