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