katello 3.17.3 → 3.18.0.rc1

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

Potentially problematic release.


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

Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
  5. data/app/controllers/katello/api/v2/api_controller.rb +2 -1
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  8. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
  10. data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
  11. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  12. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  13. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  14. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
  15. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
  17. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  19. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  20. data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
  21. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  22. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  23. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  24. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  25. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  26. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  27. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
  28. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
  29. data/app/lib/actions/katello/content_view/publish.rb +3 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +4 -3
  31. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  32. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  33. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  34. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  35. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  36. data/app/lib/actions/katello/product/content_create.rb +7 -6
  37. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  38. data/app/lib/actions/katello/repository/import_upload.rb +2 -1
  39. data/app/lib/actions/katello/repository/update.rb +4 -1
  40. data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
  41. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  42. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  43. data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
  44. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  45. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
  46. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  47. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  48. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  49. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  51. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  52. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  53. data/app/lib/katello/resources/registry.rb +3 -3
  54. data/app/models/katello/authorization/activation_key.rb +4 -0
  55. data/app/models/katello/authorization/content_view.rb +13 -0
  56. data/app/models/katello/authorization/content_view_component.rb +15 -0
  57. data/app/models/katello/authorization/gpg_key.rb +12 -4
  58. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  59. data/app/models/katello/authorization/sync_plan.rb +16 -0
  60. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  61. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  62. data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
  63. data/app/models/katello/content_view_component.rb +2 -0
  64. data/app/models/katello/content_view_version_export_history.rb +2 -0
  65. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  66. data/app/models/katello/glue/pulp/repo.rb +8 -0
  67. data/app/models/katello/gpg_key.rb +1 -1
  68. data/app/models/katello/root_repository.rb +26 -1
  69. data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
  70. data/app/services/katello/candlepin/event_handler.rb +2 -0
  71. data/app/services/katello/candlepin/message_handler.rb +34 -0
  72. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  73. data/app/services/katello/host_status_manager.rb +9 -0
  74. data/app/services/katello/pulp3/api/apt.rb +57 -0
  75. data/app/services/katello/pulp3/api/core.rb +8 -0
  76. data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
  77. data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
  78. data/app/services/katello/pulp3/deb.rb +38 -0
  79. data/app/services/katello/pulp3/erratum.rb +1 -2
  80. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  81. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  82. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  83. data/app/services/katello/pulp3/repository/docker.rb +4 -0
  84. data/app/services/katello/pulp3/repository/yum.rb +2 -1
  85. data/app/services/katello/pulp3/repository.rb +11 -9
  86. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  87. data/app/services/katello/pulp3/task.rb +3 -3
  88. data/app/services/katello/pulp3/task_group.rb +0 -6
  89. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  90. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  91. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  92. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  93. data/config/routes/api/v2.rb +2 -0
  94. data/config/routes/overrides.rb +1 -0
  95. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  96. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
  97. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  98. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  99. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  100. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  101. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  102. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  104. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  123. data/lib/katello/engine.rb +1 -0
  124. data/lib/katello/permission_creator.rb +68 -59
  125. data/lib/katello/permissions/host_permissions.rb +1 -0
  126. data/lib/katello/plugin.rb +4 -1
  127. data/lib/katello/repository_types/deb.rb +9 -1
  128. data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
  129. data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
  130. data/lib/katello/tasks/reports.rake +1 -4
  131. data/lib/katello/tasks/reset.rake +2 -1
  132. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  133. data/lib/katello/version.rb +1 -1
  134. data/locale/action_names.rb +54 -47
  135. data/locale/bn/katello.po +165 -26
  136. data/locale/cs/katello.po +164 -24
  137. data/locale/de/katello.po +165 -26
  138. data/locale/en/katello.po +164 -23
  139. data/locale/es/katello.po +165 -25
  140. data/locale/fr/katello.po +165 -25
  141. data/locale/gu/katello.po +165 -26
  142. data/locale/hi/katello.po +165 -26
  143. data/locale/it/katello.po +165 -25
  144. data/locale/ja/katello.po +165 -26
  145. data/locale/katello.pot +1036 -802
  146. data/locale/kn/katello.po +165 -26
  147. data/locale/ko/katello.po +165 -25
  148. data/locale/mr/katello.po +165 -26
  149. data/locale/or/katello.po +165 -26
  150. data/locale/pa/katello.po +165 -26
  151. data/locale/pt/katello.po +164 -23
  152. data/locale/pt_BR/katello.po +165 -25
  153. data/locale/ru/katello.po +165 -25
  154. data/locale/ta/katello.po +165 -26
  155. data/locale/te/katello.po +165 -26
  156. data/locale/zh_CN/katello.po +165 -25
  157. data/locale/zh_TW/katello.po +165 -26
  158. data/webpack/components/ActionableDetail.js +2 -1
  159. data/webpack/components/Search/Search.js +1 -1
  160. data/webpack/components/Table/MainTable.js +6 -2
  161. data/webpack/components/Table/TableWrapper.js +46 -9
  162. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  163. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  164. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  165. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  166. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  167. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  168. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  169. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  170. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  171. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  172. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  173. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  174. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  175. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  176. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  177. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  178. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  179. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
  180. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  181. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  182. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  183. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  184. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  185. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  186. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  187. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  188. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  189. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  190. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  191. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  192. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  193. metadata +69 -26
