hammer_cli_foreman 0.6.2 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (324) hide show
  1. checksums.yaml +4 -4
  2. data/config/foreman.yml +4 -0
  3. data/doc/host_create.md +4 -4
  4. data/doc/release_notes.md +24 -6
  5. data/lib/hammer_cli_foreman/associating_commands.rb +54 -0
  6. data/lib/hammer_cli_foreman/commands.rb +28 -7
  7. data/lib/hammer_cli_foreman/exception_handler.rb +18 -0
  8. data/lib/hammer_cli_foreman/exceptions.rb +1 -1
  9. data/lib/hammer_cli_foreman/host.rb +11 -6
  10. data/lib/hammer_cli_foreman/id_resolver.rb +10 -2
  11. data/lib/hammer_cli_foreman/partition_table.rb +1 -0
  12. data/lib/hammer_cli_foreman/smart_class_parameter.rb +5 -1
  13. data/lib/hammer_cli_foreman/smart_variable.rb +1 -1
  14. data/lib/hammer_cli_foreman/template.rb +29 -5
  15. data/lib/hammer_cli_foreman/testing/api_expectations.rb +6 -6
  16. data/lib/hammer_cli_foreman/user.rb +2 -1
  17. data/lib/hammer_cli_foreman/version.rb +1 -1
  18. data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  19. data/locale/ca/hammer-cli-foreman.edit.po +2622 -0
  20. data/locale/ca/hammer-cli-foreman.po +2544 -0
  21. data/locale/ca/hammer-cli-foreman.po.time_stamp +0 -0
  22. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  23. data/locale/de/hammer-cli-foreman.edit.po +2613 -0
  24. data/locale/de/hammer-cli-foreman.po +132 -122
  25. data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
  26. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  27. data/locale/en/hammer-cli-foreman.edit.po +2575 -0
  28. data/locale/en/hammer-cli-foreman.po +157 -8
  29. data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
  30. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  31. data/locale/en_GB/hammer-cli-foreman.edit.po +2582 -0
  32. data/locale/en_GB/hammer-cli-foreman.po +151 -141
  33. data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
  34. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  35. data/locale/es/hammer-cli-foreman.edit.po +2625 -0
  36. data/locale/es/hammer-cli-foreman.po +110 -100
  37. data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
  38. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  39. data/locale/fr/hammer-cli-foreman.edit.po +2626 -0
  40. data/locale/fr/hammer-cli-foreman.po +110 -100
  41. data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
  42. data/locale/hammer-cli-foreman.pot +390 -190
  43. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  44. data/locale/it/hammer-cli-foreman.edit.po +2601 -0
  45. data/locale/it/hammer-cli-foreman.po +139 -129
  46. data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
  47. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  48. data/locale/ja/hammer-cli-foreman.edit.po +2601 -0
  49. data/locale/ja/hammer-cli-foreman.po +140 -130
  50. data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
  51. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  52. data/locale/ko/hammer-cli-foreman.edit.po +2599 -0
  53. data/locale/ko/hammer-cli-foreman.po +138 -128
  54. data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
  55. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  56. data/locale/pt_BR/hammer-cli-foreman.edit.po +2628 -0
  57. data/locale/pt_BR/hammer-cli-foreman.po +112 -102
  58. data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
  59. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  60. data/locale/ru/hammer-cli-foreman.edit.po +2602 -0
  61. data/locale/ru/hammer-cli-foreman.po +265 -254
  62. data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
  63. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  64. data/locale/zh_CN/hammer-cli-foreman.edit.po +2599 -0
  65. data/locale/zh_CN/hammer-cli-foreman.po +136 -126
  66. data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
  67. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  68. data/locale/zh_TW/hammer-cli-foreman.edit.po +2599 -0
  69. data/locale/zh_TW/hammer-cli-foreman.po +137 -127
  70. data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
  71. data/test/data/README.md +6 -1
  72. data/test/functional/commands/list_test.rb +141 -0
  73. data/test/functional/organization_test.rb +71 -0
  74. data/test/functional/smart_class_parameter_test.rb +61 -0
  75. data/test/functional/template_test.rb +80 -0
  76. data/test/functional/test_helper.rb +3 -0
  77. data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +11 -0
  78. data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +7 -0
  79. data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +13 -0
  80. data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +7 -0
  81. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +13 -0
  82. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +13 -0
  83. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +7 -0
  84. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +13 -0
  85. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +17 -0
  86. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +7 -0
  87. data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +15 -0
  88. data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +7 -0
  89. data/test/reports/TEST-HammerCLIForeman-Architecture.xml +7 -0
  90. data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +11 -0
  91. data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +7 -0
  92. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +13 -0
  93. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +17 -0
  94. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +7 -0
  95. data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +13 -0
  96. data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +7 -0
  97. data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +7 -0
  98. data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +15 -0
  99. data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +7 -0
  100. data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +13 -0
  101. data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +7 -0
  102. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +17 -0
  103. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +13 -0
  104. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +7 -0
  105. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +15 -0
  106. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +17 -0
  107. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +7 -0
  108. data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +15 -0
  109. data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +7 -0
  110. data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +7 -0
  111. data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +11 -0
  112. data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +7 -0
  113. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +13 -0
  114. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +7 -0
  115. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +15 -0
  116. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +7 -0
  117. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +21 -0
  118. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +13 -0
  119. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +7 -0
  120. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +13 -0
  121. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +17 -0
  122. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +7 -0
  123. data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +17 -0
  124. data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +7 -0
  125. data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +15 -0
  126. data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +7 -0
  127. data/test/reports/TEST-HammerCLIForeman-Domain.xml +7 -0
  128. data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +11 -0
  129. data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +7 -0
  130. data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +13 -0
  131. data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +7 -0
  132. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +17 -0
  133. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +13 -0
  134. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +7 -0
  135. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +13 -0
  136. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +17 -0
  137. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +7 -0
  138. data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +15 -0
  139. data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +7 -0
  140. data/test/reports/TEST-HammerCLIForeman-Environment.xml +7 -0
  141. data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +13 -0
  142. data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +46 -0
  143. data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +7 -0
  144. data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +13 -0
  145. data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +7 -0
  146. data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +15 -0
  147. data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +7 -0
  148. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +85 -0
  149. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +13 -0
  150. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +7 -0
  151. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +21 -0
  152. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +17 -0
  153. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +7 -0
  154. data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +9 -0
  155. data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +7 -0
  156. data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +17 -0
  157. data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +7 -0
  158. data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +9 -0
  159. data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +7 -0
  160. data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +40 -0
  161. data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +7 -0
  162. data/test/reports/TEST-HammerCLIForeman-Host.xml +7 -0
  163. data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +11 -0
  164. data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +7 -0
  165. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +11 -0
  166. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +7 -0
  167. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +13 -0
  168. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +7 -0
  169. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +29 -0
  170. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +11 -0
  171. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +7 -0
  172. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +27 -0
  173. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +17 -0
  174. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +7 -0
  175. data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +15 -0
  176. data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +7 -0
  177. data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +13 -0
  178. data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +7 -0
  179. data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +7 -0
  180. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +11 -0
  181. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +11 -0
  182. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +7 -0
  183. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +13 -0
  184. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +11 -0
  185. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +7 -0
  186. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +17 -0
  187. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +13 -0
  188. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +11 -0
  189. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +7 -0
  190. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +13 -0
  191. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +17 -0
  192. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +11 -0
  193. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +7 -0
  194. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +15 -0
  195. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +11 -0
  196. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +7 -0
  197. data/test/reports/TEST-HammerCLIForeman-Location.xml +7 -0
  198. data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +13 -0
  199. data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +7 -0
  200. data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +13 -0
  201. data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +7 -0
  202. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +23 -0
  203. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +13 -0
  204. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +7 -0
  205. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +15 -0
  206. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +17 -0
  207. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +7 -0
  208. data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +17 -0
  209. data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +7 -0
  210. data/test/reports/TEST-HammerCLIForeman-Medium.xml +7 -0
  211. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +11 -0
  212. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +7 -0
  213. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +13 -0
  214. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +7 -0
  215. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +13 -0
  216. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +7 -0
  217. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +27 -0
  218. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +13 -0
  219. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +7 -0
  220. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +17 -0
  221. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +17 -0
  222. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +7 -0
  223. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +15 -0
  224. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +7 -0
  225. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +17 -0
  226. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +7 -0
  227. data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +7 -0
  228. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +11 -0
  229. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +11 -0
  230. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +7 -0
  231. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +13 -0
  232. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +11 -0
  233. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +7 -0
  234. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +17 -0
  235. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +13 -0
  236. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +11 -0
  237. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +7 -0
  238. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +13 -0
  239. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +17 -0
  240. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +11 -0
  241. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +7 -0
  242. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +15 -0
  243. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +11 -0
  244. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +7 -0
  245. data/test/reports/TEST-HammerCLIForeman-Organization.xml +7 -0
  246. data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +13 -0
  247. data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +7 -0
  248. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +13 -0
  249. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +7 -0
  250. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +15 -0
  251. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +7 -0
  252. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +19 -0
  253. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +13 -0
  254. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +7 -0
  255. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +15 -0
  256. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +17 -0
  257. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +7 -0
  258. data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +13 -0
  259. data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +7 -0
  260. data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +7 -0
  261. data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +13 -0
  262. data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +7 -0
  263. data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +13 -0
  264. data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +7 -0
  265. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +21 -0
  266. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +13 -0
  267. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +7 -0
  268. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +15 -0
  269. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +11 -0
  270. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +7 -0
  271. data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +15 -0
  272. data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +7 -0
  273. data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +7 -0
  274. data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +15 -0
  275. data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +7 -0
  276. data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +13 -0
  277. data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +7 -0
  278. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +43 -0
  279. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +13 -0
  280. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +7 -0
  281. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +17 -0
  282. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +17 -0
  283. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +7 -0
  284. data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +15 -0
  285. data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +7 -0
  286. data/test/reports/TEST-HammerCLIForeman-Subnet.xml +7 -0
  287. data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +15 -0
  288. data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +7 -0
  289. data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +11 -0
  290. data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +7 -0
  291. data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +12 -0
  292. data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +7 -0
  293. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +17 -0
  294. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +11 -0
  295. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +7 -0
  296. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +15 -0
  297. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +17 -0
  298. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +7 -0
  299. data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +9 -0
  300. data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +7 -0
  301. data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +11 -0
  302. data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +7 -0
  303. data/test/reports/TEST-HammerCLIForeman-Template.xml +7 -0
  304. data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +19 -0
  305. data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +7 -0
  306. data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +11 -0
  307. data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +7 -0
  308. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +23 -0
  309. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +11 -0
  310. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +7 -0
  311. data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +17 -0
  312. data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +17 -0
  313. data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +7 -0
  314. data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +11 -0
  315. data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +7 -0
  316. data/test/reports/TEST-HammerCLIForeman-User.xml +7 -0
  317. data/test/reports/TEST-MiniTest-Spec.xml +7 -0
  318. data/test/unit/commands_test.rb +9 -9
  319. data/test/unit/data/test_api.json +43 -0
  320. data/test/unit/exception_handler_test.rb +20 -1
  321. data/test/unit/host_test.rb +12 -0
  322. data/test/unit/id_resolver_test.rb +18 -2
  323. data/test/unit/user_test.rb +1 -1
  324. metadata +561 -46
