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/fr/katello.po CHANGED
@@ -403,6 +403,9 @@ msgstr "Contenu ajouté :"
403
403
  msgid "Adding content units"
404
404
  msgstr ""
405
405
 
406
+ 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}"
407
+ msgstr ""
408
+
406
409
  msgid "Addons"
407
410
  msgstr ""
408
411
 
@@ -507,6 +510,9 @@ msgstr ""
507
510
  msgid "Artifacts"
508
511
  msgstr ""
509
512
 
513
+ msgid "Assign system purpose attributes on one or more hosts"
514
+ msgstr ""
515
+
510
516
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
511
517
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
512
518
  msgstr[0] "Assigner %{count} hôte sans aucune %{taxonomy_single} à %{taxonomy_name}"
@@ -552,9 +558,6 @@ msgstr ""
552
558
  msgid "Author"
553
559
  msgstr ""
554
560
 
555
- msgid "Auto Enablement may only be set on custom repositories."
556
- msgstr ""
557
-
558
561
  msgid "Auto Publish - Triggered by '%s'"
559
562
  msgstr ""
560
563
 
@@ -764,6 +767,9 @@ msgstr ""
764
767
  msgid "Cannot delete view while it exists in environments"
765
768
  msgstr "Impossible de supprimer l'affichage pendant qu'il existe dans des environnements"
766
769
 
770
+ msgid "Cannot import a composite content view"
771
+ msgstr ""
772
+
767
773
  msgid "Cannot import a custom subscription from a redhat product."
768
774
  msgstr ""
769
775
 
@@ -840,6 +846,9 @@ msgstr ""
840
846
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
841
847
  msgstr ""
842
848
 
849
+ msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
850
+ msgstr ""
851
+
843
852
  msgid "Click here to go to the tasks page for the task."
844
853
  msgstr ""
845
854
 
@@ -970,9 +979,15 @@ msgstr ""
970
979
  msgid "Content View Version not set"
971
980
  msgstr ""
972
981
 
982
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
983
+ msgstr ""
984
+
973
985
  msgid "Content View and Environment not set for registration."
974
986
  msgstr ""
975
987
 
988
+ msgid "Content View id"
989
+ msgstr ""
990
+
976
991
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author samfreemanz
977
992
  msgid "Content Views"
978
993
  msgstr " Affichages de contenu"
@@ -1032,12 +1047,12 @@ msgstr ""
1032
1047
  msgid "Copy an activation key"
1033
1048
  msgstr "Copier une clé d'activation"
1034
1049
 
1050
+ msgid "Copy version units to library"
1051
+ msgstr ""
1052
+
1035
1053
  msgid "Cores: %s"
1036
1054
  msgstr "Noyaux : %s"
1037
1055
 
1038
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1039
- msgstr ""
1040
-
1041
1056
  msgid "Could not delete organization '%s'."
1042
1057
  msgstr "Suppression de l'organisation '%s' impossible."
1043
1058
 
@@ -1047,6 +1062,9 @@ msgstr "Impossible de trouver %{content} avec l'ID '%{id}' dans le référentiel
1047
1062
  msgid "Could not find %{count} errata. Only found: %{found}"
1048
1063
  msgstr ""
1049
1064
 
1065
+ msgid "Could not find %{name} resource with id %{id}"
1066
+ msgstr ""
1067
+
1050
1068
  msgid "Could not find Environment with ids: %s"
1051
1069
  msgstr "Impossible de trouver un Environnement avec les ID : %s"
1052
1070
 
@@ -1080,9 +1098,6 @@ msgstr ""
1080
1098
  msgid "Couldn't find %{type} Filter with id %{id}"
1081
1099
  msgstr "Impossible de trouver le Filtre %{type} avec l'ID %{id}"
1082
1100
 
1083
- msgid "Couldn't find Content Credential '%s'"
1084
- msgstr ""
1085
-
1086
1101
  msgid "Couldn't find ContentViewFilter with id=%s"
1087
1102
  msgstr "Le filtre d'affichage du contenu avec l'ID =%s est introuvable"
1088
1103
 
@@ -1174,9 +1189,6 @@ msgstr ""
1174
1189
  msgid "Couldn't find subject of synchronization"
1175
1190
  msgstr "Sujet de la synchronisation introuvable"
1176
1191
 