data/locale/it/katello.po CHANGED
@@ -401,6 +401,9 @@ msgstr "Contenuto aggiunto:"
401
401
  msgid "Adding content units"
402
402
  msgstr ""
403
403
 
404
+ 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}"
405
+ msgstr ""
406
+
404
407
  msgid "Addons"
405
408
  msgstr ""
406
409
 
@@ -505,6 +508,9 @@ msgstr ""
505
508
  msgid "Artifacts"
506
509
  msgstr ""
507
510
 
511
+ msgid "Assign system purpose attributes on one or more hosts"
512
+ msgstr ""
513
+
508
514
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
509
515
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
510
516
  msgstr[0] "Assegna %{count} host senza %{taxonomy_single} a %{taxonomy_name}"
@@ -550,9 +556,6 @@ msgstr ""
550
556
  msgid "Author"
551
557
  msgstr ""
552
558
 
553
- msgid "Auto Enablement may only be set on custom repositories."
554
- msgstr ""
555
-
556
559
  msgid "Auto Publish - Triggered by '%s'"
557
560
  msgstr ""
558
561
 
@@ -762,6 +765,9 @@ msgstr ""
762
765
  msgid "Cannot delete view while it exists in environments"
763
766
  msgstr "Impossibile cancellare la visuale mentre la stessa abbandona gli ambienti"
764
767
 
768
+ msgid "Cannot import a composite content view"
769
+ msgstr ""
770
+
765
771
  msgid "Cannot import a custom subscription from a redhat product."
766
772
  msgstr ""
767
773
 
@@ -838,6 +844,9 @@ msgstr ""
838
844
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
839
845
  msgstr ""
840
846
 
847
+ msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
848
+ msgstr ""
849
+
841
850
  msgid "Click here to go to the tasks page for the task."
842
851
  msgstr ""
843
852
 
@@ -968,9 +977,15 @@ msgstr ""
968
977
  msgid "Content View Version not set"
969
978
  msgstr ""
970
979
 
980
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
981
+ msgstr ""
982
+
971
983
  msgid "Content View and Environment not set for registration."
972
984
  msgstr ""
973
985
 
986
+ msgid "Content View id"
987
+ msgstr ""
988
+
974
989
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
975
990
  msgid "Content Views"
976
991
  msgstr "Visualizzazioni contenuto"
@@ -1030,12 +1045,12 @@ msgstr ""
1030
1045
  msgid "Copy an activation key"
1031
1046
  msgstr "Copia una chiave di attivazione"
1032
1047
 
1048
+ msgid "Copy version units to library"
1049
+ msgstr ""
1050
+
1033
1051
  msgid "Cores: %s"
1034
1052
  msgstr "Core: %s"
1035
1053
 
1036
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1037
- msgstr ""
1038
-
1039
1054
  msgid "Could not delete organization '%s'."
1040
1055
  msgstr "Impossibile cancellare l'organizzazione '%s'."
1041
1056
 
@@ -1045,6 +1060,9 @@ msgstr "Impossibile trovare %{content} con id '%{id}' nel repository."
1045
1060
  msgid "Could not find %{count} errata. Only found: %{found}"
1046
1061
  msgstr ""
1047
1062
 
1063
+ msgid "Could not find %{name} resource with id %{id}"
1064
+ msgstr ""
1065
+
1048
1066
  msgid "Could not find Environment with ids: %s"
1049
1067
  msgstr "Impossibile trovare l'ambiente con id: %s"
1050
1068
 