File without changes
@@ -0,0 +1,2626 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman package.
4
+ #
5
+ # Translators:
6
+ # Claer <transiblu@claer.hammock.fr>, 2014-2016
7
+ # Dominic Cleal <dominic@cleal.org>, 2014
8
+ # Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: hammer-cli-foreman 0.6.0\n"
12
+ "Report-Msgid-Bugs-To: \n"
13
+ "POT-Creation-Date: 2016-06-14 23:53+0200\n"
14
+ "PO-Revision-Date: 2016-01-21 14:31+0000\n"
15
+ "Last-Translator: Claer <transiblu@claer.hammock.fr>\n"
16
+ "Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: fr\n"
21
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
+
23
+ #: ../lib/hammer_cli_foreman.rb:32
24
+ msgid "Foreman connection login/logout."
25
+ msgstr "Connexion/Déconnexion à Foreman."
26
+
27
+ #: ../lib/hammer_cli_foreman.rb:36
28
+ msgid "Manipulate architectures."
29
+ msgstr "Gestion des architectures."
30
+
31
+ #: ../lib/hammer_cli_foreman.rb:40
32
+ msgid "Manipulate auth sources."
33
+ msgstr "Gérer les sources d'authentification"
34
+
35
+ #: ../lib/hammer_cli_foreman.rb:44
36
+ msgid "Manipulate compute resources."
37
+ msgstr "Gestion des ressources d'ordinateur."
38
+
39
+ #: ../lib/hammer_cli_foreman.rb:48
40
+ msgid "Manipulate domains."
41
+ msgstr "Gestion des domaines."
42
+
43
+ #: ../lib/hammer_cli_foreman.rb:52
44
+ msgid "Manipulate environments."
45
+ msgstr "Manipulation des environnements"
46
+
47
+ #: ../lib/hammer_cli_foreman.rb:56
48
+ msgid "Search facts."
49
+ msgstr "Rechercher les facts."
50
+
51
+ #: ../lib/hammer_cli_foreman.rb:60
52
+ msgid "Manage permission filters."
53
+ msgstr "Gérer les filtres de permission"
54
+
55
+ #: ../lib/hammer_cli_foreman.rb:64
56
+ msgid "Manipulate hosts."
57
+ msgstr "Manipulation des hôtes"
58
+
59
+ #: ../lib/hammer_cli_foreman.rb:68
60
+ msgid "Manipulate hostgroups."
61
+ msgstr "Gestion des groupes d'hôtes"
62
+
63
+ #: ../lib/hammer_cli_foreman.rb:72
64
+ msgid "Manipulate locations."
65
+ msgstr "Gestion des emplacements."
66
+
67
+ #: ../lib/hammer_cli_foreman.rb:76
68
+ msgid "Manipulate installation media."
69
+ msgstr "Gestion des médias d'installation."
70
+
71
+ #: ../lib/hammer_cli_foreman.rb:80
72
+ msgid "Manipulate hardware models."
73
+ msgstr "Gestion des modèles matériel."
74
+
75
+ #: ../lib/hammer_cli_foreman.rb:84
76
+ msgid "Manipulate operating system."
77
+ msgstr "Manipulation des systèmes d'exploitation"
78
+
79
+ #: ../lib/hammer_cli_foreman.rb:88
80
+ msgid "Manipulate organizations."
81
+ msgstr "Gestion des organisations."
82
+
83
+ #: ../lib/hammer_cli_foreman.rb:92
84
+ msgid "Manipulate partition tables."
85
+ msgstr "Gestion des tables de partitions."
86
+
87
+ #: ../lib/hammer_cli_foreman.rb:96
88
+ msgid "Search puppet modules."
89
+ msgstr "Recherche des modules Puppet."
90
+
91
+ #: ../lib/hammer_cli_foreman.rb:100
92
+ msgid "Browse and read reports."
93
+ msgstr "Consulter les rapports."
94
+
95
+ #: ../lib/hammer_cli_foreman.rb:104
96
+ msgid "Manage user roles."
97
+ msgstr "Gérer les rôles utilisateur"
98
+
99
+ #: ../lib/hammer_cli_foreman.rb:108
100
+ msgid "Manipulate smart class parameters."
101
+ msgstr "Gestion des paramètres Smart Class"
102
+
103
+ #: ../lib/hammer_cli_foreman.rb:112
104
+ msgid "Manipulate smart variables."
105
+ msgstr "Manipuler les smart variables."
106
+
107
+ #: ../lib/hammer_cli_foreman.rb:116
108
+ msgid "Manipulate smart proxies."
109
+ msgstr "Gestion des Smart Proxies."
110
+
111
+ #: ../lib/hammer_cli_foreman.rb:120
112
+ msgid "Change server settings."
113
+ msgstr "Modifier les paramètres serveur."
114
+
115
+ #: ../lib/hammer_cli_foreman.rb:124
116
+ msgid "Manipulate subnets."
117
+ msgstr "Gestion des sous-réseaux."
118
+
119
+ #: ../lib/hammer_cli_foreman.rb:128
120
+ msgid "Manipulate config templates."
121
+ msgstr "Gestion des modèles de configuration."
122
+
123
+ #: ../lib/hammer_cli_foreman.rb:132
124
+ msgid "Manipulate users."
125
+ msgstr "Gestion des utilisateurs."
126
+
127
+ #: ../lib/hammer_cli_foreman.rb:136
128
+ msgid "Manage user groups."
129
+ msgstr "Gérer les groupes d'utilisateurs."
130
+
131
+ #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:159 ../lib/hammer_cli_foreman/host.rb:196 ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:64 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
132
+ msgid "Id"
133
+ msgstr "Id"
134
+
135
+ #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:160 ../lib/hammer_cli_foreman/host.rb:198 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:75 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
136
+ msgid "Name"
137
+ msgstr "Nom"
138
+
139
+ #: ../lib/hammer_cli_foreman/architecture.rb:31
140
+ msgid "Architecture created"
141
+ msgstr "Architecture créée"
142
+
143
+ #: ../lib/hammer_cli_foreman/architecture.rb:32
144
+ msgid "Could not create the architecture"
145
+ msgstr "Impossible de créer l'architecture"
146
+
147
+ #: ../lib/hammer_cli_foreman/architecture.rb:39
148
+ msgid "Architecture deleted"
149
+ msgstr "Architecture supprimée"
150
+
151
+ #: ../lib/hammer_cli_foreman/architecture.rb:40
152
+ msgid "Could not delete the architecture"
153
+ msgstr "Impossible de supprimer l'architecture"
154
+
155
+ #: ../lib/hammer_cli_foreman/architecture.rb:47
156
+ msgid "Architecture updated"
157
+ msgstr "Architecture mise à jour"
158
+
159
+ #: ../lib/hammer_cli_foreman/architecture.rb:48
160
+ msgid "Could not update the architecture"
161
+ msgstr "Impossible de mettre à jour l'architecture"
162
+
163
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:41
164
+ msgid "Associate a hostgroup"
165
+ msgstr "Associer un groupe d'hôtes"
166
+
167
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:43
168
+ #, fuzzy
169
+ msgid "The hostgroup has been associated"
170
+ msgstr "Le groupe d'utilisateurs a été associé"
171
+
172
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:44
173
+ #, fuzzy
174
+ msgid "Could not associate the hostgroup"
175
+ msgstr "Impossible d'associer le groupe d'utilisateurs"
176
+
177
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:49
178
+ msgid "Disassociate a hostgroup"
179
+ msgstr "Dissocier un groupe d'hôtes"
180
+
181
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:51
182
+ #, fuzzy
183
+ msgid "The hostgroup has been disassociated"
184
+ msgstr "Le groupe d'utilisateurs a été dissocié"
185
+
186
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:52
187
+ #, fuzzy
188
+ msgid "Could not disassociate the hostgroup"
189
+ msgstr "Impossible de dissocier le groupe d'utilisateurs"
190
+
191
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:61
192
+ msgid "Associate an environment"
193
+ msgstr "Associer à un environnement"
194
+
195
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:63
196
+ #, fuzzy
197
+ msgid "The environment has been associated"
198
+ msgstr "L'utilisateur a été associé"
199
+
200
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:64
201
+ #, fuzzy
202
+ msgid "Could not associate the environment"
203
+ msgstr "Impossible de créer l'environnement"
204
+
205
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:69
206
+ msgid "Disassociate an environment"
207
+ msgstr "Dissocier un environnement"
208
+
209
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:71
210
+ #, fuzzy
211
+ msgid "The environment has been disassociated"
212
+ msgstr "L'utilisateur a été dissocié"
213
+
214
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:72
215
+ #, fuzzy
216
+ msgid "Could not disassociate the environment"
217
+ msgstr "Impossible de créer l'environnement"
218
+
219
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:81
220
+ msgid "Associate a domain"
221
+ msgstr "Associer un domaine"
222
+
223
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:83
224
+ #, fuzzy
225
+ msgid "The domain has been associated"
226
+ msgstr "L'utilisateur a été associé"
227
+
228
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:84
229
+ #, fuzzy
230
+ msgid "Could not associate the domain"
231
+ msgstr "Impossible d'associer l'utilisateur"
232
+
233
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:89
234
+ msgid "Disassociate a domain"
235
+ msgstr "Dissocier un domaine"
236
+
237
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:91
238
+ #, fuzzy
239
+ msgid "The domain has been disassociated"
240
+ msgstr "L'utilisateur a été dissocié"
241
+
242
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:92
243
+ #, fuzzy
244
+ msgid "Could not disassociate the domain"
245
+ msgstr "Impossible de dissocier l'utilisateur"
246
+
247
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:101
248
+ msgid "Associate a medium"
249
+ msgstr "Associer un medium"
250
+
251
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:103
252
+ #, fuzzy
253
+ msgid "The medium has been associated"
254
+ msgstr "L'utilisateur a été associé"
255
+
256
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:104
257
+ #, fuzzy
258
+ msgid "Could not associate the medium"
259
+ msgstr "Impossible d'associer l'utilisateur"
260
+
261
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:109
262
+ msgid "Disassociate a medium"
263
+ msgstr "Dissocier un medium"
264
+
265
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:111
266
+ #, fuzzy
267
+ msgid "The medium has been disassociated"
268
+ msgstr "L'utilisateur a été dissocié"
269
+
270
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:112
271
+ #, fuzzy
272
+ msgid "Could not disassociate the medium"
273
+ msgstr "Impossible de dissocier l'utilisateur"
274
+
275
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:121
276
+ msgid "Associate a subnet"
277
+ msgstr "Associer un sous réseau"
278
+
279
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:123
280
+ #, fuzzy
281
+ msgid "The subnet has been associated"
282
+ msgstr "L'utilisateur a été associé"
283
+
284
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:124
285
+ #, fuzzy
286
+ msgid "Could not associate the subnet"
287
+ msgstr "Impossible d'associer l'utilisateur"
288
+
289
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:129
290
+ msgid "Disassociate a subnet"
291
+ msgstr "Dissocier un sous réseau"
292
+
293
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:131
294
+ #, fuzzy
295
+ msgid "The subnet has been disassociated"
296
+ msgstr "L'utilisateur a été dissocié"
297
+
298
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:132
299
+ #, fuzzy
300
+ msgid "Could not disassociate the subnet"
301
+ msgstr "Impossible de dissocier l'utilisateur"
302
+
303
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:141
304
+ msgid "Associate a compute resource"
305
+ msgstr "Associer une ressource d'ordinateur"
306
+
307
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:143
308
+ msgid "The compute resource has been associated"
309
+ msgstr ""
310
+
311
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:144
312
+ #, fuzzy
313
+ msgid "Could not associate the compute resource"
314
+ msgstr "Impossible de créer la ressource d'ordinateur"
315
+
316
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:149
317
+ msgid "Disassociate a compute resource"
318
+ msgstr "Dissocier une ressource d'ordinateur"
319
+
320
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:151
321
+ msgid "The compute resource has been disassociated"
322
+ msgstr ""
323
+
324
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:152
325
+ #, fuzzy
326
+ msgid "Could not disassociate the compute resource"
327
+ msgstr "Impossible de créer la ressource d'ordinateur"
328
+
329
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:161
330
+ msgid "Associate a smart proxy"
331
+ msgstr "Associer un smart proxy"
332
+
333
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:163
334
+ #, fuzzy
335
+ msgid "The smart proxy has been associated"
336
+ msgstr "Le groupe d'utilisateurs a été associé"
337
+
338
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:164
339
+ #, fuzzy
340
+ msgid "Could not associate the smart proxy"
341
+ msgstr "Impossible d'associer le groupe d'utilisateurs"
342
+
343
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:173
344
+ msgid "Disassociate a smart proxy"
345
+ msgstr "Dissocier un smart proxy"
346
+
347
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:175
348
+ #, fuzzy
349
+ msgid "The smart proxy has been disassociated"
350
+ msgstr "Le groupe d'utilisateurs a été dissocié"
351
+
352
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:176
353
+ #, fuzzy
354
+ msgid "Could not disassociate the smart proxy"
355
+ msgstr "Impossible de dissocier le groupe d'utilisateurs"
356
+
357
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:189
358
+ msgid "Associate an user"
359
+ msgstr "Associer un utilisateur"
360
+
361
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:191
362
+ msgid "The user has been associated"
363
+ msgstr "L'utilisateur a été associé"
364
+
365
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:192
366
+ msgid "Could not associate the user"
367
+ msgstr "Impossible d'associer l'utilisateur"
368
+
369
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:197
370
+ msgid "Disassociate an user"
371
+ msgstr "Dissocier un utilisateur"
372
+
373
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:199
374
+ msgid "The user has been disassociated"
375
+ msgstr "L'utilisateur a été dissocié"
376
+
377
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:200
378
+ msgid "Could not disassociate the user"
379
+ msgstr "Impossible de dissocier l'utilisateur"
380
+
381
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:209
382
+ msgid "Associate an user group"
383
+ msgstr "Associer un groupe d'utilisateurs"
384
+
385
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:213
386
+ msgid "The user group has been associated"
387
+ msgstr "Le groupe d'utilisateurs a été associé"
388
+
389
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:214
390
+ msgid "Could not associate the user group"
391
+ msgstr "Impossible d'associer le groupe d'utilisateurs"
392
+
393
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:219
394
+ msgid "Disassociate an user group"
395
+ msgstr "Dissocier un groupe d'utilisateurs"
396
+
397
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:223
398
+ msgid "The user group has been disassociated"
399
+ msgstr "Le groupe d'utilisateurs a été dissocié"
400
+
401
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:224
402
+ msgid "Could not disassociate the user group"
403
+ msgstr "Impossible de dissocier le groupe d'utilisateurs"
404
+
405
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:233
406
+ msgid "Associate a configuration template"
407
+ msgstr "Associer un modèle de configuration"
408
+
409
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:235
410
+ msgid "The configuration template has been associated"
411
+ msgstr ""
412
+
413
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:236
414
+ msgid "Could not associate the configuration template"
415
+ msgstr ""
416
+
417
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:241
418
+ msgid "Disassociate a configuration template"
419
+ msgstr "Dissocier un modèle de configuration"
420
+
421
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:243
422
+ msgid "The configuration template has been disassociated"
423
+ msgstr ""
424
+
425
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:244
426
+ msgid "Could not disassociate the configuration template"
427
+ msgstr ""
428
+
429
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:253
430
+ msgid "Associate an organization"
431
+ msgstr "Associer une organisation"
432
+
433
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:255
434
+ msgid "The organization has been associated"
435
+ msgstr ""
436
+
437
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:256
438
+ #, fuzzy
439
+ msgid "Could not associate the organization"
440
+ msgstr "Impossible de créer l'organisation"
441
+
442
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:261
443
+ msgid "Disassociate an organization"
444
+ msgstr "Dissocier une organisation"
445
+
446
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:263
447
+ msgid "The organization has been disassociated"
448
+ msgstr ""
449
+
450
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:264
451
+ #, fuzzy
452
+ msgid "Could not disassociate the organization"
453
+ msgstr "Impossible de créer l'organisation"
454
+
455
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:273
456
+ msgid "Associate an operating system"
457
+ msgstr "Associer un système d'exploitation"
458
+
459
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:275
460
+ msgid "Operating system has been associated"
461
+ msgstr "Le système d'exploitation a été associé"
462
+
463
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:276
464
+ msgid "Could not associate the operating system"
465
+ msgstr "Impossible d'associer le système d'exploitation"
466
+
467
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:282
468
+ msgid "Disassociate an operating system"
469
+ msgstr "Dissocier un système d'exploitation"
470
+
471
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:284
472
+ msgid "Operating system has been disassociated"
473
+ msgstr "Le système d'exploitation a été dissocié"
474
+
475
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:285
476
+ msgid "Could not disassociate the operating system"
477
+ msgstr "Impossible de dissocier le système d'exploitation"
478
+
479
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:294
480
+ msgid "Associate an architecture"
481
+ msgstr "Associer une architecture"
482
+
483
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:296
484
+ msgid "Architecture has been associated"
485
+ msgstr "L'architecture a été associée"
486
+
487
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:297
488
+ msgid "Could not associate the architecture"
489
+ msgstr "Impossible d'associer l'architecture"
490
+
491
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:303
492
+ msgid "Disassociate an architecture"
493
+ msgstr "Dissocier une architecture"
494
+
495
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:305
496
+ msgid "Architecture has been disassociated"
497
+ msgstr "L'architecture a été dissociée"
498
+
499
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:306
500
+ msgid "Could not disassociate the architecture"
501
+ msgstr "Impossible de dissocier l'architecture"
502
+
503
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:315
504
+ msgid "Associate a partition table"
505
+ msgstr "Associer une table de partition"
506
+
507
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:317
508
+ msgid "Partition table has been associated"
509
+ msgstr "La table de partition a été associée"
510
+
511
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:318
512
+ msgid "Could not associate the partition table"
513
+ msgstr "Impossible d'associer la table de partition"
514
+
515
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:324
516
+ msgid "Disassociate a partition table"
517
+ msgstr "Dissocier une table de partition"
518
+
519
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:326
520
+ msgid "Partition table has been disassociated"
521
+ msgstr "La table de partition a été dissociée"
522
+
523
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:327
524
+ msgid "Could not disassociate the partition table"
525
+ msgstr "Impossible de dissocier la table de partition"
526
+
527
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:336
528
+ msgid "Assign a user role"
529
+ msgstr "Assigner un rôle utilisateur"
530
+
531
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:338
532
+ msgid "User role has been assigned"
533
+ msgstr "Rôle utilisateur assigné"
534
+
535
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:339
536
+ msgid "Could not assign the user role"
537
+ msgstr "Impossible d'assigner le rôle utilisateur"
538
+
539
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:345
540
+ msgid "Remove a user role"
541
+ msgstr "Supprimer un rôle utilisateur"
542
+
543
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:347
544
+ msgid "User role has been removed"
545
+ msgstr "Rôle utilisateur supprimé"
546
+
547
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:348
548
+ msgid "Could not remove the user role"
549
+ msgstr "Impossible de supprimer le rôle utilisateur"
550
+
551
+ #: ../lib/hammer_cli_foreman/auth.rb:7
552
+ msgid "Set credentials"
553
+ msgstr "Définir les authentifiants"
554
+
555
+ #: ../lib/hammer_cli_foreman/auth.rb:20
556
+ msgid "Wipe your credentials"
557
+ msgstr "Supprimer vos authentifiants"
558
+
559
+ #: ../lib/hammer_cli_foreman/auth.rb:26
560
+ msgid "Credentials deleted."
561
+ msgstr "Identifiants supprimés"
562
+
563
+ #: ../lib/hammer_cli_foreman/auth.rb:33
564
+ msgid "Information about current connections"
565
+ msgstr "Information à propos des connexions en cours"
566
+
567
+ #: ../lib/hammer_cli_foreman/auth.rb:37
568
+ msgid "You are logged in as '%s'"
569
+ msgstr "Vous êtes identifié comme '%s'"
570
+
571
+ #: ../lib/hammer_cli_foreman/auth.rb:39
572
+ msgid ""
573
+ "You are currently not logged in to any service.\n"
574
+ "Use the service to set credentials."
575
+ msgstr ""
576
+ "Vous n'êtes actuellement pas identifié sur aucun service.\n"
577
+ "Utilisez le service pour définir vos identifiants."
578
+
579
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
580
+ msgid "Manage LDAP auth sources."
581
+ msgstr "Gérer les sources d'authentification LDAP."
582
+
583
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
584
+ msgid "LDAPS?"
585
+ msgstr "LDAPS ?"
586
+
587
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
588
+ msgid "Port"
589
+ msgstr "Port"
590
+
591
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
592
+ msgid "Server Type"
593
+ msgstr "Type de serveur"
594
+
595
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
596
+ msgid "Account Username"
597
+ msgstr "Nom du compte utilisateur"
598
+
599
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
600
+ msgid "Base DN"
601
+ msgstr "Base DN"
602
+
603
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:29
604
+ msgid "LDAP filter"
605
+ msgstr "Filtre LDAP"
606
+
607
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
608
+ msgid "Automatically Create Accounts?"
609
+ msgstr "Créer automatiquement les comptes utilisateur ?"
610
+
611
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
612
+ msgid "Login Name Attribute"
613
+ msgstr "Attribut Login"
614
+
615
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
616
+ msgid "First Name Attribute"
617
+ msgstr "Attribut prénom (First Name)"
618
+
619
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
620
+ msgid "Last Name Attribute"
621
+ msgstr "Attribut nom de famille (Last Name)"
622
+
623
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
624
+ msgid "Email Address Attribute"
625
+ msgstr "Attribut adresse mail"
626
+
627
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
628
+ msgid "Photo Attribute"
629
+ msgstr "Attribut Photo"
630
+
631
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
632
+ msgid "Auth source created"
633
+ msgstr "Source d'authentification créée"
634
+
635
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
636
+ msgid "Could not create the Auth Source"
637
+ msgstr "Impossible de créer la source d'authentification"
638
+
639
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
640
+ msgid "Auth source deleted"
641
+ msgstr "Source d'authentification supprimée"
642
+
643
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
644
+ msgid "Could not delete the Auth Source"
645
+ msgstr "Impossible de supprimer la source d'authentification"
646
+
647
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
648
+ msgid "Auth source updated"
649
+ msgstr "Source d'authentification mis à jour"
650
+
651
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
652
+ msgid "Could not update the Auth Source"
653
+ msgstr "Impossible de mettre à jour la source d'authentification"
654
+
655
+ #: ../lib/hammer_cli_foreman/commands.rb:88
656
+ msgid "Received data of unknown format"
657
+ msgstr "Format inconnu de la donnée reçue"
658
+
659
+ #: ../lib/hammer_cli_foreman/commands.rb:196
660
+ msgid "Could not find %{resource}. Some search options were missing, please see --help."
661
+ msgstr "%{resource} introuvable. Certaines options de recherche sont manquantes, veuillez consulter --help"
662
+
663
+ #: ../lib/hammer_cli_foreman/commands.rb:198
664
+ msgid "Could not find %{resource}, please set option %{switches}."
665
+ msgstr "%{resource} introuvable, veuillez définir l'option %{switches}."
666
+
667
+ #: ../lib/hammer_cli_foreman/commands.rb:200
668
+ msgid "Could not find %{resource}, please set one of options %{switches}."
669
+ msgstr "%{resource} introuvable, veuillez définir l'une des options %{switches}."
670
+
671
+ #: ../lib/hammer_cli_foreman/commands.rb:529
672
+ msgid "Associate a resource"
673
+ msgstr "Associer à une ressource"
674
+
675
+ #: ../lib/hammer_cli_foreman/commands.rb:533
676
+ msgid "Could not associate the %{resource_name}"
677
+ msgstr ""
678
+
679
+ #: ../lib/hammer_cli_foreman/commands.rb:537
680
+ msgid "The %{resource_name} has been associated"
681
+ msgstr ""
682
+
683
+ #: ../lib/hammer_cli_foreman/commands.rb:559
684
+ msgid "Disassociate a resource"
685
+ msgstr "Dissocier la ressource"
686
+
687
+ #: ../lib/hammer_cli_foreman/commands.rb:571
688
+ msgid "Could not disassociate the %{resource_name}"
689
+ msgstr ""
690
+
691
+ #: ../lib/hammer_cli_foreman/commands.rb:575
692
+ msgid "The %{resource_name} has been disassociated"
693
+ msgstr ""
694
+
695
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:323 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:66
696
+ msgid "Value"
697
+ msgstr "Valeur"
698
+
699
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:22
700
+ msgid "Set a global parameter."
701
+ msgstr "Définir un paramètre global."
702
+
703
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:24
704
+ msgid "Created parameter [%{name}] with value [%{value}]."
705
+ msgstr "Paramètre [%{name}] créé avec la valeur [%{value}] "
706
+
707
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:25
708
+ msgid "Parameter [%{name}] updated to [%{value}]."
709
+ msgstr "Paramètre [%{name}] mis à jour à la valeur [%{value}]."
710
+
711
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:27 ../lib/hammer_cli_foreman/parameter.rb:49 ../lib/hammer_cli_foreman/parameter.rb:96
712
+ msgid "parameter name"
713
+ msgstr "nom du paramètre"
714
+
715
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:28 ../lib/hammer_cli_foreman/parameter.rb:50
716
+ msgid "parameter value"
717
+ msgstr "valeur du paramètre"
718
+
719
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:53
720
+ msgid "Global parameter [%{name}] deleted."
721
+ msgstr "Paramètre global [%{name}] supprimé"
722
+
723
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:54
724
+ msgid "Could not delete the global parameter [%{name}]"
725
+ msgstr "Impossible de supprimer le paramètre global [%{name}]"
726
+
727
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:67
728
+ msgid "Manipulate global parameters."
729
+ msgstr "Gestion des paramètres globaux."
730
+
731
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:22 ../lib/hammer_cli_foreman/interface.rb:60
732
+ msgid "Provider"
733
+ msgstr "Fournisseur"
734
+
735
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:197 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
736
+ msgid "UUID"
737
+ msgstr "UUID"
738
+
739
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:37 ../lib/hammer_cli_foreman/compute_resource.rb:47
740
+ msgid "Region"
741
+ msgstr "Région"
742
+
743
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:41
744
+ msgid "Server"
745
+ msgstr "Serveur"
746
+
747
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:44
748
+ msgid "Tenant"
749
+ msgstr "Tenant"
750
+
751
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:54
752
+ msgid "Url"
753
+ msgstr "URL"
754
+
755
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:55 ../lib/hammer_cli_foreman/domain.rb:42 ../lib/hammer_cli_foreman/settings.rb:14 ../lib/hammer_cli_foreman/smart_class_parameter.rb:59 ../lib/hammer_cli_foreman/smart_variable.rb:51
756
+ msgid "Description"
757
+ msgstr "Description"
758
+
759
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:56
760
+ msgid "User"
761
+ msgstr "Utilisateur"
762
+
763
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:73
764
+ msgid "Compute resource created"
765
+ msgstr "Ressource d'ordinateur créée"
766
+
767
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:74
768
+ msgid "Could not create the compute resource"
769
+ msgstr "Impossible de créer la ressource d'ordinateur"
770
+
771
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:85
772
+ msgid "Compute resource updated"
773
+ msgstr "Ressource d'ordinateur mise à jour"
774
+
775
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:86
776
+ msgid "Could not update the compute resource"
777
+ msgstr "Impossible de mettre à jour la ressource d'ordinateur"
778
+
779
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:93
780
+ msgid "Compute resource deleted"
781
+ msgstr "Ressource d'ordinateur supprimée"
782
+
783
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:94
784
+ msgid "Could not delete the compute resource"
785
+ msgstr "Impossible de supprimer la ressource d'ordinateur"
786
+
787
+ #: ../lib/hammer_cli_foreman/credentials.rb:26
788
+ msgid "[Foreman] Username: "
789
+ msgstr "[Foreman] nom d'utilisateur :"
790
+
791
+ #: ../lib/hammer_cli_foreman/credentials.rb:33
792
+ msgid "[Foreman] Password for %s: "
793
+ msgstr "[Foreman] mot de passe pour %s :"
794
+
795
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
796
+ msgid "Use the default organization and/or location from the server"
797
+ msgstr "Utiliser les organisations et/ou emplacements par défaut de ce serveur"
798
+
799
+ #: ../lib/hammer_cli_foreman/domain.rb:6
800
+ msgid "ID of DNS proxy to use within this domain"
801
+ msgstr "ID du proxy DNS à utiliser dans ce domaine"
802
+
803
+ #: ../lib/hammer_cli_foreman/domain.rb:7
804
+ msgid "Name of DNS proxy to use within this domain"
805
+ msgstr "Nom du proxy DNS à utiliser dans ce domaine"
806
+
807
+ #: ../lib/hammer_cli_foreman/domain.rb:43
808
+ msgid "DNS Id"
809
+ msgstr "Id DNS"
810
+
811
+ #: ../lib/hammer_cli_foreman/domain.rb:57
812
+ msgid "Domain [%{name}] created"
813
+ msgstr "Domaine [%{name}] créé"
814
+
815
+ #: ../lib/hammer_cli_foreman/domain.rb:58
816
+ msgid "Could not create the domain"
817
+ msgstr "Impossible de créer le domaine"
818
+
819
+ #: ../lib/hammer_cli_foreman/domain.rb:60 ../lib/hammer_cli_foreman/domain.rb:71
820
+ msgid "Full name describing the domain"
821
+ msgstr "Nom complet décrivant le domaine"
822
+
823
+ #: ../lib/hammer_cli_foreman/domain.rb:68
824
+ msgid "Domain [%{name}] updated"
825
+ msgstr "Domaine [%{name}] mis à jour"
826
+
827
+ #: ../lib/hammer_cli_foreman/domain.rb:69
828
+ msgid "Could not update the domain"
829
+ msgstr "Impossible de mettreà jour le domaine"
830
+
831
+ #: ../lib/hammer_cli_foreman/domain.rb:78
832
+ msgid "Domain [%{name}] deleted"
833
+ msgstr "Domaine [%{name}] supprimé"
834
+
835
+ #: ../lib/hammer_cli_foreman/domain.rb:79
836
+ msgid "Could not delete the domain"
837
+ msgstr "Impossible de supprimer le domaine"
838
+
839
+ #: ../lib/hammer_cli_foreman/domain.rb:86
840
+ msgid "Create or update parameter for a domain."
841
+ msgstr "Créer ou changer un paramètre d'un domaine."
842
+
843
+ #: ../lib/hammer_cli_foreman/domain.rb:88
844
+ msgid "Domain parameter updated"
845
+ msgstr "Paramètre du domaine mis à jour"
846
+
847
+ #: ../lib/hammer_cli_foreman/domain.rb:89
848
+ msgid "New domain parameter created"
849
+ msgstr "Nouveau paramètre de domaine créé"
850
+
851
+ #: ../lib/hammer_cli_foreman/domain.rb:90
852
+ msgid "Could not set domain parameter"
853
+ msgstr "Impossible de positionner le paramètre du domaine"
854
+
855
+ #: ../lib/hammer_cli_foreman/domain.rb:102
856
+ msgid "Delete parameter for a domain."
857
+ msgstr "Suppression du paramètre d'un domaine"
858
+
859
+ #: ../lib/hammer_cli_foreman/domain.rb:104
860
+ msgid "Domain parameter deleted"
861
+ msgstr "Paramètre du domaine supprimé"
862
+
863
+ #: ../lib/hammer_cli_foreman/environment.rb:34
864
+ msgid "Environment created"
865
+ msgstr "Environnement Créé"
866
+
867
+ #: ../lib/hammer_cli_foreman/environment.rb:35
868
+ msgid "Could not create the environment"
869
+ msgstr "Impossible de créer l'environnement"
870
+
871
+ #: ../lib/hammer_cli_foreman/environment.rb:42
872
+ msgid "Environment updated"
873
+ msgstr "Environnement mis à jour"
874
+
875
+ #: ../lib/hammer_cli_foreman/environment.rb:43
876
+ msgid "Could not update the environment"
877
+ msgstr "Impossible de mettre à jour l'environnement"
878
+
879
+ #: ../lib/hammer_cli_foreman/environment.rb:50
880
+ msgid "Environment deleted"
881
+ msgstr "Environnement supprimé"
882
+
883
+ #: ../lib/hammer_cli_foreman/environment.rb:51
884
+ msgid "Could not delete the environment"
885
+ msgstr "Impossible de supprimer l'environnement"
886
+
887
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:29
888
+ msgid "Redirection of API call detected."
889
+ msgstr ""
890
+
891
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:30
892
+ msgid "It seems hammer is configured to use HTTP and the server prefers HTTPS."
893
+ msgstr ""
894
+
895
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:32
896
+ msgid "Update your server url configuration"
897
+ msgstr ""
898
+
899
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:33
900
+ msgid "you can set 'follow_redirects' to one of :default or :always to enable redirects following"
901
+ msgstr ""
902
+
903
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:54
904
+ msgid "Forbidden - server refused to process the request"
905
+ msgstr "Refusé - Le serveur refuse de traiter votre demande"
906
+
907
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:88
908
+ msgid "Could not load the API description from the server"
909
+ msgstr "Impossible de charger la description de l'API depuis le serveur"
910
+
911
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:89
912
+ msgid "is the server down?"
913
+ msgstr "Le serveur est-il éteint ?"
914
+
915
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:90
916
+ msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
917
+ msgstr "Est ce que '%s' était lancé pendant que le cache apipie était en cours d'utilisation ? (état normal pour un serveur de production)"
918
+
919
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
920
+ msgid "View and manage user group's external user groups"
921
+ msgstr "Visualiser et gérer les utilisateurs des groupes externes d'utilisateurs"
922
+
923
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
924
+ msgid "Auth source"
925
+ msgstr "Auth source"
926
+
927
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:39
928
+ msgid "Refresh external user group"
929
+ msgstr "Rafraîchir un groupe d'utilisateur externe"
930
+
931
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:57
932
+ msgid "External user group created"
933
+ msgstr "Groupe externe d'utilisateurs créé"
934
+
935
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:58
936
+ msgid "Could not create external user group"
937
+ msgstr "Impossible de créer le groupe externe d'utilisateurs"
938
+
939
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:65
940
+ msgid "External user group updated"
941
+ msgstr "Groupe externe d'utilisateurs mis à jour"
942
+
943
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:66
944
+ msgid "Could not update external user group"
945
+ msgstr "Impossible de mettre à jour le groupe externe d'utilisateurs"
946
+
947
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:73
948
+ msgid "External user group deleted"
949
+ msgstr "Groupe externe d'utilisateurs supprimé"
950
+
951
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:74
952
+ msgid "Could not delete the external user group"
953
+ msgstr "Impossible de supprimer le groupe externe d'utilisateurs"
954
+
955
+ #: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11 ../lib/hammer_cli_foreman/report.rb:31
956
+ msgid "Host"
957
+ msgstr "Hôte"
958
+
959
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:322
960
+ msgid "Fact"
961
+ msgstr "Fact"
962
+
963
+ #: ../lib/hammer_cli_foreman/filter.rb:10
964
+ msgid "Resource type"
965
+ msgstr "Type de ressource"
966
+
967
+ #: ../lib/hammer_cli_foreman/filter.rb:11
968
+ msgid "Search"
969
+ msgstr "Rechercher"
970
+
971
+ #: ../lib/hammer_cli_foreman/filter.rb:12
972
+ msgid "Unlimited?"
973
+ msgstr "Illimité?"
974
+
975
+ #: ../lib/hammer_cli_foreman/filter.rb:13
976
+ msgid "Role"
977
+ msgstr "Rôle"
978
+
979
+ #: ../lib/hammer_cli_foreman/filter.rb:14
980
+ msgid "Permissions"
981
+ msgstr "Permissions"
982
+
983
+ #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
984
+ msgid "(Miscellaneous)"
985
+ msgstr "(Divers)"
986
+
987
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
988
+ msgid "none"
989
+ msgstr "Aucun"
990
+
991
+ #: ../lib/hammer_cli_foreman/filter.rb:44
992
+ msgid "Permission filter for [%<resource_type>s] created"
993
+ msgstr "Filtre de permissions pour [%<resource_type>s] créé"
994
+
995
+ #: ../lib/hammer_cli_foreman/filter.rb:45
996
+ msgid "Could not create the permission filter"
997
+ msgstr "Impossible de créer le filtre de permission"
998
+
999
+ #: ../lib/hammer_cli_foreman/filter.rb:52
1000
+ msgid "Permission filter for [%<resource_type>s] updated"
1001
+ msgstr "Filtre de permissions pour [%<resource_type>s] mis à jour"
1002
+
1003
+ #: ../lib/hammer_cli_foreman/filter.rb:53
1004
+ msgid "Could not update the permission filter"
1005
+ msgstr "Impossible de mettre à jour le filtre de permission"
1006
+
1007
+ #: ../lib/hammer_cli_foreman/filter.rb:60
1008
+ msgid "Permission filter deleted"
1009
+ msgstr "Filtre de permission supprimé"
1010
+
1011
+ #: ../lib/hammer_cli_foreman/filter.rb:61
1012
+ msgid "Could not delete the permission filter"
1013
+ msgstr "Impossible de supprimer le filtre de permission"
1014
+
1015
+ #: ../lib/hammer_cli_foreman/filter.rb:74 ../lib/hammer_cli_foreman/report.rb:62
1016
+ msgid "Resource"
1017
+ msgstr "Ressource"
1018
+
1019
+ #: ../lib/hammer_cli_foreman/host.rb:15
1020
+ msgid "Login of the owner"
1021
+ msgstr "Informations d'identification du propriétaire"
1022
+
1023
+ #: ../lib/hammer_cli_foreman/host.rb:17
1024
+ msgid "ID of the owner"
1025
+ msgstr "ID du propriétaire"
1026
+
1027
+ #: ../lib/hammer_cli_foreman/host.rb:44
1028
+ msgid "Host parameters."
1029
+ msgstr "Paramètres de l'Hôte"
1030
+
1031
+ #: ../lib/hammer_cli_foreman/host.rb:46
1032
+ msgid "Compute resource attributes."
1033
+ msgstr "Attributs des Ressources d'Ordinateur."
1034
+
1035
+ #: ../lib/hammer_cli_foreman/host.rb:48
1036
+ msgid "Volume parameters"
1037
+ msgstr "Paramètres du Volume"
1038
+
1039
+ #: ../lib/hammer_cli_foreman/host.rb:50
1040
+ msgid "Interface parameters."
1041
+ msgstr "Paramètres d'interface"
1042
+
1043
+ #: ../lib/hammer_cli_foreman/host.rb:64
1044
+ msgid "Enter the root password for the host:"
1045
+ msgstr "Saisir le mot de passe root de l'hôte :"
1046
+
1047
+ #: ../lib/hammer_cli_foreman/host.rb:161 ../lib/hammer_cli_foreman/host.rb:237 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
1048
+ msgid "Operating System"
1049
+ msgstr "Système d'Exploitation"
1050
+
1051
+ #: ../lib/hammer_cli_foreman/host.rb:162 ../lib/hammer_cli_foreman/host.rb:201
1052
+ msgid "Host Group"
1053
+ msgstr "Groupe d'hôtes"
1054
+
1055
+ #: ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:214
1056
+ msgid "IP"
1057
+ msgstr "IP"
1058
+
1059
+ #: ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:215
1060
+ msgid "MAC"
1061
+ msgstr "MAC"
1062
+
1063
+ #: ../lib/hammer_cli_foreman/host.rb:174
1064
+ msgid "Bare Metal"
1065
+ msgstr "Bare Metal"
1066
+
1067
+ #: ../lib/hammer_cli_foreman/host.rb:199
1068
+ msgid "Organization"
1069
+ msgstr "Organisation"
1070
+
1071
+ #: ../lib/hammer_cli_foreman/host.rb:200
1072
+ msgid "Location"
1073
+ msgstr "Emplacement"
1074
+
1075
+ #: ../lib/hammer_cli_foreman/host.rb:202
1076
+ msgid "Compute Resource"
1077
+ msgstr "Ressources d'Ordinateur"
1078
+
1079
+ #: ../lib/hammer_cli_foreman/host.rb:203
1080
+ msgid "Compute Profile"
1081
+ msgstr "Profil de calcul"
1082
+
1083
+ #: ../lib/hammer_cli_foreman/host.rb:204 ../lib/hammer_cli_foreman/hostgroup.rb:61
1084
+ msgid "Environment"
1085
+ msgstr "Environnement"
1086
+
1087
+ #: ../lib/hammer_cli_foreman/host.rb:205
1088
+ msgid "Puppet CA Id"
1089
+ msgstr "ID de Puppet CA"
1090
+
1091
+ #: ../lib/hammer_cli_foreman/host.rb:206
1092
+ msgid "Puppet Master Id"
1093
+ msgstr "ID du Puppet Master"
1094
+
1095
+ #: ../lib/hammer_cli_foreman/host.rb:207
1096
+ msgid "Cert name"
1097
+ msgstr "Nom du certificat"
1098
+
1099
+ #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/interface.rb:51
1100
+ msgid "Managed"
1101
+ msgstr "Géré"
1102
+
1103
+ #: ../lib/hammer_cli_foreman/host.rb:210
1104
+ msgid "Installed at"
1105
+ msgstr "Installé le"
1106
+
1107
+ #: ../lib/hammer_cli_foreman/host.rb:211 ../lib/hammer_cli_foreman/report.rb:12
1108
+ msgid "Last report"
1109
+ msgstr "Dernier rapport"
1110
+
1111
+ #: ../lib/hammer_cli_foreman/host.rb:213 ../lib/hammer_cli_foreman/subnet.rb:12
1112
+ msgid "Network"
1113
+ msgstr "Réseau"
1114
+
1115
+ #: ../lib/hammer_cli_foreman/host.rb:216 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
1116
+ msgid "Subnet"
1117
+ msgstr "Sous-Réseau"
1118
+
1119
+ #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
1120
+ msgid "Domain"
1121
+ msgstr "Domaine"
1122
+
1123
+ #: ../lib/hammer_cli_foreman/host.rb:218
1124
+ msgid "Service provider"
1125
+ msgstr "Fournisseur de service"
1126
+
1127
+ #: ../lib/hammer_cli_foreman/host.rb:219
1128
+ msgid "SP Name"
1129
+ msgstr "SP Nom"
1130
+
1131
+ #: ../lib/hammer_cli_foreman/host.rb:220
1132
+ msgid "SP IP"
1133
+ msgstr "SP IP"
1134
+
1135
+ #: ../lib/hammer_cli_foreman/host.rb:221
1136
+ msgid "SP MAC"
1137
+ msgstr "SP MAC"
1138
+
1139
+ #: ../lib/hammer_cli_foreman/host.rb:222
1140
+ msgid "SP Subnet"
1141
+ msgstr "SP sous réseau"
1142
+
1143
+ #: ../lib/hammer_cli_foreman/host.rb:226
1144
+ msgid "Network interfaces"
1145
+ msgstr "Interfaces réseau"
1146
+
1147
+ #: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
1148
+ msgid "Identifier"
1149
+ msgstr "Identifiant"
1150
+
1151
+ #: ../lib/hammer_cli_foreman/host.rb:229 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:60 ../lib/hammer_cli_foreman/smart_class_parameter.rb:65 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:55 ../lib/hammer_cli_foreman/template.rb:27
1152
+ msgid "Type"
1153
+ msgstr "Type"
1154
+
1155
+ #: ../lib/hammer_cli_foreman/host.rb:230 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
1156
+ msgid "MAC address"
1157
+ msgstr "Adresse MAC"
1158
+
1159
+ #: ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
1160
+ msgid "IP address"
1161
+ msgstr "Adresse IP"
1162
+
1163
+ #: ../lib/hammer_cli_foreman/host.rb:232
1164
+ msgid "FQDN"
1165
+ msgstr "FQDN"
1166
+
1167
+ #: ../lib/hammer_cli_foreman/host.rb:235
1168
+ msgid "Operating system"
1169
+ msgstr "Système d'exploitation"
1170
+
1171
+ #: ../lib/hammer_cli_foreman/host.rb:236 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
1172
+ msgid "Architecture"
1173
+ msgstr "Architecture"
1174
+
1175
+ #: ../lib/hammer_cli_foreman/host.rb:240
1176
+ msgid "Build"
1177
+ msgstr "Construire"
1178
+
1179
+ #: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:77
1180
+ msgid "Medium"
1181
+ msgstr "Medium"
1182
+
1183
+ #: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/hostgroup.rb:76
1184
+ msgid "Partition Table"
1185
+ msgstr "Table de partition"
1186
+
1187
+ #: ../lib/hammer_cli_foreman/host.rb:243
1188
+ msgid "Custom partition table"
1189
+ msgstr "Table de partition spécifique"
1190
+
1191
+ #: ../lib/hammer_cli_foreman/host.rb:246
1192
+ msgid "Image"
1193
+ msgstr "Image"
1194
+
1195
+ #: ../lib/hammer_cli_foreman/host.rb:247
1196
+ msgid "Image file"
1197
+ msgstr "Fichier Image"
1198
+
1199
+ #: ../lib/hammer_cli_foreman/host.rb:248
1200
+ msgid "Use image"
1201
+ msgstr "Utiliser l'image"
1202
+
1203
+ #: ../lib/hammer_cli_foreman/host.rb:254
1204
+ msgid "Additional info"
1205
+ msgstr "Informations complémentaires"
1206
+
1207
+ #: ../lib/hammer_cli_foreman/host.rb:255
1208
+ msgid "Owner Id"
1209
+ msgstr "Id du Propriétaire"
1210
+
1211
+ #: ../lib/hammer_cli_foreman/host.rb:256
1212
+ msgid "Owner Type"
1213
+ msgstr "Type de Propriétaire"
1214
+
1215
+ #: ../lib/hammer_cli_foreman/host.rb:257
1216
+ msgid "Enabled"
1217
+ msgstr "Activé"
1218
+
1219
+ #: ../lib/hammer_cli_foreman/host.rb:258 ../lib/hammer_cli_foreman/hostgroup.rb:62
1220
+ msgid "Model"
1221
+ msgstr "Modèle"
1222
+
1223
+ #: ../lib/hammer_cli_foreman/host.rb:259
1224
+ msgid "Comment"
1225
+ msgstr "Commentaire"
1226
+
1227
+ #: ../lib/hammer_cli_foreman/host.rb:272
1228
+ msgid "Status"
1229
+ msgstr "Statut"
1230
+
1231
+ #: ../lib/hammer_cli_foreman/host.rb:273
1232
+ msgid "Power"
1233
+ msgstr "Alimentation"
1234
+
1235
+ #: ../lib/hammer_cli_foreman/host.rb:309
1236
+ msgid "Puppet run triggered"
1237
+ msgstr "Puppet Run déclenché"
1238
+
1239
+ #: ../lib/hammer_cli_foreman/host.rb:362
1240
+ msgid "Host created"
1241
+ msgstr "Hôte créé"
1242
+
1243
+ #: ../lib/hammer_cli_foreman/host.rb:363
1244
+ msgid "Could not create the host"
1245
+ msgstr "Impossible de créer l'hôte"
1246
+
1247
+ #: ../lib/hammer_cli_foreman/host.rb:380
1248
+ msgid "Host updated"
1249
+ msgstr "Hôte mis à jour"
1250
+
1251
+ #: ../lib/hammer_cli_foreman/host.rb:381
1252
+ msgid "Could not update the host"
1253
+ msgstr "Impossible de mettre à jour l'hôte"
1254
+
1255
+ #: ../lib/hammer_cli_foreman/host.rb:388
1256
+ msgid "Host deleted"
1257
+ msgstr "Hôte supprimé"
1258
+
1259
+ #: ../lib/hammer_cli_foreman/host.rb:389
1260
+ msgid "Could not delete the host"
1261
+ msgstr "Impossible de supprimer l'hôte"
1262
+
1263
+ #: ../lib/hammer_cli_foreman/host.rb:396
1264
+ msgid "Create or update parameter for a host."
1265
+ msgstr "Créer ou changer un paramètre d'un hôte."
1266
+
1267
+ #: ../lib/hammer_cli_foreman/host.rb:398
1268
+ msgid "Host parameter updated"
1269
+ msgstr "Paramètre de l'hôte mis à jour"
1270
+
1271
+ #: ../lib/hammer_cli_foreman/host.rb:399
1272
+ msgid "New host parameter created"
1273
+ msgstr "Nouveau paramètre de l'hôte créé"
1274
+
1275
+ #: ../lib/hammer_cli_foreman/host.rb:400
1276
+ msgid "Could not set host parameter"
1277
+ msgstr "Impossible de positionner le paramètre de l'hôte"
1278
+
1279
+ #: ../lib/hammer_cli_foreman/host.rb:412
1280
+ msgid "Delete parameter for a host."
1281
+ msgstr "Suppression du paramètre d'un hôte."
1282
+
1283
+ #: ../lib/hammer_cli_foreman/host.rb:414
1284
+ msgid "Host parameter deleted"
1285
+ msgstr "Paramètre de l'hôte supprimé"
1286
+
1287
+ #: ../lib/hammer_cli_foreman/host.rb:429
1288
+ msgid "Power a host on"
1289
+ msgstr "Allumer une machine"
1290
+
1291
+ #: ../lib/hammer_cli_foreman/host.rb:430
1292
+ msgid "The host is starting."
1293
+ msgstr "L'hôte démarre."
1294
+
1295
+ #: ../lib/hammer_cli_foreman/host.rb:447
1296
+ msgid "Force turning off a host"
1297
+ msgstr "Forcer l'extinction d'un hôte"
1298
+
1299
+ #: ../lib/hammer_cli_foreman/host.rb:452
1300
+ msgid "Power a host off"
1301
+ msgstr "Éteindre un hôte "
1302
+
1303
+ #: ../lib/hammer_cli_foreman/host.rb:464
1304
+ msgid "Power off forced."
1305
+ msgstr "Extinction forcée."
1306
+
1307
+ #: ../lib/hammer_cli_foreman/host.rb:466
1308
+ msgid "Powering the host off."
1309
+ msgstr "Extinction de l'hôte."
1310
+
1311
+ #: ../lib/hammer_cli_foreman/host.rb:483
1312
+ msgid "Reboot a host"
1313
+ msgstr "Redémarrage d'un hôte"
1314
+
1315
+ #: ../lib/hammer_cli_foreman/host.rb:484
1316
+ msgid "Host reboot started."
1317
+ msgstr "Redémarrage de l'hôte lancé"
1318
+
1319
+ #: ../lib/hammer_cli_foreman/host.rb:520
1320
+ msgid "Rebuild orchestration related configurations for host"
1321
+ msgstr ""
1322
+
1323
+ #: ../lib/hammer_cli_foreman/host.rb:521
1324
+ msgid "Configuration successfully rebuilt."
1325
+ msgstr ""
1326
+
1327
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:10
1328
+ msgid "List of puppetclass ids"
1329
+ msgstr "Liste des identifiants de puppetclass"
1330
+
1331
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:12
1332
+ msgid "Name of puppet CA proxy"
1333
+ msgstr "Nom du proxy pour Puppet CA"
1334
+
1335
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:13
1336
+ msgid "Name of puppet proxy"
1337
+ msgstr "Nom du proxy pour Puppet"
1338
+
1339
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1340
+ msgid "Name of parent hostgroup"
1341
+ msgstr "Nom du groupe d'hôtes parent"
1342
+
1343
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:17
1344
+ msgid "Root password"
1345
+ msgstr "Mot de passe root"
1346
+
1347
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:23
1348
+ msgid "Enter the root password for the host group:"
1349
+ msgstr "Saisir le mot de passe root du groupe d'hôtes :"
1350
+
1351
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
1352
+ msgid "Title"
1353
+ msgstr "Titre"
1354
+
1355
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:78
1356
+ msgid "Puppet CA Proxy Id"
1357
+ msgstr "Id du Proxy Puppet CA"
1358
+
1359
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:79
1360
+ msgid "Puppet Master Proxy Id"
1361
+ msgstr "Id du proxy Puppet Master"
1362
+
1363
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:80
1364
+ msgid "ComputeProfile"
1365
+ msgstr "Ressource d'ordinateur"
1366
+
1367
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:84
1368
+ msgid "Parent Id"
1369
+ msgstr "ID du parent"
1370
+
1371
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:94
1372
+ msgid "Hostgroup created"
1373
+ msgstr "Groupe d'hôtes créé"
1374
+
1375
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:95
1376
+ msgid "Could not create the hostgroup"
1377
+ msgstr "Impossible de créer le groupe d'hôtes"
1378
+
1379
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:104
1380
+ msgid "Hostgroup updated"
1381
+ msgstr "Groupe d'hôtes mis à jour"
1382
+
1383
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:105
1384
+ msgid "Could not update the hostgroup"
1385
+ msgstr "Impossible de mettre à jour le groupe d'hôtes"
1386
+
1387
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:112
1388
+ msgid "Hostgroup deleted"
1389
+ msgstr "Groupe d'hôtes supprimé"
1390
+
1391
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:113
1392
+ msgid "Could not delete the hostgroup"
1393
+ msgstr "Impossible de supprimer le groupe d'hôtes"
1394
+
1395
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:137
1396
+ msgid "Create or update parameter for a hostgroup."
1397
+ msgstr "Créer ou changer un paramètre d'un groupe d'hôtes."
1398
+
1399
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:139
1400
+ msgid "Hostgroup parameter updated"
1401
+ msgstr "Paramètre du groupe d'hôtes mis à jour"
1402
+
1403
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:140
1404
+ msgid "New hostgroup parameter created"
1405
+ msgstr "Nouveau paramètre du groupe d'hôtes créé"
1406
+
1407
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:141
1408
+ msgid "Could not set hostgroup parameter"
1409
+ msgstr "Impossible de positionner le paramètre du groupe d'hôtes"
1410
+
1411
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:148
1412
+ msgid "Delete parameter for a hostgroup."
1413
+ msgstr "Suppression du paramètre d'un groupe d'hôtes"
1414
+
1415
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:150
1416
+ msgid "Hostgroup parameter deleted"
1417
+ msgstr "Paramètre du groupe d'hôtes supprimé"
1418
+
1419
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:36
1420
+ msgid "Architecture name"
1421
+ msgstr "Nom de l'architecture"
1422
+
1423
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:37
1424
+ msgid "Compute resource name"
1425
+ msgstr "Nom de la ressource d'ordinateur"
1426
+
1427
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:38
1428
+ msgid "Domain name"
1429
+ msgstr "Nom de domaine"
1430
+
1431
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:39
1432
+ msgid "Environment name"
1433
+ msgstr "Nom de l'environnement"
1434
+
1435
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:42
1436
+ msgid "Host name"
1437
+ msgstr "Nom d'hôte"
1438
+
1439
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1440
+ msgid "Hostgroup name"
1441
+ msgstr "Nom du groupe d'hôtes"
1442
+
1443
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1444
+ msgid "Hostgroup title"
1445
+ msgstr "Titre du groupe d'hôtes"
1446
+
1447
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:46
1448
+ msgid "Location name"
1449
+ msgstr "Nom de l'emplacement"
1450
+
1451
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:47
1452
+ msgid "Medium name"
1453
+ msgstr "Nom du medium"
1454
+
1455
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:48
1456
+ msgid "Model name"
1457
+ msgstr "Nom du modèle"
1458
+
1459
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:49
1460
+ msgid "Organization name"
1461
+ msgstr "Nom de l'organisation"
1462
+
1463
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:50
1464
+ msgid "Operating system title"
1465
+ msgstr "Titre du système d'exploitation"
1466
+
1467
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:52
1468
+ msgid "Partition table name"
1469
+ msgstr "Nom de la table de partition"
1470
+
1471
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:53
1472
+ msgid "Proxy name"
1473
+ msgstr "Nom du proxy"
1474
+
1475
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:54
1476
+ msgid "Puppet class name"
1477
+ msgstr "Nom de la classe puppet"
1478
+
1479
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:55
1480
+ msgid "Report name"
1481
+ msgstr "Nom du rapport"
1482
+
1483
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:56
1484
+ msgid "User role name"
1485
+ msgstr "Nom du rôle utilisateur"
1486
+
1487
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1488
+ msgid "Setting name"
1489
+ msgstr "Nom du paramètre"
1490
+
1491
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1492
+ msgid "Subnet name"
1493
+ msgstr "Nom du sous réseau"
1494
+
1495
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:60
1496
+ msgid "User's login to search by"
1497
+ msgstr "Recherche par nom d'utilisateur"
1498
+
1499
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:61
1500
+ msgid "Common parameter name"
1501
+ msgstr "Nom du paramètre commun"
1502
+
1503
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:62
1504
+ msgid "Smart class parameter name"
1505
+ msgstr "Nom du paramètre de la smart class"
1506
+
1507
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1508
+ msgid "Smart variable name"
1509
+ msgstr "Nom de la Smart variable"
1510
+
1511
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1512
+ msgid "Name to search by"
1513
+ msgstr "Recherche par nom"
1514
+
1515
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:153 ../lib/hammer_cli_foreman/id_resolver.rb:161
1516
+ msgid "one of %s not found"
1517
+ msgstr "un sur %s introuvable"
1518
+
1519
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:208
1520
+ msgid "%s not found"
1521
+ msgstr "%s non trouvé"
1522
+
1523
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:209
1524
+ msgid "found more than one %s"
1525
+ msgstr "plus d'un %s ont été trouvés"
1526
+
1527
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:220
1528
+ msgid "Missing options to search %s"
1529
+ msgstr "Option manquante pour rechercher %s"
1530
+
1531
+ #: ../lib/hammer_cli_foreman/image.rb:8
1532
+ msgid "View and manage compute resource's images"
1533
+ msgstr "Gérer les images des ressources d'ordinateur"
1534
+
1535
+ #: ../lib/hammer_cli_foreman/image.rb:32 ../lib/hammer_cli_foreman/interface.rb:59
1536
+ msgid "Username"
1537
+ msgstr "Nom d'utilisateur"
1538
+
1539
+ #: ../lib/hammer_cli_foreman/image.rb:46
1540
+ msgid "IAM role"
1541
+ msgstr "Rôle IAM"
1542
+
1543
+ #: ../lib/hammer_cli_foreman/image.rb:56
1544
+ msgid "Show images available for addition"
1545
+ msgstr "Afficher les images disponibles pour ajout"
1546
+
1547
+ #: ../lib/hammer_cli_foreman/image.rb:81
1548
+ msgid "Image created"
1549
+ msgstr "Image créée"
1550
+
1551
+ #: ../lib/hammer_cli_foreman/image.rb:82
1552
+ msgid "Could not create the image"
1553
+ msgstr "Impossible de créer l'image"
1554
+
1555
+ #: ../lib/hammer_cli_foreman/image.rb:90
1556
+ msgid "Image updated"
1557
+ msgstr "Image mise à jour"
1558
+
1559
+ #: ../lib/hammer_cli_foreman/image.rb:91
1560
+ msgid "Could not update the image"
1561
+ msgstr "Impossible de mettre à jour l'image"
1562
+
1563
+ #: ../lib/hammer_cli_foreman/image.rb:99
1564
+ msgid "Image deleted"
1565
+ msgstr "Image supprimée"
1566
+
1567
+ #: ../lib/hammer_cli_foreman/image.rb:100
1568
+ msgid "Could not delete the image"
1569
+ msgstr "Impossible de supprimer l'image"
1570
+
1571
+ #: ../lib/hammer_cli_foreman/interface.rb:6
1572
+ msgid "View and manage host's network interfaces"
1573
+ msgstr "Voir et gérer les interfaces réseau de cet hôte"
1574
+
1575
+ #: ../lib/hammer_cli_foreman/interface.rb:10
1576
+ msgid "primary"
1577
+ msgstr "primaire"
1578
+
1579
+ #: ../lib/hammer_cli_foreman/interface.rb:11
1580
+ msgid "provision"
1581
+ msgstr "provisionner"
1582
+
1583
+ #: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
1584
+ msgid "DNS name"
1585
+ msgstr "Nom DNS"
1586
+
1587
+ #: ../lib/hammer_cli_foreman/interface.rb:52
1588
+ msgid "Primary"
1589
+ msgstr "Primaire"
1590
+
1591
+ #: ../lib/hammer_cli_foreman/interface.rb:53
1592
+ msgid "Provision"
1593
+ msgstr "Provisionner"
1594
+
1595
+ #: ../lib/hammer_cli_foreman/interface.rb:54
1596
+ msgid "Virtual"
1597
+ msgstr "Virtuel"
1598
+
1599
+ #: ../lib/hammer_cli_foreman/interface.rb:55
1600
+ msgid "Tag"
1601
+ msgstr "Tag"
1602
+
1603
+ #: ../lib/hammer_cli_foreman/interface.rb:56
1604
+ msgid "Attached to"
1605
+ msgstr "Attaché à"
1606
+
1607
+ #: ../lib/hammer_cli_foreman/interface.rb:58
1608
+ msgid "BMC"
1609
+ msgstr "BMC"
1610
+
1611
+ #: ../lib/hammer_cli_foreman/interface.rb:63
1612
+ msgid "Bond"
1613
+ msgstr "Agrégat"
1614
+
1615
+ #: ../lib/hammer_cli_foreman/interface.rb:64
1616
+ msgid "Mode"
1617
+ msgstr "Mode"
1618
+
1619
+ #: ../lib/hammer_cli_foreman/interface.rb:65
1620
+ msgid "Attached devices"
1621
+ msgstr "Périphériques attachés"
1622
+
1623
+ #: ../lib/hammer_cli_foreman/interface.rb:66
1624
+ msgid "Bond options"
1625
+ msgstr "Options de l'aggrégat"
1626
+
1627
+ #: ../lib/hammer_cli_foreman/interface.rb:77
1628
+ msgid "Should this interface be used for constructing the FQDN of the host? Each managed hosts needs to have one primary interface."
1629
+ msgstr "Cette interface doit-elle être utilisée pour choisir le FQDN de l'hôte ? Chaque hôte géré doit avoir une interface primaire."
1630
+
1631
+ #: ../lib/hammer_cli_foreman/interface.rb:78
1632
+ msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-based hosts)? Each managed hosts needs to have one provision interface."
1633
+ msgstr "Cette interface doit-elle être utilisée pour les communications TFTP issues de PXELinux (ou SSH pour les images d'hôtes) ? Chaque hôte géré doit avoir une interface de provisioning."
1634
+
1635
+ #: ../lib/hammer_cli_foreman/interface.rb:128
1636
+ msgid "Interface created"
1637
+ msgstr "Interface créée"
1638
+
1639
+ #: ../lib/hammer_cli_foreman/interface.rb:129
1640
+ msgid "Could not create the interface"
1641
+ msgstr "Impossible de créer l'interface"
1642
+
1643
+ #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1644
+ msgid "Compute resource specific attributes."
1645
+ msgstr "Attributs des ressources de calcul."
1646
+
1647
+ #: ../lib/hammer_cli_foreman/interface.rb:141
1648
+ msgid "Interface updated"
1649
+ msgstr "Interface mis à jour"
1650
+
1651
+ #: ../lib/hammer_cli_foreman/interface.rb:142
1652
+ msgid "Could not update the interface"
1653
+ msgstr "Impossible de mettre à jour l'interface"
1654
+
1655
+ #: ../lib/hammer_cli_foreman/interface.rb:154
1656
+ msgid "Interface deleted"
1657
+ msgstr "Interface supprimée"
1658
+
1659
+ #: ../lib/hammer_cli_foreman/interface.rb:155
1660
+ msgid "Could not delete the interface"
1661
+ msgstr "Impossible de supprimer cette interface"
1662
+
1663
+ #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:63 ../lib/hammer_cli_foreman/location.rb:75
1664
+ msgid "Location numeric id to search by"
1665
+ msgstr "Recherche par id d'emplacement"
1666
+
1667
+ #: ../lib/hammer_cli_foreman/location.rb:27 ../lib/hammer_cli_foreman/organization.rb:27
1668
+ #, fuzzy
1669
+ msgid "Parent"
1670
+ msgstr "ID du parent"
1671
+
1672
+ #: ../lib/hammer_cli_foreman/location.rb:38 ../lib/hammer_cli_foreman/references.rb:18
1673
+ msgid "Organizations"
1674
+ msgstr "Organisations"
1675
+
1676
+ #: ../lib/hammer_cli_foreman/location.rb:53
1677
+ msgid "Location created"
1678
+ msgstr "Emplacement créé"
1679
+
1680
+ #: ../lib/hammer_cli_foreman/location.rb:54
1681
+ msgid "Could not create the location"
1682
+ msgstr "Impossible de créer l'emplacement"
1683
+
1684
+ #: ../lib/hammer_cli_foreman/location.rb:65
1685
+ msgid "Location updated"
1686
+ msgstr "Emplacement mis à jour"
1687
+
1688
+ #: ../lib/hammer_cli_foreman/location.rb:66
1689
+ msgid "Could not update the location"
1690
+ msgstr "Impossible de mettre à jour l'emplacement"
1691
+
1692
+ #: ../lib/hammer_cli_foreman/location.rb:77
1693
+ msgid "Location deleted"
1694
+ msgstr "Emplacement supprimé"
1695
+
1696
+ #: ../lib/hammer_cli_foreman/location.rb:78
1697
+ msgid "Could not delete the location"
1698
+ msgstr "Impossible de supprimer l'emplacement"
1699
+
1700
+ #: ../lib/hammer_cli_foreman/location.rb:87
1701
+ msgid "Create or update parameter for a location."
1702
+ msgstr "Créer ou changer un paramètre d'un emplacement."
1703
+
1704
+ #: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
1705
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1706
+ msgstr "Paramètre [%{name}] mis à jour avec la valeur [%{value}]"
1707
+
1708
+ #: ../lib/hammer_cli_foreman/location.rb:90 ../lib/hammer_cli_foreman/organization.rb:91
1709
+ msgid "Parameter [%{name}] created with value [%{value}]"
1710
+ msgstr "Paramètre [%{name}] créé avec la valeur [%{value}]"
1711
+
1712
+ #: ../lib/hammer_cli_foreman/location.rb:91
1713
+ msgid "Could not set location parameter"
1714
+ msgstr "Impossible de positionner le paramètre de l'emplacement"
1715
+
1716
+ #: ../lib/hammer_cli_foreman/location.rb:98
1717
+ msgid "Delete parameter for a location."
1718
+ msgstr "Suppression du paramètre d'un emplacement."
1719
+
1720
+ #: ../lib/hammer_cli_foreman/location.rb:100 ../lib/hammer_cli_foreman/organization.rb:101
1721
+ msgid "Parameter [%{name}] deleted"
1722
+ msgstr "Paramètre [%{name}] supprimé"
1723
+
1724
+ #: ../lib/hammer_cli_foreman/location.rb:101
1725
+ msgid "Could not delete location parameter"
1726
+ msgstr "Impossible de supprimer le paramètre de l'emplacement"
1727
+
1728
+ #: ../lib/hammer_cli_foreman/media.rb:11
1729
+ msgid "Path"
1730
+ msgstr "Chemin"
1731
+
1732
+ #: ../lib/hammer_cli_foreman/media.rb:20 ../lib/hammer_cli_foreman/partition_table.rb:12
1733
+ msgid "OS Family"
1734
+ msgstr "Famille du système d'exploitation"
1735
+
1736
+ #: ../lib/hammer_cli_foreman/media.rb:32
1737
+ msgid "Installation medium created"
1738
+ msgstr "Média d'installation créé"
1739
+
1740
+ #: ../lib/hammer_cli_foreman/media.rb:33
1741
+ msgid "Could not create the installation medium"
1742
+ msgstr "Impossible de créer le média d'installation"
1743
+
1744
+ #: ../lib/hammer_cli_foreman/media.rb:41
1745
+ msgid "Installation medium updated"
1746
+ msgstr "Média d'installation mis à jour"
1747
+
1748
+ #: ../lib/hammer_cli_foreman/media.rb:42
1749
+ msgid "Could not update the installation media"
1750
+ msgstr "Impossible de mettre à jour le média d'installation"
1751
+
1752
+ #: ../lib/hammer_cli_foreman/media.rb:50
1753
+ msgid "Installation medium deleted"
1754
+ msgstr "Média d'installation supprimé"
1755
+
1756
+ #: ../lib/hammer_cli_foreman/media.rb:51
1757
+ msgid "Could not delete the installation media"
1758
+ msgstr "Impossible de supprimer le média d'installation"
1759
+
1760
+ #: ../lib/hammer_cli_foreman/model.rb:12
1761
+ msgid "Vendor class"
1762
+ msgstr "Famille de produits du fournisseur"
1763
+
1764
+ #: ../lib/hammer_cli_foreman/model.rb:13
1765
+ msgid "HW model"
1766
+ msgstr "Modèle matériel"
1767
+
1768
+ #: ../lib/hammer_cli_foreman/model.rb:22
1769
+ msgid "Info"
1770
+ msgstr "Info"
1771
+
1772
+ #: ../lib/hammer_cli_foreman/model.rb:31
1773
+ msgid "Hardware model created"
1774
+ msgstr "Modèle matériel créé"
1775
+
1776
+ #: ../lib/hammer_cli_foreman/model.rb:32
1777
+ msgid "Could not create the hardware model"
1778
+ msgstr "Impossible de créer le modèle matériel"
1779
+
1780
+ #: ../lib/hammer_cli_foreman/model.rb:38
1781
+ msgid "Hardware model deleted"
1782
+ msgstr "Modèle matériel supprimé"
1783
+
1784
+ #: ../lib/hammer_cli_foreman/model.rb:39
1785
+ msgid "Could not delete the hardware model"
1786
+ msgstr "Impossible de supprimer le modèle matériel"
1787
+
1788
+ #: ../lib/hammer_cli_foreman/model.rb:46
1789
+ msgid "Hardware model updated"
1790
+ msgstr "Modèle matériel mis à jour"
1791
+
1792
+ #: ../lib/hammer_cli_foreman/model.rb:47
1793
+ msgid "Could not update the hardware model"
1794
+ msgstr "Impossible de mettre à jour le modèle de matériel"
1795
+
1796
+ #: ../lib/hammer_cli_foreman/operating_system.rb:12
1797
+ msgid "Release name"
1798
+ msgstr "Nom de version"
1799
+
1800
+ #: ../lib/hammer_cli_foreman/operating_system.rb:13
1801
+ msgid "Family"
1802
+ msgstr "Famille"
1803
+
1804
+ #: ../lib/hammer_cli_foreman/operating_system.rb:23
1805
+ msgid "Major version"
1806
+ msgstr "Version majeur"
1807
+
1808
+ #: ../lib/hammer_cli_foreman/operating_system.rb:24
1809
+ msgid "Minor version"
1810
+ msgstr "Version mineur"
1811
+
1812
+ #: ../lib/hammer_cli_foreman/operating_system.rb:25
1813
+ msgid "Partition tables"
1814
+ msgstr "Tables de partition"
1815
+
1816
+ #: ../lib/hammer_cli_foreman/operating_system.rb:28
1817
+ msgid "Default templates"
1818
+ msgstr "Modèles par défaut"
1819
+
1820
+ #: ../lib/hammer_cli_foreman/operating_system.rb:31
1821
+ msgid "Architectures"
1822
+ msgstr "Architectures"
1823
+
1824
+ #: ../lib/hammer_cli_foreman/operating_system.rb:44
1825
+ msgid "Operating system created"
1826
+ msgstr "Système d'exploitation créé"
1827
+
1828
+ #: ../lib/hammer_cli_foreman/operating_system.rb:45
1829
+ msgid "Could not create the operating system"
1830
+ msgstr "Impossible de créer le système d'exploitation"
1831
+
1832
+ #: ../lib/hammer_cli_foreman/operating_system.rb:52
1833
+ msgid "Operating system updated"
1834
+ msgstr "Système d'exploitation mis à jour"
1835
+
1836
+ #: ../lib/hammer_cli_foreman/operating_system.rb:53
1837
+ msgid "Could not update the operating system"
1838
+ msgstr "Impossible de mettre à jour le système d'exploitation"
1839
+
1840
+ #: ../lib/hammer_cli_foreman/operating_system.rb:60
1841
+ msgid "Operating system deleted"
1842
+ msgstr "Système d'exploitation supprimé"
1843
+
1844
+ #: ../lib/hammer_cli_foreman/operating_system.rb:61
1845
+ msgid "Could not delete the operating system"
1846
+ msgstr "Impossible de supprimer le système d'expoitation"
1847
+
1848
+ #: ../lib/hammer_cli_foreman/operating_system.rb:68
1849
+ msgid "Create or update parameter for an operating system."
1850
+ msgstr "Créer ou changer un paramètre d'un système d'exploitation."
1851
+
1852
+ #: ../lib/hammer_cli_foreman/operating_system.rb:70
1853
+ msgid "Operating system parameter updated"
1854
+ msgstr "Paramètre du système d'exploitation mis à jour"
1855
+
1856
+ #: ../lib/hammer_cli_foreman/operating_system.rb:71
1857
+ msgid "New operating system parameter created"
1858
+ msgstr "Nouveau paramètre du système d'exploitation créé"
1859
+
1860
+ #: ../lib/hammer_cli_foreman/operating_system.rb:72
1861
+ msgid "Could not set operating system parameter"
1862
+ msgstr "Impossible de positionner le paramètre du système d'exploitation"
1863
+
1864
+ #: ../lib/hammer_cli_foreman/operating_system.rb:84
1865
+ msgid "Delete parameter for an operating system."
1866
+ msgstr "Suppression du paramètre d'un système d'exploitation"
1867
+
1868
+ #: ../lib/hammer_cli_foreman/operating_system.rb:86
1869
+ msgid "operating system parameter deleted"
1870
+ msgstr "Paramètre du système d'exploitation supprimé"
1871
+
1872
+ #: ../lib/hammer_cli_foreman/operating_system.rb:101 ../lib/hammer_cli_foreman/operating_system.rb:167
1873
+ msgid "operatingsystem id"
1874
+ msgstr "id du système d'exploitation"
1875
+
1876
+ #: ../lib/hammer_cli_foreman/operating_system.rb:102
1877
+ msgid "config template id to be set"
1878
+ msgstr "id du modèle de configuration à configurer"
1879
+
1880
+ #: ../lib/hammer_cli_foreman/operating_system.rb:105
1881
+ msgid "[%{config_template_name}] was set as default %{template_kind_name} template"
1882
+ msgstr "[%{config_template_name}] a été défini comme modèle %{template_kind_name} par défaut"
1883
+
1884
+ #: ../lib/hammer_cli_foreman/operating_system.rb:106
1885
+ msgid "Could not set the os default template"
1886
+ msgstr "Impossible de définir le modèle de système d'exploitation par défaut"
1887
+
1888
+ #: ../lib/hammer_cli_foreman/operating_system.rb:168
1889
+ msgid "Type of the config template"
1890
+ msgstr "Type de modèle de configuration"
1891
+
1892
+ #: ../lib/hammer_cli_foreman/operating_system.rb:170
1893
+ msgid "Default template deleted"
1894
+ msgstr "Modèle de configuration par défaut supprimé"
1895
+
1896
+ #: ../lib/hammer_cli_foreman/operating_system.rb:171
1897
+ msgid "Could not delete the default template"
1898
+ msgstr "Impossible de supprimer le modèle de configuration par défaut"
1899
+
1900
+ #: ../lib/hammer_cli_foreman/operating_system.rb:178
1901
+ msgid "Default template of type %s not found"
1902
+ msgstr "Modèle par défaut de type %s non trouvé"
1903
+
1904
+ #: ../lib/hammer_cli_foreman/organization.rb:38 ../lib/hammer_cli_foreman/references.rb:15
1905
+ msgid "Locations"
1906
+ msgstr "Emplacements"
1907
+
1908
+ #: ../lib/hammer_cli_foreman/organization.rb:54
1909
+ msgid "Organization created"
1910
+ msgstr "Organisation créée"
1911
+
1912
+ #: ../lib/hammer_cli_foreman/organization.rb:55
1913
+ msgid "Could not create the organization"
1914
+ msgstr "Impossible de créer l'organisation"
1915
+
1916
+ #: ../lib/hammer_cli_foreman/organization.rb:66
1917
+ msgid "Organization updated"
1918
+ msgstr "Organisation mise à jour"
1919
+
1920
+ #: ../lib/hammer_cli_foreman/organization.rb:67
1921
+ msgid "Could not update the organization"
1922
+ msgstr "Impossible de mettre à jour l'organisation"
1923
+
1924
+ #: ../lib/hammer_cli_foreman/organization.rb:78
1925
+ msgid "Organization deleted"
1926
+ msgstr "Organisation supprimée"
1927
+
1928
+ #: ../lib/hammer_cli_foreman/organization.rb:79
1929
+ msgid "Could not delete the organization"
1930
+ msgstr "Impossible de supprimer l'organisation"
1931
+
1932
+ #: ../lib/hammer_cli_foreman/organization.rb:88
1933
+ msgid "Create or update parameter for an organization."
1934
+ msgstr "Créer ou changer un paramètre d'une organisation."
1935
+
1936
+ #: ../lib/hammer_cli_foreman/organization.rb:92
1937
+ msgid "Could not set organization parameter"
1938
+ msgstr "Impossible de positionner le paramètre de l'organisation"
1939
+
1940
+ #: ../lib/hammer_cli_foreman/organization.rb:99
1941
+ msgid "Delete parameter for an organization."
1942
+ msgstr "Supprimer un paramètre d'une organisation."
1943
+
1944
+ #: ../lib/hammer_cli_foreman/organization.rb:102
1945
+ msgid "Could not delete organization parameter"
1946
+ msgstr "Impossible de supprimer le paramètre de l'organisation"
1947
+
1948
+ #: ../lib/hammer_cli_foreman/partition_table.rb:21 ../lib/hammer_cli_foreman/template.rb:48
1949
+ msgid "Locked"
1950
+ msgstr ""
1951
+
1952
+ #: ../lib/hammer_cli_foreman/partition_table.rb:32
1953
+ msgid "View partition table content."
1954
+ msgstr "Voir le contenu de la table de partition"
1955
+
1956
+ #: ../lib/hammer_cli_foreman/partition_table.rb:44 ../lib/hammer_cli_foreman/partition_table.rb:55
1957
+ msgid "Path to a file that contains the partition layout"
1958
+ msgstr "Chemin du fichier contenant la table de partition"
1959
+
1960
+ #: ../lib/hammer_cli_foreman/partition_table.rb:47
1961
+ msgid "Partition table created"
1962
+ msgstr "Table de partition créée"
1963
+
1964
+ #: ../lib/hammer_cli_foreman/partition_table.rb:48
1965
+ msgid "Could not create the partition table"
1966
+ msgstr "Impossible de créer la table de partition"
1967
+
1968
+ #: ../lib/hammer_cli_foreman/partition_table.rb:58
1969
+ msgid "Partition table updated"
1970
+ msgstr "Table de partition mise à jour"
1971
+
1972
+ #: ../lib/hammer_cli_foreman/partition_table.rb:59
1973
+ msgid "Could not update the partition table"
1974
+ msgstr "Impossible de mettre à jour la table de partition"
1975
+
1976
+ #: ../lib/hammer_cli_foreman/partition_table.rb:66
1977
+ msgid "Partition table deleted"
1978
+ msgstr "Table de partition supprimée"
1979
+
1980
+ #: ../lib/hammer_cli_foreman/partition_table.rb:67
1981
+ msgid "Could not delete the partition table"
1982
+ msgstr "Impossible de supprimer la table de partition"
1983
+
1984
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:34
1985
+ msgid "Smart variables"
1986
+ msgstr "Smart variables"
1987
+
1988
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:35 ../lib/hammer_cli_foreman/smart_class_parameter.rb:10
1989
+ msgid "Parameter"
1990
+ msgstr "Paramètre"
1991
+
1992
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:36
1993
+ msgid "Default value"
1994
+ msgstr "Valeur par défaut"
1995
+
1996
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:38
1997
+ msgid "Smart class parameters"
1998
+ msgstr "Paramètres smart class"
1999
+
2000
+ #: ../lib/hammer_cli_foreman/references.rb:8
2001
+ msgid "Created at"
2002
+ msgstr "Créé le"
2003
+
2004
+ #: ../lib/hammer_cli_foreman/references.rb:9
2005
+ msgid "Updated at"
2006
+ msgstr "Mis à jour le"
2007
+
2008
+ #: ../lib/hammer_cli_foreman/references.rb:26
2009
+ msgid "Users"
2010
+ msgstr "Utilisateurs"
2011
+
2012
+ #: ../lib/hammer_cli_foreman/references.rb:34
2013
+ msgid "User groups"
2014
+ msgstr "Groupes utilisateur"
2015
+
2016
+ #: ../lib/hammer_cli_foreman/references.rb:42
2017
+ msgid "Smart proxies"
2018
+ msgstr "Smart Proxies"
2019
+
2020
+ #: ../lib/hammer_cli_foreman/references.rb:50
2021
+ msgid "Compute resources"
2022
+ msgstr "Ressources d'Ordinateur"
2023
+
2024
+ #: ../lib/hammer_cli_foreman/references.rb:58
2025
+ msgid "Installation media"
2026
+ msgstr "Média d'installation"
2027
+
2028
+ #: ../lib/hammer_cli_foreman/references.rb:66
2029
+ msgid "Templates"
2030
+ msgstr "Modèles"
2031
+
2032
+ #: ../lib/hammer_cli_foreman/references.rb:74
2033
+ msgid "Domains"
2034
+ msgstr "Domaines"
2035
+
2036
+ #: ../lib/hammer_cli_foreman/references.rb:82
2037
+ msgid "Environments"
2038
+ msgstr "Environnements"
2039
+
2040
+ #: ../lib/hammer_cli_foreman/references.rb:90
2041
+ msgid "Hostgroups"
2042
+ msgstr "Groupes d'hôtes"
2043
+
2044
+ #: ../lib/hammer_cli_foreman/references.rb:98
2045
+ msgid "Subnets"
2046
+ msgstr "Sous-réseaux"
2047
+
2048
+ #: ../lib/hammer_cli_foreman/references.rb:107
2049
+ msgid "Parameters"
2050
+ msgstr "Paramètres"
2051
+
2052
+ #: ../lib/hammer_cli_foreman/references.rb:115
2053
+ msgid "Puppetclasses"
2054
+ msgstr "Classes Puppet"
2055
+
2056
+ #: ../lib/hammer_cli_foreman/references.rb:123
2057
+ msgid "Operating systems"
2058
+ msgstr "Systèmes d'exploitations"
2059
+
2060
+ #: ../lib/hammer_cli_foreman/references.rb:131
2061
+ msgid "Roles"
2062
+ msgstr "Rôles"
2063
+
2064
+ #: ../lib/hammer_cli_foreman/references.rb:139
2065
+ msgid "External user groups"
2066
+ msgstr "Groupes externes d'utilisateurs"
2067
+
2068
+ #: ../lib/hammer_cli_foreman/report.rb:14 ../lib/hammer_cli_foreman/report.rb:35
2069
+ msgid "Applied"
2070
+ msgstr "Appliqué"
2071
+
2072
+ #: ../lib/hammer_cli_foreman/report.rb:15 ../lib/hammer_cli_foreman/report.rb:36
2073
+ msgid "Restarted"
2074
+ msgstr "Redémarré"
2075
+
2076
+ #: ../lib/hammer_cli_foreman/report.rb:16 ../lib/hammer_cli_foreman/report.rb:37
2077
+ msgid "Failed"
2078
+ msgstr "Échoué"
2079
+
2080
+ #: ../lib/hammer_cli_foreman/report.rb:17 ../lib/hammer_cli_foreman/report.rb:38
2081
+ msgid "Restart Failures"
2082
+ msgstr "Échec Redémarrages"
2083
+
2084
+ #: ../lib/hammer_cli_foreman/report.rb:18 ../lib/hammer_cli_foreman/report.rb:39
2085
+ msgid "Skipped"
2086
+ msgstr "Omis"
2087
+
2088
+ #: ../lib/hammer_cli_foreman/report.rb:19 ../lib/hammer_cli_foreman/report.rb:40
2089
+ msgid "Pending"
2090
+ msgstr "En cours"
2091
+
2092
+ #: ../lib/hammer_cli_foreman/report.rb:32
2093
+ msgid "Reported at"
2094
+ msgstr "Rapporté le"
2095
+
2096
+ #: ../lib/hammer_cli_foreman/report.rb:33
2097
+ msgid "Report status"
2098
+ msgstr "Statut du rapport"
2099
+
2100
+ #: ../lib/hammer_cli_foreman/report.rb:43
2101
+ msgid "Report metrics"
2102
+ msgstr "Métriques du rapport"
2103
+
2104
+ #: ../lib/hammer_cli_foreman/report.rb:46
2105
+ msgid "config_retrieval"
2106
+ msgstr "config_retrieval"
2107
+
2108
+ #: ../lib/hammer_cli_foreman/report.rb:47
2109
+ msgid "exec"
2110
+ msgstr "exec"
2111
+
2112
+ #: ../lib/hammer_cli_foreman/report.rb:48
2113
+ msgid "file"
2114
+ msgstr "file"
2115
+
2116
+ #: ../lib/hammer_cli_foreman/report.rb:49
2117
+ msgid "package"
2118
+ msgstr "package"
2119
+
2120
+ #: ../lib/hammer_cli_foreman/report.rb:50
2121
+ msgid "service"
2122
+ msgstr "service"
2123
+
2124
+ #: ../lib/hammer_cli_foreman/report.rb:51
2125
+ msgid "user"
2126
+ msgstr "user"
2127
+
2128
+ #: ../lib/hammer_cli_foreman/report.rb:52
2129
+ msgid "yumrepo"
2130
+ msgstr "yumrepo"
2131
+
2132
+ #: ../lib/hammer_cli_foreman/report.rb:53
2133
+ msgid "filebucket"
2134
+ msgstr "filebucket"
2135
+
2136
+ #: ../lib/hammer_cli_foreman/report.rb:54
2137
+ msgid "cron"
2138
+ msgstr "cron"
2139
+
2140
+ #: ../lib/hammer_cli_foreman/report.rb:55
2141
+ msgid "total"
2142
+ msgstr "total"
2143
+
2144
+ #: ../lib/hammer_cli_foreman/report.rb:59
2145
+ msgid "Logs"
2146
+ msgstr "Logs"
2147
+
2148
+ #: ../lib/hammer_cli_foreman/report.rb:65
2149
+ msgid "Message"
2150
+ msgstr "Message"
2151
+
2152
+ #: ../lib/hammer_cli_foreman/report.rb:76
2153
+ msgid "Report has been deleted"
2154
+ msgstr "Le aapport a été supprimé"
2155
+
2156
+ #: ../lib/hammer_cli_foreman/report.rb:77
2157
+ msgid "Could not delete the report"
2158
+ msgstr "Impossible de supprimer le rapport"
2159
+
2160
+ #: ../lib/hammer_cli_foreman/resource_supported_test.rb:11
2161
+ msgid "The server does not support such operation."
2162
+ msgstr "Le serveur ne supporte pas cette opération."
2163
+
2164
+ #: ../lib/hammer_cli_foreman/role.rb:20
2165
+ msgid "Builtin"
2166
+ msgstr "Intégré"
2167
+
2168
+ #: ../lib/hammer_cli_foreman/role.rb:24
2169
+ msgid "Yes"
2170
+ msgstr "Oui"
2171
+
2172
+ #: ../lib/hammer_cli_foreman/role.rb:24
2173
+ msgid "No"
2174
+ msgstr "Non"
2175
+
2176
+ #: ../lib/hammer_cli_foreman/role.rb:36
2177
+ msgid "User role id"
2178
+ msgstr "Identifiant du rôle utilisateur"
2179
+
2180
+ #: ../lib/hammer_cli_foreman/role.rb:64
2181
+ msgid "User role [%<name>s] created"
2182
+ msgstr "Rôle utilisateur [%<name>s] créé"
2183
+
2184
+ #: ../lib/hammer_cli_foreman/role.rb:65
2185
+ msgid "Could not create the user role"
2186
+ msgstr "Impossible de créer le rôle utilisateur"
2187
+
2188
+ #: ../lib/hammer_cli_foreman/role.rb:72
2189
+ msgid "User role [%<name>s] updated"
2190
+ msgstr "Rôle utilisateur [%<name>s] mis à jour"
2191
+
2192
+ #: ../lib/hammer_cli_foreman/role.rb:73
2193
+ msgid "Could not update the user role"
2194
+ msgstr "Impossible de mettre à jour le rôle utilisateur"
2195
+
2196
+ #: ../lib/hammer_cli_foreman/role.rb:80
2197
+ msgid "User role [%<name>s] deleted"
2198
+ msgstr "Rôle utilisateur [%<name>s] supprimé"
2199
+
2200
+ #: ../lib/hammer_cli_foreman/role.rb:81
2201
+ msgid "Could not delete the user roles"
2202
+ msgstr "Impossible de supprimer le rôle utilisateur"
2203
+
2204
+ #: ../lib/hammer_cli_foreman/settings.rb:28
2205
+ msgid "Setting [%{name}] updated to [%{value}]"
2206
+ msgstr "Paramètre [%{name}] mis à jour à [%{value}]"
2207
+
2208
+ #: ../lib/hammer_cli_foreman/settings.rb:29
2209
+ msgid "Could not update the setting"
2210
+ msgstr "Impossible de mettre à jour le paramètre"
2211
+
2212
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
2213
+ msgid "Default Value"
2214
+ msgstr "Valeur par défaut"
2215
+
2216
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:12
2217
+ msgid "Override"
2218
+ msgstr "surcharger"
2219
+
2220
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:35 ../lib/hammer_cli_foreman/smart_variable.rb:27
2221
+ msgid "Puppet class"
2222
+ msgstr "Classe Puppet"
2223
+
2224
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:36 ../lib/hammer_cli_foreman/smart_variable.rb:28
2225
+ msgid "Class Id"
2226
+ msgstr "Id de classe"
2227
+
2228
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:61 ../lib/hammer_cli_foreman/smart_variable.rb:52
2229
+ msgid "Hidden Value?"
2230
+ msgstr ""
2231
+
2232
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62
2233
+ msgid "Required"
2234
+ msgstr "Requis"
2235
+
2236
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:64 ../lib/hammer_cli_foreman/smart_variable.rb:54
2237
+ msgid "Validator"
2238
+ msgstr "Validateur"
2239
+
2240
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:56
2241
+ msgid "Rule"
2242
+ msgstr "Règle"
2243
+
2244
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:68 ../lib/hammer_cli_foreman/smart_variable.rb:58
2245
+ msgid "Override values"
2246
+ msgstr "Surcharger les valeurs"
2247
+
2248
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:69 ../lib/hammer_cli_foreman/smart_variable.rb:59
2249
+ msgid "Merge overrides"
2250
+ msgstr "Fusionner les surcharges"
2251
+
2252
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:60
2253
+ msgid "Merge default value"
2254
+ msgstr "Fusionner la valeur par défaut"
2255
+
2256
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:61
2257
+ msgid "Avoid duplicates"
2258
+ msgstr "Eviter les doublons"
2259
+
2260
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:62
2261
+ msgid "Order"
2262
+ msgstr "Ordre"
2263
+
2264
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:63
2265
+ msgid "Values"
2266
+ msgstr "Valeurs"
2267
+
2268
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_variable.rb:65
2269
+ msgid "Match"
2270
+ msgstr "Correspond"
2271
+
2272
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:102
2273
+ msgid "Parameter updated"
2274
+ msgstr "Paramètre mis à jour"
2275
+
2276
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:103
2277
+ msgid "Could not update the parameter"
2278
+ msgstr "Impossible de mettre à jour le paramètre"
2279
+
2280
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:110
2281
+ msgid "Override this parameter."
2282
+ msgstr "Surcharger ce paramètre."
2283
+
2284
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:112
2285
+ msgid "This parameter is required."
2286
+ msgstr "Ce paramètre est requis."
2287
+
2288
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:114
2289
+ msgid "Type of the parameter."
2290
+ msgstr "Type de paramètre."
2291
+
2292
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:117 ../lib/hammer_cli_foreman/smart_variable.rb:91 ../lib/hammer_cli_foreman/smart_variable.rb:105
2293
+ msgid "Type of the validator."
2294
+ msgstr "Type du validateur."
2295
+
2296
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:131 ../lib/hammer_cli_foreman/smart_variable.rb:123
2297
+ msgid "Override value created"
2298
+ msgstr "Valeur de surcharge créée"
2299
+
2300
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:124
2301
+ #, fuzzy
2302
+ msgid "Could not create the override value"
2303
+ msgstr "Impossible de créer cette surcharge de valeur"
2304
+
2305
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:142
2306
+ msgid "Cannot use --value when --use-puppet-default is true"
2307
+ msgstr ""
2308
+
2309
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:155 ../lib/hammer_cli_foreman/smart_variable.rb:136
2310
+ msgid "Override value deleted"
2311
+ msgstr "Valeur de surcharge supprimée"
2312
+
2313
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:156 ../lib/hammer_cli_foreman/smart_variable.rb:137
2314
+ msgid "Could not delete the override value"
2315
+ msgstr "Impossible de supprimer cette surcharge de valeur "
2316
+
2317
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2318
+ msgid "URL"
2319
+ msgstr "URL"
2320
+
2321
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
2322
+ msgid "Features"
2323
+ msgstr "Fonctionnalités"
2324
+
2325
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:41
2326
+ msgid "Smart proxy created"
2327
+ msgstr "Smart Proxy créé"
2328
+
2329
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:42
2330
+ msgid "Could not create the proxy"
2331
+ msgstr "Impossible de créer le proxy"
2332
+
2333
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:49
2334
+ msgid "Smart proxy updated"
2335
+ msgstr "Smart Proxy mis à jour"
2336
+
2337
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:50
2338
+ msgid "Could not update the proxy"
2339
+ msgstr "Impossible de mettre à jour le proxy"
2340
+
2341
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:57
2342
+ msgid "Smart proxy deleted"
2343
+ msgstr "Smart Proxy supprimé"
2344
+
2345
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:58
2346
+ msgid "Could not delete the proxy"
2347
+ msgstr "Impossible de supprimer le proxy"
2348
+
2349
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:69
2350
+ msgid "Puppet classes were imported"
2351
+ msgstr "Classes Puppet importées"
2352
+
2353
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:70
2354
+ msgid "Import of puppet classes failed"
2355
+ msgstr "L'import des classes Puppet a échoué"
2356
+
2357
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:72
2358
+ msgid "Do not run the import"
2359
+ msgstr "Ne pas lancer l'import"
2360
+
2361
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:92
2362
+ msgid "Smart proxy features were refreshed"
2363
+ msgstr "Fonctions smart proxy rechargées"
2364
+
2365
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:93
2366
+ msgid "Refresh of smart proxy features failed"
2367
+ msgstr "Rechargement des fonctions smart proxy échoué"
2368
+
2369
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:83
2370
+ msgid "Smart variable [%{variable}] created"
2371
+ msgstr "Smart variable [%{variable}] créée"
2372
+
2373
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:84
2374
+ msgid "Could not create the smart variable"
2375
+ msgstr "Impossible de créer la smart variable"
2376
+
2377
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:88 ../lib/hammer_cli_foreman/smart_variable.rb:102
2378
+ msgid "Type of the variable."
2379
+ msgstr "Type de variable."
2380
+
2381
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:97
2382
+ msgid "Smart variable [%{variable}] updated"
2383
+ msgstr "Smart variable [%{variable}] mis à jour"
2384
+
2385
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:98
2386
+ msgid "Could not update the smart variable"
2387
+ msgstr "Impossible de mettre à jour la smart variable"
2388
+
2389
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:112
2390
+ msgid "Smart variable [%{variable}] deleted"
2391
+ msgstr "Smart variable [%{variable}] supprimée"
2392
+
2393
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:113
2394
+ msgid "Could not delete the smart variable"
2395
+ msgstr "Impossible de supprimer la smart variable"
2396
+
2397
+ #: ../lib/hammer_cli_foreman/subnet.rb:13
2398
+ msgid "Mask"
2399
+ msgstr "Masque"
2400
+
2401
+ #: ../lib/hammer_cli_foreman/subnet.rb:23
2402
+ msgid "Priority"
2403
+ msgstr "Priorité"
2404
+
2405
+ #: ../lib/hammer_cli_foreman/subnet.rb:24
2406
+ msgid "DNS"
2407
+ msgstr "DNS"
2408
+
2409
+ #: ../lib/hammer_cli_foreman/subnet.rb:25
2410
+ msgid "Primary DNS"
2411
+ msgstr "DNS Primaire"
2412
+
2413
+ #: ../lib/hammer_cli_foreman/subnet.rb:26
2414
+ msgid "Secondary DNS"
2415
+ msgstr "DNS Secondaire"
2416
+
2417
+ #: ../lib/hammer_cli_foreman/subnet.rb:27
2418
+ msgid "TFTP"
2419
+ msgstr "TFTP"
2420
+
2421
+ #: ../lib/hammer_cli_foreman/subnet.rb:28
2422
+ msgid "DHCP"
2423
+ msgstr "DHCP"
2424
+
2425
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2426
+ msgid "IPAM"
2427
+ msgstr "IPAM"
2428
+
2429
+ #: ../lib/hammer_cli_foreman/subnet.rb:30
2430
+ msgid "VLAN ID"
2431
+ msgstr "VLAN ID"
2432
+
2433
+ #: ../lib/hammer_cli_foreman/subnet.rb:31
2434
+ msgid "Gateway"
2435
+ msgstr "Passerelle"
2436
+
2437
+ #: ../lib/hammer_cli_foreman/subnet.rb:32
2438
+ msgid "From"
2439
+ msgstr "De"
2440
+
2441
+ #: ../lib/hammer_cli_foreman/subnet.rb:33
2442
+ msgid "To"
2443
+ msgstr "À"
2444
+
2445
+ #: ../lib/hammer_cli_foreman/subnet.rb:44
2446
+ msgid "Subnet created"
2447
+ msgstr "Sous-Réseau créé"
2448
+
2449
+ #: ../lib/hammer_cli_foreman/subnet.rb:45
2450
+ msgid "Could not create the subnet"
2451
+ msgstr "Impossible de créer le sous-réseau"
2452
+
2453
+ #: ../lib/hammer_cli_foreman/subnet.rb:53
2454
+ msgid "Subnet updated"
2455
+ msgstr "Sous-réseau mis à jour"
2456
+
2457
+ #: ../lib/hammer_cli_foreman/subnet.rb:54
2458
+ msgid "Could not update the subnet"
2459
+ msgstr "Impossible de mettre à jour le sous-réseau"
2460
+
2461
+ #: ../lib/hammer_cli_foreman/subnet.rb:62
2462
+ msgid "Subnet deleted"
2463
+ msgstr "Sous-réseau supprimé"
2464
+
2465
+ #: ../lib/hammer_cli_foreman/subnet.rb:63
2466
+ msgid "Could not delete the subnet"
2467
+ msgstr "Impossible de supprimer le sous-réseau"
2468
+
2469
+ #: ../lib/hammer_cli_foreman/template.rb:72
2470
+ msgid "List available config template kinds."
2471
+ msgstr "Lister les types de modèles disponibles."
2472
+
2473
+ #: ../lib/hammer_cli_foreman/template.rb:91
2474
+ msgid "View config template content."
2475
+ msgstr "Voir le contenu du modèle de configuration"
2476
+
2477
+ #: ../lib/hammer_cli_foreman/template.rb:103 ../lib/hammer_cli_foreman/template.rb:121
2478
+ msgid "Path to a file that contains the template"
2479
+ msgstr "Chemin du fichier contenant le modèle"
2480
+
2481
+ #: ../lib/hammer_cli_foreman/template.rb:105 ../lib/hammer_cli_foreman/template.rb:123
2482
+ msgid "Template type. Eg. snippet, script, provision"
2483
+ msgstr "Type de modèle. Ex: snippet, script, provisioning"
2484
+
2485
+ #: ../lib/hammer_cli_foreman/template.rb:107
2486
+ msgid "Config template created"
2487
+ msgstr "Modèle de configuration créé"
2488
+
2489
+ #: ../lib/hammer_cli_foreman/template.rb:108
2490
+ msgid "Could not create the config template"
2491
+ msgstr "Impossible de créer le modèle de configuration"
2492
+
2493
+ #: ../lib/hammer_cli_foreman/template.rb:125
2494
+ msgid "Config template updated"
2495
+ msgstr "Modèle de configuration mis à jour"
2496
+
2497
+ #: ../lib/hammer_cli_foreman/template.rb:126
2498
+ msgid "Could not update the config template"
2499
+ msgstr "Impossible de mettre à jour le modèle de configuration"
2500
+
2501
+ #: ../lib/hammer_cli_foreman/template.rb:139
2502
+ msgid "Config template deleted"
2503
+ msgstr "Modèle de configuration supprimé"
2504
+
2505
+ #: ../lib/hammer_cli_foreman/template.rb:140
2506
+ msgid "Could not delete the config template"
2507
+ msgstr "Impossible de supprimer le modèle de configuration"
2508
+
2509
+ #: ../lib/hammer_cli_foreman/template.rb:151
2510
+ msgid "Update the default PXE menu on all configured TFTP servers"
2511
+ msgstr "Mise à jour du menu PXE par défaut sur tous les serveurs TFTP configurés"
2512
+
2513
+ #: ../lib/hammer_cli_foreman/template.rb:164
2514
+ #, fuzzy
2515
+ msgid "Config template cloned"
2516
+ msgstr "Modèle de configuration créé"
2517
+
2518
+ #: ../lib/hammer_cli_foreman/template.rb:165
2519
+ #, fuzzy
2520
+ msgid "Could not clone the config template"
2521
+ msgstr "Impossible de créer le modèle de configuration"
2522
+
2523
+ #: ../lib/hammer_cli_foreman/user.rb:11
2524
+ msgid "Login"
2525
+ msgstr "Login"
2526
+
2527
+ #: ../lib/hammer_cli_foreman/user.rb:13
2528
+ msgid "Email"
2529
+ msgstr "Email"
2530
+
2531
+ #: ../lib/hammer_cli_foreman/user.rb:28
2532
+ msgid "Admin"
2533
+ msgstr "Admin"
2534
+
2535
+ #: ../lib/hammer_cli_foreman/user.rb:29
2536
+ msgid "Effective admin"
2537
+ msgstr ""
2538
+
2539
+ #: ../lib/hammer_cli_foreman/user.rb:30
2540
+ msgid "Authorized by"
2541
+ msgstr "Autorisé par"
2542
+
2543
+ #: ../lib/hammer_cli_foreman/user.rb:31
2544
+ msgid "Locale"
2545
+ msgstr "Locale"
2546
+
2547
+ #: ../lib/hammer_cli_foreman/user.rb:32
2548
+ msgid "Timezone"
2549
+ msgstr "Fuseau horaire"
2550
+
2551
+ #: ../lib/hammer_cli_foreman/user.rb:33
2552
+ msgid "Last login"
2553
+ msgstr "Dernière connexion le"
2554
+
2555
+ #: ../lib/hammer_cli_foreman/user.rb:34
2556
+ msgid "Default organization"
2557
+ msgstr "Organisation par défaut"
2558
+
2559
+ #: ../lib/hammer_cli_foreman/user.rb:35
2560
+ msgid "Default location"
2561
+ msgstr "Emplacement par défaut"
2562
+
2563
+ #: ../lib/hammer_cli_foreman/user.rb:43 ../lib/hammer_cli_foreman/user.rb:44
2564
+ msgid "default"
2565
+ msgstr "défaut"
2566
+
2567
+ #: ../lib/hammer_cli_foreman/user.rb:54
2568
+ msgid "User [%{login}] created"
2569
+ msgstr "Utilisateur [%{login}] créé"
2570
+
2571
+ #: ../lib/hammer_cli_foreman/user.rb:55
2572
+ msgid "Could not create the user"
2573
+ msgstr "Impossible de créer l'utilisateur"
2574
+
2575
+ #: ../lib/hammer_cli_foreman/user.rb:62
2576
+ msgid "User [%{login}] updated"
2577
+ msgstr "Utilisateur [%{login}] mis à jour"
2578
+
2579
+ #: ../lib/hammer_cli_foreman/user.rb:63
2580
+ msgid "Could not update the user"
2581
+ msgstr "Impossible de mettre à jour l'utilisateur"
2582
+
2583
+ #: ../lib/hammer_cli_foreman/user.rb:70
2584
+ msgid "User [%{login}] deleted"
2585
+ msgstr "Utilisateur [%{login}] supprimé"
2586
+
2587
+ #: ../lib/hammer_cli_foreman/user.rb:71
2588
+ msgid "Could not delete the user"
2589
+ msgstr "Impossible de supprimer l'utilisateur"
2590
+
2591
+ #: ../lib/hammer_cli_foreman/usergroup.rb:31
2592
+ msgid "User group [%<name>s] created"
2593
+ msgstr "Groupe d'utilisateur [%<name>s] créé"
2594
+
2595
+ #: ../lib/hammer_cli_foreman/usergroup.rb:32
2596
+ msgid "Could not create the user group"
2597
+ msgstr "Impossible de créer le groupe d'utilisateurs"
2598
+
2599
+ #: ../lib/hammer_cli_foreman/usergroup.rb:38
2600
+ msgid "User group [%<name>s] updated"
2601
+ msgstr "Groupe d'utilisateurs [%<name>s] mis à jour"
2602
+
2603
+ #: ../lib/hammer_cli_foreman/usergroup.rb:39
2604
+ msgid "Could not update the user group"
2605
+ msgstr "Impossible de mettre à jour le groupe d'utilisateurs"
2606
+
2607
+ #: ../lib/hammer_cli_foreman/usergroup.rb:45
2608
+ msgid "User group [%<name>s] deleted"
2609
+ msgstr "Groupe d'utilisateurs [%<name>s] supprimé"
2610
+
2611
+ #: ../lib/hammer_cli_foreman/usergroup.rb:46
2612
+ msgid "Could not delete the user group"
2613
+ msgstr "Impossible de supprimer le groupe d'utilisateurs"
2614
+
2615
+ #: ../lib/hammer_cli_foreman/host.rb:153
2616
+ #~ msgid "At least one interface must be set as primary"
2617
+ #~ msgstr "Au moins une interface doit être définie comme primaire"
2618
+
2619
+ #: ../lib/hammer_cli_foreman/host.rb:156
2620
+ #~ msgid "At least one interface must be set as provision"
2621
+ #~ msgstr "Au moins une interface doit être définie pour le provisioning"
2622
+
2623
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133
2624
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:123
2625
+ #~ msgid "Could not create the override_value"
2626
+ #~ msgstr "Impossible de créer cette surcharge de valeur"