1177
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1178
- msgstr "Impossible de trouver le plan de synchronisation « %{plan} » dans l'organisation « %{org} »"
1179
-
1180
1192
  msgid "Count"
1181
1193
  msgstr ""
1182
1194
 
@@ -1458,6 +1470,15 @@ msgstr ""
1458
1470
  msgid "Desired quantity of the pool"
1459
1471
  msgstr ""
1460
1472
 
1473
+ msgid "Destination Server Name required for Pulp3 repositories"
1474
+ msgstr ""
1475
+
1476
+ msgid "Destination Server name"
1477
+ msgstr ""
1478
+
1479
+ msgid "Destination Server name, required for Pulp3"
1480
+ msgstr ""
1481
+
1461
1482
  msgid "Destroy"
1462
1483
  msgstr "Détruire"
1463
1484
 
@@ -1509,6 +1530,9 @@ msgstr "Détails"
1509
1530
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1510
1531
  msgstr ""
1511
1532
 
1533
+ msgid "Directory containing the exported Content View Version"
1534
+ msgstr ""
1535
+
1512
1536
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author Sam Friedmann
1513
1537
  msgid "Disable"
1514
1538
  msgstr "Désactiver"
@@ -1525,6 +1549,9 @@ msgstr ""
1525
1549
  msgid "Disable simple content access for a manifest"
1526
1550
  msgstr ""
1527
1551
 
1552
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1553
+ msgstr ""
1554
+
1528
1555
  msgid "Disconnected mode"
1529
1556
  msgstr ""
1530
1557
 
@@ -1608,6 +1635,9 @@ msgstr ""
1608
1635
  msgid "Enabled Repositories"
1609
1636
  msgstr ""
1610
1637
 
1638
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1639
+ msgstr ""
1640
+
1611
1641
  msgid "End Date"
1612
1642
  msgstr ""
1613
1643
 
@@ -1729,6 +1759,9 @@ msgstr ""
1729
1759
  msgid "Export to ISO format"
1730
1760
  msgstr ""
1731
1761
 
1762
+ msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1763
+ msgstr ""
1764
+
1732
1765
  msgid "Exported version"
1733
1766
  msgstr ""
1734
1767
 
@@ -1870,10 +1903,6 @@ msgstr ""
1870
1903
  msgid "GPG Key URL"
1871
1904
  msgstr ""
1872
1905
 
1873
- # translation auto-copied from project PressGang CCMS topics, version 1, document 31337-708757, author jcarbone
1874
- msgid "GPG Keys"
1875
- msgstr "Clés GPG"
1876
-
1877
1906
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author samfreemanz
1878
1907
  msgid "Generate and Download"
1879
1908
  msgstr "Générer et télécharger"
@@ -1981,6 +2010,9 @@ msgstr "La collection d'hôtes est vide."
1981
2010
  msgid "Host content and subscription details"
1982
2011
  msgstr "Contenu de l'hôte et détails de l'abonnement"
1983
2012
 
2013
+ 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."
2014
+ msgstr ""
2015
+
1984
2016
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1985
2017
  msgstr ""
1986
2018
 
@@ -2200,6 +2232,12 @@ msgstr ""
2200
2232
  msgid "Immediate"
2201
2233
  msgstr ""
2202
2234
 
2235
+ msgid "Import"
2236
+ msgstr ""
2237
+
2238
+ msgid "Import Content View Version"
2239
+ msgstr ""
2240
+
2203
2241
  msgid "Import Manifest"
2204
2242
  msgstr "Importer le manifeste"
2205
2243
 
@@ -2221,6 +2259,9 @@ msgstr ""
2221
2259
  msgid "Import a Manifest using the manifest tab above."
2222
2260
  msgstr ""
2223
2261
 
2262
+ msgid "Import a content view version"
2263
+ msgstr ""
2264
+
2224
2265
  msgid "Import facts"
2225
2266
  msgstr "Importer des facts"
2226
2267
 
@@ -2390,6 +2431,9 @@ msgstr ""
2390
2431
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2391
2432
  msgstr "Règle de filtre non valide spécifiée, 'version' ne peut être spécifiée dans le même tuple que 'min_version' ou 'max_version'"
2392
2433
 
2434
+ msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2435
+ msgstr ""
2436
+
2393
2437
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2394
2438
  msgstr "Paramètres invalides envoyés dans la requête pour cette opération. Veuillez contacter un administrateur système."