@@ -1078,9 +1096,6 @@ msgstr ""
1078
1096
  msgid "Couldn't find %{type} Filter with id %{id}"
1079
1097
  msgstr "Impossibile trovare il filtro %{type} con id %{id}"
1080
1098
 
1081
- msgid "Couldn't find Content Credential '%s'"
1082
- msgstr ""
1083
-
1084
1099
  msgid "Couldn't find ContentViewFilter with id=%s"
1085
1100
  msgstr "Impossibile trovare ContentViewFilter con id=%s"
1086
1101
 
@@ -1172,9 +1187,6 @@ msgstr ""
1172
1187
  msgid "Couldn't find subject of synchronization"
1173
1188
  msgstr "Impossibile trovare il soggetto della sincronizzazione"
1174
1189
 
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
1190
  msgid "Count"
1179
1191
  msgstr ""
1180
1192
 
@@ -1455,6 +1467,15 @@ msgstr ""
1455
1467
  msgid "Desired quantity of the pool"
1456
1468
  msgstr ""
1457
1469
 
1470
+ msgid "Destination Server Name required for Pulp3 repositories"
1471
+ msgstr ""
1472
+
1473
+ msgid "Destination Server name"
1474
+ msgstr ""
1475
+
1476
+ msgid "Destination Server name, required for Pulp3"
1477
+ msgstr ""
1478
+
1458
1479
  msgid "Destroy"
1459
1480
  msgstr "Elimina"
1460
1481
 
@@ -1506,6 +1527,9 @@ msgstr "Dettagli"
1506
1527
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1507
1528
  msgstr ""
1508
1529
 
1530
+ msgid "Directory containing the exported Content View Version"
1531
+ msgstr ""
1532
+
1509
1533
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author fvalen
1510
1534
  msgid "Disable"
1511
1535
  msgstr "Disabilita"
@@ -1522,6 +1546,9 @@ msgstr ""
1522
1546
  msgid "Disable simple content access for a manifest"
1523
1547
  msgstr ""
1524
1548
 
1549
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1550
+ msgstr ""
1551
+
1525
1552
  msgid "Disconnected mode"
1526
1553
  msgstr ""
1527
1554
 
@@ -1606,6 +1633,9 @@ msgstr ""
1606
1633
  msgid "Enabled Repositories"
1607
1634
  msgstr ""
1608
1635
 
1636
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1637
+ msgstr ""
1638
+
1609
1639
  msgid "End Date"
1610
1640
  msgstr ""
1611
1641
 
@@ -1728,6 +1758,9 @@ msgstr ""
1728
1758
  msgid "Export to ISO format"
1729
1759
  msgstr ""
1730
1760
 
1761
+ msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1762
+ msgstr ""
1763
+
1731
1764
  msgid "Exported version"
1732
1765
  msgstr ""
1733
1766
 
@@ -1869,10 +1902,6 @@ msgstr ""
1869
1902
  msgid "GPG Key URL"
1870
1903
  msgstr ""
1871
1904
 
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
1905
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
1877
1906
  msgid "Generate and Download"
1878
1907
  msgstr "Genera e scarica"
@@ -1979,6 +2008,9 @@ msgstr "L'insieme di host è vuoto."
1979
2008
  msgid "Host content and subscription details"
1980
2009
  msgstr "Contenuto host e informazioni sulla sottoscrizione"
1981
2010
 
2011
+ 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."
2012
+ msgstr ""
2013
+
1982
2014
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1983
2015
  msgstr ""
1984
2016
 
@@ -2198,6 +2230,12 @@ msgstr ""
2198
2230
  msgid "Immediate"
2199
2231
  msgstr ""
2200
2232
 
2233
+ msgid "Import"
2234
+ msgstr ""
2235
+
2236
+ msgid "Import Content View Version"
2237
+ msgstr ""
2238
+
2201
2239
  msgid "Import Manifest"
2202
2240
  msgstr "Importa manifesto"
2203
2241
 
@@ -2219,6 +2257,9 @@ msgstr ""
2219
2257
  msgid "Import a Manifest using the manifest tab above."
2220
2258
  msgstr ""
2221
2259
 
2260
+ msgid "Import a content view version"
2261
+ msgstr ""
2262
+
2222
2263
  msgid "Import facts"
2223
2264
  msgstr "Importa gli eventi"
2224
2265
 
@@ -2386,6 +2427,9 @@ msgstr ""
2386
2427
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2387
2428
  msgstr "La regola del filtro specificata non è valida, 'version' non può essere specificata insieme a 'min_version' o 'max_version'"
2388
2429
 
2430
+ msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2431
+ msgstr ""
2432
+
2389
2433
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2390
2434
  msgstr "Parametri non validi inviati nella richiesta per questa operazione. Contattare un amministratore di sistema."
2391
2435
 
@@ -2399,6 +2443,9 @@ msgstr ""
2399
2443
  msgid "Invalid params provided - date_type must be one of %s"
2400
2444
  msgstr ""
2401
2445
 
2446
+ msgid "Invalid path specified."
2447
+ msgstr ""
2448
+
2402
2449
  msgid ""
2403
2450
  "Invalid puppet module parameters specified. \\\n"
2404
2451
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2476,9 +2523,6 @@ msgstr ""
2476
2523
  msgid "Learn more about adding Subscription Manifests"
2477
2524
  msgstr ""
2478
2525
 
2479
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2480
- msgstr ""
2481
-
2482
2526
  msgid "Library lifecycle environments may not be deleted."
2483
2527
  msgstr "Gli ambienti ciclo di vita e libreria non possono essere rimossi."
2484
2528
 
@@ -2731,6 +2775,9 @@ msgstr ""
2731
2775
  msgid "List srpms"
2732
2776
  msgstr ""
2733
2777
 
2778
+ msgid "List subscriptions"
2779
+ msgstr ""
2780
+
2734
2781
  msgid "List sync plans"
2735
2782
  msgstr "Elenca le programmazioni per la sincronizzazione"
2736
2783
 
@@ -2819,6 +2866,9 @@ msgstr "Messaggio"
2819
2866
  msgid "Messaging connection"
2820
2867
  msgstr ""
2821
2868
 
2869
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2870
+ msgstr ""
2871
+
2822
2872
  msgid "Mismatched"
2823
2873
  msgstr ""
2824
2874
 
@@ -2962,12 +3012,18 @@ msgstr ""
2962
3012
  msgid "No hosts registered with subscription-manager found in selection."
2963
3013
  msgstr ""
2964
3014
 
3015
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3016
+ msgstr ""
3017
+
2965
3018
  msgid "No manifest file uploaded"
2966
3019
  msgstr "Nessun file del manifesto caricato"
2967
3020
 
2968
3021
  msgid "No matching content views found"
2969
3022
  msgstr ""
2970
3023
 
3024
+ msgid "No matching repositories found"
3025
+ msgstr ""
3026
+
2971
3027
  msgid "No new packages installed"
2972
3028
  msgstr "Nessun nuovo pacchetto installato"
2973
3029
 
@@ -3103,6 +3159,9 @@ msgstr ""
3103
3159
  msgid "On-disk location for exported repositories"
3104
3160
  msgstr ""
3105
3161
 
3162
+ msgid "On-disk location for pulp 3 exported repositories"
3163
+ msgstr ""
3164
+
3106
3165
  msgid "One of parameters [ %s ] required but not specified."
3107
3166
  msgstr "Uno dei parametri [ %s ] necessario ma non specificato."
3108
3167
 
@@ -3134,6 +3193,9 @@ msgstr "Operatori"
3134
3193
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3135
3194
  msgstr ""
3136
3195
 
3196
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3197
+ msgstr ""
3198
+
3137
3199
  msgid "Organization"
3138
3200
  msgstr "Organizzazione"
3139
3201
 
@@ -3381,6 +3443,9 @@ msgstr "Fisico"
3381
3443
  msgid "Plan numeric identifier"
3382
3444
  msgstr "Identificatore numerico della programmazione"
3383
3445
 
3446
+ msgid "Please add some repositories."
3447
+ msgstr ""
3448
+
3384
3449
  msgid "Please enter a positive number above zero"
3385
3450
  msgstr ""
3386
3451
 
@@ -3514,6 +3579,9 @@ msgstr ""
3514
3579
  msgid "Pulp"
3515
3580
  msgstr ""
3516
3581
 
3582
+ msgid "Pulp 3 export destination filepath"
3583
+ msgstr ""
3584
+
3517
3585
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3518
3586
  msgstr ""
3519
3587
 
@@ -3568,6 +3636,12 @@ msgstr ""
3568
3636
  msgid "Pulp task error"
3569
3637
  msgstr "Errore attività di Pulp"
3570
3638
 