2395
2439
 
@@ -2403,6 +2447,9 @@ msgstr ""
2403
2447
  msgid "Invalid params provided - date_type must be one of %s"
2404
2448
  msgstr ""
2405
2449
 
2450
+ msgid "Invalid path specified."
2451
+ msgstr ""
2452
+
2406
2453
  msgid ""
2407
2454
  "Invalid puppet module parameters specified. \\\n"
2408
2455
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2480,9 +2527,6 @@ msgstr ""
2480
2527
  msgid "Learn more about adding Subscription Manifests"
2481
2528
  msgstr ""
2482
2529
 
2483
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2484
- msgstr ""
2485
-
2486
2530
  msgid "Library lifecycle environments may not be deleted."
2487
2531
  msgstr "Les environnements de cycle de vie de la bibliothèque ne peuvent pas être supprimés."
2488
2532
 
@@ -2737,6 +2781,9 @@ msgstr ""
2737
2781
  msgid "List srpms"
2738
2782
  msgstr ""
2739
2783
 
2784
+ msgid "List subscriptions"
2785
+ msgstr ""
2786
+
2740
2787
  msgid "List sync plans"
2741
2788
  msgstr "Répertorier les plans de synchronisation"
2742
2789
 
@@ -2825,6 +2872,9 @@ msgstr "Message"
2825
2872
  msgid "Messaging connection"
2826
2873
  msgstr ""
2827
2874
 
2875
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2876
+ msgstr ""
2877
+
2828
2878
  msgid "Mismatched"
2829
2879
  msgstr ""
2830
2880
 
@@ -2968,12 +3018,18 @@ msgstr ""
2968
3018
  msgid "No hosts registered with subscription-manager found in selection."
2969
3019
  msgstr ""
2970
3020
 
3021
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3022
+ msgstr ""
3023
+
2971
3024
  msgid "No manifest file uploaded"
2972
3025
  msgstr "Aucun fichier manifeste téléchargé"
2973
3026
 
2974
3027
  msgid "No matching content views found"
2975
3028
  msgstr ""
2976
3029
 
3030
+ msgid "No matching repositories found"
3031
+ msgstr ""
3032
+
2977
3033
  # translation auto-copied from project CFSE, version sam-1.2, document app, author samfreemanz
2978
3034
  msgid "No new packages installed"
2979
3035
  msgstr "Aucun nouveau paquet installé"
@@ -3112,6 +3168,9 @@ msgstr ""
3112
3168
  msgid "On-disk location for exported repositories"
3113
3169
  msgstr ""
3114
3170
 
3171
+ msgid "On-disk location for pulp 3 exported repositories"
3172
+ msgstr ""
3173
+
3115
3174
  msgid "One of parameters [ %s ] required but not specified."
3116
3175
  msgstr "L'un des paramètres [ %s ] est requis, mais il n'est pas spécifié."
3117
3176
 
@@ -3143,6 +3202,9 @@ msgstr "Opérateurs"
3143
3202
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3144
3203
  msgstr ""
3145
3204
 
3205
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3206
+ msgstr ""
3207
+
3146
3208
  msgid "Organization"
3147
3209
  msgstr "Organisation"
3148
3210
 
@@ -3425,6 +3487,9 @@ msgstr "Physique"
3425
3487
  msgid "Plan numeric identifier"
3426
3488
  msgstr "Identifiant numérique du plan"
3427
3489
 
3490
+ msgid "Please add some repositories."
3491
+ msgstr ""
3492
+
3428
3493
  msgid "Please enter a positive number above zero"
3429
3494
  msgstr ""
3430
3495
 
@@ -3559,6 +3624,9 @@ msgstr ""
3559
3624
  msgid "Pulp"
3560
3625
  msgstr ""
3561
3626
 
3627
+ msgid "Pulp 3 export destination filepath"
3628
+ msgstr ""
3629
+
3562
3630
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3563
3631
  msgstr ""
3564
3632
 
@@ -3613,6 +3681,12 @@ msgstr ""
3613
3681
  msgid "Pulp task error"
3614
3682
  msgstr "Erreur de tâche pulp"
3615
3683
 
3684
+ msgid "Pulp user or group unable to read '%s'."
3685
+ msgstr ""
3686
+
3687
+ msgid "Pulp user or group unable to read content in '%s'."
3688
+ msgstr ""
3689
+
3616
3690
  msgid "Pulpcore"