3639
+ msgid "Pulp user or group unable to read '%s'."
3640
+ msgstr ""
3641
+
3642
+ msgid "Pulp user or group unable to read content in '%s'."
3643
+ msgstr ""
3644
+
3571
3645
  msgid "Pulpcore"
3572
3646
  msgstr ""
3573
3647
 
@@ -3704,6 +3778,9 @@ msgstr "Releasever da abilitare"
3704
3778
  msgid "Reload data"
3705
3779
  msgstr "Ricarica i dati"
3706
3780
 
3781
+ msgid "Remote action:"
3782
+ msgstr ""
3783
+
3707
3784
  msgid "Removal of package group(s) requested: %{groups}"
3708
3785
  msgstr ""
3709
3786
 
@@ -3788,6 +3865,9 @@ msgstr "Rimozione pacchetto in corso..."
3788
3865
  msgid "Repo Type"
3789
3866
  msgstr ""
3790
3867
 
3868
+ msgid "Report"
3869
+ msgstr ""
3870
+
3791
3871
  # translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author fvalen
3792
3872
  msgid "Repositories"
3793
3873
  msgstr "Repositori"
@@ -3864,6 +3944,9 @@ msgstr ""
3864
3944
  msgid "Resolve Traces"
3865
3945
  msgstr ""
3866
3946
 
3947
+ msgid "Resolve traces for one or more hosts"
3948
+ msgstr ""
3949
+
3867
3950
  msgid "Resource"
3868
3951
  msgstr ""
3869
3952
 
@@ -3943,6 +4026,9 @@ msgstr "Ritorna il contenuto di una chiave gpg del repositorio usata direttament
3943
4026
  msgid "Role"
3944
4027
  msgstr ""
3945
4028
 
4029
+ msgid "Role of host"
4030
+ msgstr ""
4031
+
3946
4032
  msgid "Run Sync Plan:"
3947
4033
  msgstr ""
3948
4034
 
@@ -4043,6 +4129,9 @@ msgstr "Livello %s del servizio"
4043
4129
  msgid "Service Level (SLA)"
4044
4130
  msgstr ""
4045
4131
 
4132
+ msgid "Service level of host"
4133
+ msgstr ""
4134
+
4046
4135
  msgid "Service level to be used for autoheal"
4047
4136
  msgstr ""
4048
4137
 
@@ -4137,6 +4226,9 @@ msgstr "Mostra le release disponibili per un host di contenuto"
4137
4226
  msgid "Show the available repository types"
4138
4227
  msgstr ""
4139
4228
 
4229
+ msgid "Show the export history for a content view version"
4230
+ msgstr ""
4231
+
4140
4232
  msgid "Shows status of Katello system and it's subcomponents"
4141
4233
  msgstr ""
4142
4234
 
@@ -4146,6 +4238,12 @@ msgstr "Mostra le informazioni sulla versione"
4146
4238
  msgid "Simple Content Access"
4147
4239
  msgstr ""
4148
4240
 
4241
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4242
+ msgstr ""
4243
+
4244
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4245
+ msgstr ""
4246
+
4149
4247
  msgid "Size of file to upload"
4150
4248
  msgstr ""
4151
4249
 
@@ -4391,6 +4489,9 @@ msgstr "Sincronizza uno o più prodotti"
4391
4489
  msgid "Sync plan identifier to attach"
4392
4490
  msgstr "identificatore programmazione della sincronizzazione da assegnare"
4393
4491
 
4492
+ msgid "Sync state"
4493
+ msgstr ""
4494
+
4394
4495
  msgid "Synced Content"
4395
4496
  msgstr ""
4396
4497
 
@@ -4501,6 +4602,9 @@ msgstr "I seguenti host dispongono di errata da applicare:"
4501
4602
  msgid "The id of the host to alter"
4502
4603
  msgstr ""
4503
4604
 
4605
+ msgid "The import path must be in a subdirectory under '%s'."
4606
+ msgstr ""
4607
+
4504
4608
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4505
4609
  msgstr ""
4506
4610
 
@@ -4549,6 +4653,9 @@ msgstr ""
4549
4653
  msgid "The requested resource does not belong to the specified organization"
4550
4654
  msgstr ""
4551
4655
 
4656
+ msgid "The requested traces were not found for this host"
4657
+ msgstr ""
4658
+
4552
4659
  msgid "The selected content source and lifecycle environment do not match"
4553
4660
  msgstr ""