3617
3691
  msgstr ""
3618
3692
 
@@ -3751,6 +3825,9 @@ msgstr "Releasever à activer"
3751
3825
  msgid "Reload data"
3752
3826
  msgstr "Recharger les données"
3753
3827
 
3828
+ msgid "Remote action:"
3829
+ msgstr ""
3830
+
3754
3831
  msgid "Removal of package group(s) requested: %{groups}"
3755
3832
  msgstr ""
3756
3833
 
@@ -3837,6 +3914,9 @@ msgstr "Suppression du paquet..."
3837
3914
  msgid "Repo Type"
3838
3915
  msgstr ""
3839
3916
 
3917
+ msgid "Report"
3918
+ msgstr ""
3919
+
3840
3920
  # translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author Sam Friedmann
3841
3921
  msgid "Repositories"
3842
3922
  msgstr "Référentiels"
@@ -3913,6 +3993,9 @@ msgstr ""
3913
3993
  msgid "Resolve Traces"
3914
3994
  msgstr ""
3915
3995
 
3996
+ msgid "Resolve traces for one or more hosts"
3997
+ msgstr ""
3998
+
3916
3999
  msgid "Resource"
3917
4000
  msgstr ""
3918
4001
 
@@ -3992,6 +4075,9 @@ msgstr "Renvoyer le contenu d'une clé gpg de référentiel, utilisé directemen
3992
4075
  msgid "Role"
3993
4076
  msgstr ""
3994
4077
 
4078
+ msgid "Role of host"
4079
+ msgstr ""
4080
+
3995
4081
  msgid "Run Sync Plan:"
3996
4082
  msgstr ""
3997
4083
 
@@ -4092,6 +4178,9 @@ msgstr "Niveau de service %s"
4092
4178
  msgid "Service Level (SLA)"
4093
4179
  msgstr ""
4094
4180
 
4181
+ msgid "Service level of host"
4182
+ msgstr ""
4183
+
4095
4184
  msgid "Service level to be used for autoheal"
4096
4185
  msgstr ""
4097
4186
 
@@ -4188,6 +4277,9 @@ msgstr "Afficher les versions disponibles pour l'hôte de contenu"
4188
4277
  msgid "Show the available repository types"
4189
4278
  msgstr ""
4190
4279
 
4280
+ msgid "Show the export history for a content view version"
4281
+ msgstr ""
4282
+
4191
4283
  msgid "Shows status of Katello system and it's subcomponents"
4192
4284
  msgstr ""
4193
4285
 
@@ -4197,6 +4289,12 @@ msgstr "Afficher les informations de la version"
4197
4289
  msgid "Simple Content Access"
4198
4290
  msgstr ""
4199
4291
 
4292
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4293
+ msgstr ""
4294
+
4295
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4296
+ msgstr ""
4297
+
4200
4298
  msgid "Size of file to upload"
4201
4299
  msgstr ""
4202
4300
 
@@ -4439,6 +4537,9 @@ msgstr "Synchroniser un ou plusieurs produits"
4439
4537
  msgid "Sync plan identifier to attach"
4440
4538
  msgstr "Synchroniser les identifiants de plan à attacher"
4441
4539
 
4540
+ msgid "Sync state"
4541
+ msgstr ""
4542
+
4442
4543
  msgid "Synced Content"
4443
4544
  msgstr ""
4444
4545
 
@@ -4549,6 +4650,9 @@ msgstr "Les hôtes suivants contiennent des errata à appliquer :"
4549
4650
  msgid "The id of the host to alter"
4550
4651
  msgstr ""
4551
4652
 
4653
+ msgid "The import path must be in a subdirectory under '%s'."
4654
+ msgstr ""
4655
+
4552
4656
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4553
4657
  msgstr ""
4554
4658
 
@@ -4597,6 +4701,9 @@ msgstr ""
4597
4701
  msgid "The requested resource does not belong to the specified organization"
4598
4702
  msgstr ""
4599
4703
 
4704
+ msgid "The requested traces were not found for this host"
4705
+ msgstr ""
4706
+
4600
4707
  msgid "The selected content source and lifecycle environment do not match"
4601
4708
  msgstr ""
4602
4709
 
@@ -4660,6 +4767,9 @@ msgstr ""
4660
4767
  msgid "There's no running synchronization for this smart proxy."
4661
4768
  msgstr ""
4662
4769
 
4770
+ msgid "This API endpoint is only valid for Pulp 3 repositories."
4771
+ msgstr ""
4772
+
4663
4773
  msgid "This Host is not currently registered with subscription-manager."
4664
4774
  msgstr ""
4665
4775
 
@@ -4799,10 +4909,13 @@ msgstr ""
4799
4909
  msgid "Unable to detect puppet path"
4800
4910
  msgstr ""
4801
4911
 
4802
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4912
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4803
4913
  msgstr ""
4804
4914
 
4805
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4915
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4916
+ msgstr ""
4917
+
4918
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4806
4919
  msgstr ""
4807
4920
 
4808
4921
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5018,6 +5131,12 @@ msgstr ""
5018
5131
  msgid "Updating Package..."
5019
5132
  msgstr "Mise à jour de paquets..."
5020
5133
 
5134
+ msgid "Updating System Purpose for host"
5135
+ msgstr ""
5136
+
5137
+ msgid "Updating System Purpose for host %s"
5138
+ msgstr ""
5139
+
5021
5140
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author samfreemanz
5022
5141
  msgid "Updating package group..."
5023
5142
  msgstr "Mise à jour du groupe de paquets..."
@@ -5073,9 +5192,15 @@ msgstr ""
5073
5192
  msgid "Usage Type"
5074
5193
  msgstr ""
5075
5194
 
5195
+ msgid "Usage of host"
5196
+ msgstr ""
5197
+
5076
5198
  msgid "Use remote execution by default"
5077
5199
  msgstr ""
5078
5200
 
5201
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5202
+ msgstr ""
5203
+
5079
5204
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5080
5205
  msgstr "L'utilisateur '%s' n'a pas spécifié un ID d'organisation et ne possède pas d'organisation par défaut."
5081
5206
 
@@ -5100,6 +5225,15 @@ msgstr ""
5100
5225
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5101
5226
  msgstr ""
5102
5227
 
5228
+ msgid "Verify checksum"
5229
+ msgstr ""
5230
+
5231
+ msgid "Verify checksum for one or more products"
5232
+ msgstr ""
5233
+
5234
+ msgid "Verify checksum of repository contents"
5235
+ msgstr ""
5236
+
5103
5237
  msgid "Version"
5104
5238
  msgstr ""
5105
5239
 
@@ -5117,7 +5251,7 @@ msgstr ""
5117
5251
  msgid "Virtual"
5118
5252
  msgstr "Virtuel"
5119
5253
 
5120
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5254
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5121
5255
  msgstr ""
5122
5256
 
5123
5257
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5186,6 +5320,9 @@ msgstr "Vous ne pouvez pas définir un id de parent d'organisation . Cette fonct
5186
5320
  msgid "You currently don't have any Content Views."
5187
5321
  msgstr ""
5188
5322
 
5323
+ msgid "You currently don't have any repositories to add to this content view."
5324
+ msgstr ""
5325
+
5189
5326
  msgid "You do not have permissions to delete %s"
5190
5327
  msgstr "Vous ne disposez pas des droits nécessaires pour supprimer %s"
5191
5328
 
@@ -5604,9 +5741,6 @@ msgstr ""
5604
5741
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5605
5742
  msgstr ""
5606
5743
 
5607
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5608
- msgstr ""
5609
-
5610
5744
  msgid "if true, will ignore the globally configured proxy when syncing"
5611
5745
  msgstr ""
5612
5746
 
@@ -5683,6 +5817,9 @@ msgstr "nombre maximum d'hôtes de contenu enregistrés"
5683
5817
  msgid "maximum size of each ISO in MB"
5684
5818
  msgstr ""
5685
5819
 
5820
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5821
+ msgstr ""
5822
+
5686
5823
  msgid "may not be less than the number of hosts associated with the host collection."
5687
5824
  msgstr ""
5688
5825
 
@@ -5962,6 +6099,9 @@ msgstr ""
5962
6099
  msgid "the uuid of the puppet module to associate"
5963
6100
  msgstr "l'uuid du module puppet à associer"
5964
6101
 
6102
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6103
+ msgstr ""
6104
+
5965
6105
  msgid "true if the latest version of the component's content view is desired"
5966
6106
  msgstr ""
5967
6107