4554
4661
 
@@ -4612,6 +4719,9 @@ msgstr ""
4612
4719
  msgid "There's no running synchronization for this smart proxy."
4613
4720
  msgstr ""
4614
4721
 
4722
+ msgid "This API endpoint is only valid for Pulp 3 repositories."
4723
+ msgstr ""
4724
+
4615
4725
  msgid "This Host is not currently registered with subscription-manager."
4616
4726
  msgstr ""
4617
4727
 
@@ -4751,10 +4861,13 @@ msgstr ""
4751
4861
  msgid "Unable to detect puppet path"
4752
4862
  msgstr ""
4753
4863
 
4754
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4864
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4755
4865
  msgstr ""
4756
4866
 
4757
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4867
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4868
+ msgstr ""
4869
+
4870
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4758
4871
  msgstr ""
4759
4872
 
4760
4873
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -4969,6 +5082,12 @@ msgstr ""
4969
5082
  msgid "Updating Package..."
4970
5083
  msgstr "Aggiornamento pacchetto in corso..."
4971
5084
 
5085
+ msgid "Updating System Purpose for host"
5086
+ msgstr ""
5087
+
5088
+ msgid "Updating System Purpose for host %s"
5089
+ msgstr ""
5090
+
4972
5091
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
4973
5092
  msgid "Updating package group..."
4974
5093
  msgstr "Aggiornamento gruppo di pacchetti..."
@@ -5024,9 +5143,15 @@ msgstr ""
5024
5143
  msgid "Usage Type"
5025
5144
  msgstr ""
5026
5145
 
5146
+ msgid "Usage of host"
5147
+ msgstr ""
5148
+
5027
5149
  msgid "Use remote execution by default"
5028
5150
  msgstr ""
5029
5151
 
5152
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5153
+ msgstr ""
5154
+
5030
5155
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5031
5156
  msgstr "L'utente '%s' non ha specificato alcun ID per l'organizzazione e non ha alcuna organizzazione predefinita."
5032
5157
 
@@ -5051,6 +5176,15 @@ msgstr ""
5051
5176
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5052
5177
  msgstr ""
5053
5178
 
5179
+ msgid "Verify checksum"
5180
+ msgstr ""
5181
+
5182
+ msgid "Verify checksum for one or more products"
5183
+ msgstr ""
5184
+
5185
+ msgid "Verify checksum of repository contents"
5186
+ msgstr ""
5187
+
5054
5188
  msgid "Version"
5055
5189
  msgstr ""
5056
5190
 
@@ -5068,7 +5202,7 @@ msgstr ""
5068
5202
  msgid "Virtual"
5069
5203
  msgstr "Virtuale"
5070
5204
 
5071
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5205
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5072
5206
  msgstr ""
5073
5207
 
5074
5208
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5137,6 +5271,9 @@ msgstr "Impossibile impostare parent_id sull'organizzazione. Questa funzione è
5137
5271
  msgid "You currently don't have any Content Views."
5138
5272
  msgstr ""
5139
5273
 
5274
+ msgid "You currently don't have any repositories to add to this content view."
5275
+ msgstr ""
5276
+
5140
5277
  msgid "You do not have permissions to delete %s"
5141
5278
  msgstr "Non sei in possesso dei permessi necessari per eliminare %s"
5142
5279
 
@@ -5550,9 +5687,6 @@ msgstr ""
5550
5687
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5551
5688
  msgstr ""
5552
5689
 
5553
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5554
- msgstr ""
5555
-
5556
5690
  msgid "if true, will ignore the globally configured proxy when syncing"
5557
5691
  msgstr ""
5558
5692
 
@@ -5625,6 +5759,9 @@ msgstr "numero massimo degli host di contenuto registrati"
5625
5759
  msgid "maximum size of each ISO in MB"
5626
5760
  msgstr ""
5627
5761
 
5762
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5763
+ msgstr ""
5764
+
5628
5765
  msgid "may not be less than the number of hosts associated with the host collection."
5629
5766
  msgstr ""
5630
5767
 
@@ -5903,6 +6040,9 @@ msgstr ""
5903
6040
  msgid "the uuid of the puppet module to associate"
5904
6041
  msgstr "uuid del modulo puppet da associare"
5905
6042
 
6043
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6044
+ msgstr ""
6045
+
5906
6046
  msgid "true if the latest version of the component's content view is desired"
5907
6047
  msgstr ""
5908
6048