hammer_cli_foreman 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,138 +3,136 @@
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
6
+ # Claer <transiblu@claer.hammock.fr>, 2014-2015
7
7
  # Dominic Cleal <dcleal@redhat.com>, 2014
8
8
  # Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: hammer-cli-foreman 0.3.0\n"
11
+ "Project-Id-Version: hammer-cli-foreman 0.4.0\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2015-09-21 16:50+0200\n"
14
- "PO-Revision-Date: 2015-03-21 13:20+0000\n"
15
- "Last-Translator: Claer <transiblu@claer.hammock.fr>\n"
16
- "Language-Team: French (http://www.transifex.com/projects/p/foreman/language/fr"
17
- "/)\n"
13
+ "POT-Creation-Date: 2015-12-11 04:48+0000\n"
14
+ "PO-Revision-Date: 2015-10-08 11:28+0000\n"
15
+ "Last-Translator: mbacovsky <martin.bacovsky@gmail.com>\n"
16
+ "Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
18
17
  "MIME-Version: 1.0\n"
19
18
  "Content-Type: text/plain; charset=UTF-8\n"
20
19
  "Content-Transfer-Encoding: 8bit\n"
21
20
  "Language: fr\n"
22
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
23
22
 
24
- #: ../lib/hammer_cli_foreman.rb:30
23
+ #: ../lib/hammer_cli_foreman.rb:32
25
24
  msgid "Foreman connection login/logout."
26
25
  msgstr "Connexion/Déconnexion à Foreman."
27
26
 
28
- #: ../lib/hammer_cli_foreman.rb:34
27
+ #: ../lib/hammer_cli_foreman.rb:36
29
28
  msgid "Manipulate architectures."
30
29
  msgstr "Gestion des architectures."
31
30
 
32
- #: ../lib/hammer_cli_foreman.rb:38
31
+ #: ../lib/hammer_cli_foreman.rb:40
33
32
  msgid "Manipulate auth sources."
34
33
  msgstr "Gérer les sources d'authentification"
35
34
 
36
- #: ../lib/hammer_cli_foreman.rb:42
35
+ #: ../lib/hammer_cli_foreman.rb:44
37
36
  msgid "Manipulate compute resources."
38
37
  msgstr "Gestion des ressources d'ordinateur."
39
38
 
40
- #: ../lib/hammer_cli_foreman.rb:46
39
+ #: ../lib/hammer_cli_foreman.rb:48
41
40
  msgid "Manipulate domains."
42
41
  msgstr "Gestion des domaines."
43
42
 
44
- #: ../lib/hammer_cli_foreman.rb:50
43
+ #: ../lib/hammer_cli_foreman.rb:52
45
44
  msgid "Manipulate environments."
46
45
  msgstr "Manipulation des environnements"
47
46
 
48
- #: ../lib/hammer_cli_foreman.rb:54
47
+ #: ../lib/hammer_cli_foreman.rb:56
49
48
  msgid "Search facts."
50
49
  msgstr "Rechercher les facts."
51
50
 
52
- #: ../lib/hammer_cli_foreman.rb:58
51
+ #: ../lib/hammer_cli_foreman.rb:60
53
52
  msgid "Manage permission filters."
54
53
  msgstr "Gérer les filtres de permission"
55
54
 
56
- #: ../lib/hammer_cli_foreman.rb:62
55
+ #: ../lib/hammer_cli_foreman.rb:64
57
56
  msgid "Manipulate hosts."
58
57
  msgstr "Manipulation des hôtes"
59
58
 
60
- #: ../lib/hammer_cli_foreman.rb:66
59
+ #: ../lib/hammer_cli_foreman.rb:68
61
60
  msgid "Manipulate hostgroups."
62
61
  msgstr "Gestion des groupes d'hôtes"
63
62
 
64
- #: ../lib/hammer_cli_foreman.rb:70
63
+ #: ../lib/hammer_cli_foreman.rb:72
65
64
  msgid "Manipulate locations."
66
65
  msgstr "Gestion des localisations."
67
66
 
68
- #: ../lib/hammer_cli_foreman.rb:74
67
+ #: ../lib/hammer_cli_foreman.rb:76
69
68
  msgid "Manipulate installation media."
70
69
  msgstr "Gestion des médias d'installation."
71
70
 
72
- #: ../lib/hammer_cli_foreman.rb:78
71
+ #: ../lib/hammer_cli_foreman.rb:80
73
72
  msgid "Manipulate hardware models."
74
73
  msgstr "Gestion des modèles matériel."
75
74
 
76
- #: ../lib/hammer_cli_foreman.rb:82
75
+ #: ../lib/hammer_cli_foreman.rb:84
77
76
  msgid "Manipulate operating system."
78
77
  msgstr "Manipulation des systèmes d'exploitation"
79
78
 
80
- #: ../lib/hammer_cli_foreman.rb:86
79
+ #: ../lib/hammer_cli_foreman.rb:88
81
80
  msgid "Manipulate organizations."
82
81
  msgstr "Gestion des organisations."
83
82
 
84
- #: ../lib/hammer_cli_foreman.rb:90
83
+ #: ../lib/hammer_cli_foreman.rb:92
85
84
  msgid "Manipulate partition tables."
86
85
  msgstr "Gestion des tables de partitions."
87
86
 
88
- #: ../lib/hammer_cli_foreman.rb:94
87
+ #: ../lib/hammer_cli_foreman.rb:96
89
88
  msgid "Search puppet modules."
90
89
  msgstr "Recherche des modules Puppet."
91
90
 
92
- #: ../lib/hammer_cli_foreman.rb:98
91
+ #: ../lib/hammer_cli_foreman.rb:100
93
92
  msgid "Browse and read reports."
94
93
  msgstr "Consulter les rapports."
95
94
 
96
- #: ../lib/hammer_cli_foreman.rb:102
95
+ #: ../lib/hammer_cli_foreman.rb:104
97
96
  msgid "Manage user roles."
98
97
  msgstr "Gérer les rôles utilisateur"
99
98
 
100
- #: ../lib/hammer_cli_foreman.rb:106
99
+ #: ../lib/hammer_cli_foreman.rb:108
101
100
  msgid "Manipulate smart class parameters."
102
101
  msgstr "Gestion des paramètres Smart Class"
103
102
 
104
- #: ../lib/hammer_cli_foreman.rb:110
105
- #, fuzzy
103
+ #: ../lib/hammer_cli_foreman.rb:112
106
104
  msgid "Manipulate smart variables."
107
- msgstr "Gestion des Smart Proxies."
105
+ msgstr "Manipuler les smart variables."
108
106
 
109
- #: ../lib/hammer_cli_foreman.rb:114
107
+ #: ../lib/hammer_cli_foreman.rb:116
110
108
  msgid "Manipulate smart proxies."
111
109
  msgstr "Gestion des Smart Proxies."
112
110
 
113
- #: ../lib/hammer_cli_foreman.rb:118
111
+ #: ../lib/hammer_cli_foreman.rb:120
114
112
  msgid "Change server settings."
115
- msgstr ""
113
+ msgstr "Modifier les paramètres serveur."
116
114
 
117
- #: ../lib/hammer_cli_foreman.rb:122
115
+ #: ../lib/hammer_cli_foreman.rb:124
118
116
  msgid "Manipulate subnets."
119
117
  msgstr "Gestion des sous-réseaux."
120
118
 
121
- #: ../lib/hammer_cli_foreman.rb:126
119
+ #: ../lib/hammer_cli_foreman.rb:128
122
120
  msgid "Manipulate config templates."
123
121
  msgstr "Gestion des modèles de configuration."
124
122
 
125
- #: ../lib/hammer_cli_foreman.rb:130
123
+ #: ../lib/hammer_cli_foreman.rb:132
126
124
  msgid "Manipulate users."
127
125
  msgstr "Gestion des utilisateurs."
128
126
 
129
- #: ../lib/hammer_cli_foreman.rb:134
127
+ #: ../lib/hammer_cli_foreman.rb:136
130
128
  msgid "Manage user groups."
131
129
  msgstr "Gérer les groupes d'utilisateurs."
132
130
 
133
- #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:200 ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
131
+ #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:170 ../lib/hammer_cli_foreman/host.rb:207 ../lib/hammer_cli_foreman/host.rb:238 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
134
132
  msgid "Id"
135
133
  msgstr "Id"
136
134
 
137
- #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:202 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
135
+ #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:171 ../lib/hammer_cli_foreman/host.rb:209 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
138
136
  msgid "Name"
139
137
  msgstr "Nom"
140
138
 
@@ -223,28 +221,24 @@ msgid "Associate an user"
223
221
  msgstr "Associer un utilisateur"
224
222
 
225
223
  #: ../lib/hammer_cli_foreman/associating_commands.rb:149
226
- #, fuzzy
227
224
  msgid "The user has been associated"
228
- msgstr "L'architecture a été associée"
225
+ msgstr "L'utilisateur a été associé"
229
226
 
230
227
  #: ../lib/hammer_cli_foreman/associating_commands.rb:150
231
- #, fuzzy
232
228
  msgid "Could not associate the user"
233
- msgstr "Impossible de créer l'utilisateur"
229
+ msgstr "Impossible d'associer l'utilisateur"
234
230
 
235
231
  #: ../lib/hammer_cli_foreman/associating_commands.rb:155
236
232
  msgid "Disassociate an user"
237
233
  msgstr "Dissocier un utilisateur"
238
234
 
239
235
  #: ../lib/hammer_cli_foreman/associating_commands.rb:157
240
- #, fuzzy
241
236
  msgid "The user has been disassociated"
242
- msgstr "L'architecture a été dissociée"
237
+ msgstr "L'utilisateur a été dissocié"
243
238
 
244
239
  #: ../lib/hammer_cli_foreman/associating_commands.rb:158
245
- #, fuzzy
246
240
  msgid "Could not disassociate the user"
247
- msgstr "Impossible de dissocier l'architecture"
241
+ msgstr "Impossible de dissocier l'utilisateur"
248
242
 
249
243
  #: ../lib/hammer_cli_foreman/associating_commands.rb:167
250
244
  msgid "Associate an user group"
@@ -252,12 +246,11 @@ msgstr "Associer un groupe d'utilisateurs"
252
246
 
253
247
  #: ../lib/hammer_cli_foreman/associating_commands.rb:171
254
248
  msgid "The user group has been associated"
255
- msgstr ""
249
+ msgstr "Le groupe d'utilisateurs a été associé"
256
250
 
257
251
  #: ../lib/hammer_cli_foreman/associating_commands.rb:172
258
- #, fuzzy
259
252
  msgid "Could not associate the user group"
260
- msgstr "Impossible de créer le groupe d'utilisateurs"
253
+ msgstr "Impossible d'associer le groupe d'utilisateurs"
261
254
 
262
255
  #: ../lib/hammer_cli_foreman/associating_commands.rb:177
263
256
  msgid "Disassociate an user group"
@@ -265,12 +258,11 @@ msgstr "Dissocier un groupe d'utilisateurs"
265
258
 
266
259
  #: ../lib/hammer_cli_foreman/associating_commands.rb:181
267
260
  msgid "The user group has been disassociated"
268
- msgstr ""
261
+ msgstr "Le groupe d'utilisateurs a été dissocié"
269
262
 
270
263
  #: ../lib/hammer_cli_foreman/associating_commands.rb:182
271
- #, fuzzy
272
264
  msgid "Could not disassociate the user group"
273
- msgstr "Impossible de créer le groupe d'utilisateurs"
265
+ msgstr "Impossible de dissocier le groupe d'utilisateurs"
274
266
 
275
267
  #: ../lib/hammer_cli_foreman/associating_commands.rb:191
276
268
  msgid "Associate a configuration template"
@@ -488,31 +480,31 @@ msgstr "Source d'authentification mis à jour"
488
480
  msgid "Could not update the Auth Source"
489
481
  msgstr "Impossible de mettre à jour la source d'authentification"
490
482
 
491
- #: ../lib/hammer_cli_foreman/commands.rb:83
483
+ #: ../lib/hammer_cli_foreman/commands.rb:87
492
484
  msgid "Received data of unknown format"
493
485
  msgstr "Format inconnu de la donnée reçue"
494
486
 
495
- #: ../lib/hammer_cli_foreman/commands.rb:191
487
+ #: ../lib/hammer_cli_foreman/commands.rb:195
496
488
  msgid "Could not find %{resource}. Some search options were missing, please see --help."
497
- msgstr "Impossible de trouver %{resource}. Certaines options de recherche étaient absentes, merci de regarder --help."
489
+ msgstr "%{resource} introuvable. Certaines options de recherche sont manquantes, veuillez consulter --help"
498
490
 
499
- #: ../lib/hammer_cli_foreman/commands.rb:193
491
+ #: ../lib/hammer_cli_foreman/commands.rb:197
500
492
  msgid "Could not find %{resource}, please set option %{switches}."
501
- msgstr "Impossible de trouver %{resource}, merci de mositionner l'option %{switches}."
493
+ msgstr "%{resource} introuvable, veuillez définir l'option %{switches}."
502
494
 
503
- #: ../lib/hammer_cli_foreman/commands.rb:195
495
+ #: ../lib/hammer_cli_foreman/commands.rb:199
504
496
  msgid "Could not find %{resource}, please set one of options %{switches}."
505
- msgstr "Impossible de trouver %{ressource}, merci de positionner une des options suivantes %{switches}."
497
+ msgstr "%{resource} introuvable, veuillez définir l'une des options %{switches}."
506
498
 
507
- #: ../lib/hammer_cli_foreman/commands.rb:517
499
+ #: ../lib/hammer_cli_foreman/commands.rb:521
508
500
  msgid "Associate a resource"
509
501
  msgstr "Associer à une ressource"
510
502
 
511
- #: ../lib/hammer_cli_foreman/commands.rb:539
503
+ #: ../lib/hammer_cli_foreman/commands.rb:543
512
504
  msgid "Disassociate a resource"
513
505
  msgstr "Dissocier la ressource"
514
506
 
515
- #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:327 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
507
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:334 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
516
508
  msgid "Value"
517
509
  msgstr "Valeur"
518
510
 
@@ -552,7 +544,7 @@ msgstr "Gestion des paramètres globaux."
552
544
  msgid "Provider"
553
545
  msgstr "Fournisseur"
554
546
 
555
- #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:201 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
547
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
556
548
  msgid "UUID"
557
549
  msgstr "UUID"
558
550
 
@@ -606,19 +598,23 @@ msgstr "Impossible de supprimer la ressource d'ordinateur"
606
598
 
607
599
  #: ../lib/hammer_cli_foreman/credentials.rb:26
608
600
  msgid "[Foreman] Username: "
609
- msgstr "[Foreman] Nom d'utilisateur :"
601
+ msgstr "[Foreman] nom d'utilisateur :"
610
602
 
611
603
  #: ../lib/hammer_cli_foreman/credentials.rb:33
612
604
  msgid "[Foreman] Password for %s: "
613
- msgstr "[Foreman] Mot de passe pour %s :"
605
+ msgstr "[Foreman] mot de passe pour %s :"
606
+
607
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
608
+ msgid "Use the default organization and/or location from the server"
609
+ msgstr ""
614
610
 
615
611
  #: ../lib/hammer_cli_foreman/domain.rb:6
616
612
  msgid "ID of DNS proxy to use within this domain"
617
- msgstr ""
613
+ msgstr "ID du proxy DNS à utiliser dans ce domaine"
618
614
 
619
615
  #: ../lib/hammer_cli_foreman/domain.rb:7
620
616
  msgid "Name of DNS proxy to use within this domain"
621
- msgstr ""
617
+ msgstr "Nom du proxy DNS à utiliser dans ce domaine"
622
618
 
623
619
  #: ../lib/hammer_cli_foreman/domain.rb:43
624
620
  msgid "DNS Id"
@@ -756,7 +752,7 @@ msgstr "Impossible de supprimer le groupe externe d'utilisateurs"
756
752
  msgid "Host"
757
753
  msgstr "Hôte"
758
754
 
759
- #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
755
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
760
756
  msgid "Fact"
761
757
  msgstr "Fact"
762
758
 
@@ -780,11 +776,11 @@ msgstr "Rôle"
780
776
  msgid "Permissions"
781
777
  msgstr "Permissions"
782
778
 
783
- #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:33
779
+ #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
784
780
  msgid "(Miscellaneous)"
785
781
  msgstr "(Divers)"
786
782
 
787
- #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
783
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
788
784
  msgid "none"
789
785
  msgstr "Aucun"
790
786
 
@@ -818,317 +814,309 @@ msgstr "Ressource"
818
814
 
819
815
  #: ../lib/hammer_cli_foreman/host.rb:15
820
816
  msgid "Login of the owner"
821
- msgstr "Login du propriétaire"
817
+ msgstr "Informations d'identification du propriétaire"
822
818
 
823
819
  #: ../lib/hammer_cli_foreman/host.rb:17
824
820
  msgid "ID of the owner"
825
821
  msgstr "ID du propriétaire"
826
822
 
827
- #: ../lib/hammer_cli_foreman/host.rb:42
823
+ #: ../lib/hammer_cli_foreman/host.rb:44
828
824
  msgid "Host parameters."
829
825
  msgstr "Paramètres de l'Hôte"
830
826
 
831
- #: ../lib/hammer_cli_foreman/host.rb:44
827
+ #: ../lib/hammer_cli_foreman/host.rb:46
832
828
  msgid "Compute resource attributes."
833
829
  msgstr "Attributs des Ressources d'Ordinateur."
834
830
 
835
- #: ../lib/hammer_cli_foreman/host.rb:46
831
+ #: ../lib/hammer_cli_foreman/host.rb:48
836
832
  msgid "Volume parameters"
837
833
  msgstr "Paramètres du Volume"
838
834
 
839
- #: ../lib/hammer_cli_foreman/host.rb:48
835
+ #: ../lib/hammer_cli_foreman/host.rb:50
840
836
  msgid "Interface parameters."
841
837
  msgstr "Paramètres d'interface"
842
838
 
843
- #: ../lib/hammer_cli_foreman/host.rb:62
839
+ #: ../lib/hammer_cli_foreman/host.rb:64
844
840
  msgid "Enter the root password for the host:"
845
- msgstr ""
841
+ msgstr "Saisir le mot de passe root de l'hôte :"
846
842
 
847
- #: ../lib/hammer_cli_foreman/host.rb:146
843
+ #: ../lib/hammer_cli_foreman/host.rb:153
848
844
  msgid "At least one interface must be set as primary"
849
- msgstr ""
845
+ msgstr "Au moins une interface doit être définie comme primaire"
850
846
 
851
- #: ../lib/hammer_cli_foreman/host.rb:149
847
+ #: ../lib/hammer_cli_foreman/host.rb:156
852
848
  msgid "At least one interface must be set as provision"
853
- msgstr ""
849
+ msgstr "Au moins une interface doit être définie pour le provisioning"
854
850
 
855
- #: ../lib/hammer_cli_foreman/host.rb:165 ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
851
+ #: ../lib/hammer_cli_foreman/host.rb:172 ../lib/hammer_cli_foreman/host.rb:248 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
856
852
  msgid "Operating System"
857
853
  msgstr "Système d'Exploitation"
858
854
 
859
- #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
855
+ #: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
860
856
  msgid "Host Group"
861
857
  msgstr "Groupe d'hôtes"
862
858
 
863
- #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
859
+ #: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
864
860
  msgid "IP"
865
861
  msgstr "IP"
866
862
 
867
- #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
863
+ #: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
868
864
  msgid "MAC"
869
865
  msgstr "MAC"
870
866
 
871
- #: ../lib/hammer_cli_foreman/host.rb:178
867
+ #: ../lib/hammer_cli_foreman/host.rb:185
872
868
  msgid "Bare Metal"
873
- msgstr ""
869
+ msgstr "Bare Metal"
874
870
 
875
- #: ../lib/hammer_cli_foreman/host.rb:203
876
- #, fuzzy
871
+ #: ../lib/hammer_cli_foreman/host.rb:210
877
872
  msgid "Organization"
878
- msgstr "Organisations"
873
+ msgstr "Organisation"
879
874
 
880
- #: ../lib/hammer_cli_foreman/host.rb:204
881
- #, fuzzy
875
+ #: ../lib/hammer_cli_foreman/host.rb:211
882
876
  msgid "Location"
883
- msgstr "Localisations"
877
+ msgstr "Emplacement"
884
878
 
885
- #: ../lib/hammer_cli_foreman/host.rb:206
879
+ #: ../lib/hammer_cli_foreman/host.rb:213
886
880
  msgid "Compute Resource"
887
881
  msgstr "Ressources d'Ordinateur"
888
882
 
889
- #: ../lib/hammer_cli_foreman/host.rb:207
890
- #, fuzzy
883
+ #: ../lib/hammer_cli_foreman/host.rb:214
891
884
  msgid "Compute Profile"
892
- msgstr "Ressource d'ordinateur"
885
+ msgstr "Profil de calcul"
893
886
 
894
- #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/hostgroup.rb:61
887
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
895
888
  msgid "Environment"
896
889
  msgstr "Environnement"
897
890
 
898
- #: ../lib/hammer_cli_foreman/host.rb:209
899
- #, fuzzy
891
+ #: ../lib/hammer_cli_foreman/host.rb:216
900
892
  msgid "Puppet CA Id"
901
- msgstr "Id du Proxy Puppet CA"
893
+ msgstr "ID de Puppet CA"
902
894
 
903
- #: ../lib/hammer_cli_foreman/host.rb:210
904
- #, fuzzy
895
+ #: ../lib/hammer_cli_foreman/host.rb:217
905
896
  msgid "Puppet Master Id"
906
- msgstr "Id du proxy Puppet Master"
897
+ msgstr "ID du Puppet Master"
907
898
 
908
- #: ../lib/hammer_cli_foreman/host.rb:211
899
+ #: ../lib/hammer_cli_foreman/host.rb:218
909
900
  msgid "Cert name"
910
901
  msgstr "Nom du certificat"
911
902
 
912
- #: ../lib/hammer_cli_foreman/host.rb:212 ../lib/hammer_cli_foreman/interface.rb:51
903
+ #: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
913
904
  msgid "Managed"
914
905
  msgstr "Géré"
915
906
 
916
- #: ../lib/hammer_cli_foreman/host.rb:214
907
+ #: ../lib/hammer_cli_foreman/host.rb:221
917
908
  msgid "Installed at"
918
909
  msgstr "Installé le"
919
910
 
920
- #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
911
+ #: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
921
912
  msgid "Last report"
922
913
  msgstr "Dernier rapport"
923
914
 
924
- #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
915
+ #: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
925
916
  msgid "Network"
926
917
  msgstr "Réseau"
927
918
 
928
- #: ../lib/hammer_cli_foreman/host.rb:220 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
919
+ #: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
929
920
  msgid "Subnet"
930
921
  msgstr "Sous-Réseau"
931
922
 
932
- #: ../lib/hammer_cli_foreman/host.rb:221 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
923
+ #: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
933
924
  msgid "Domain"
934
925
  msgstr "Domaine"
935
926
 
936
- #: ../lib/hammer_cli_foreman/host.rb:222
927
+ #: ../lib/hammer_cli_foreman/host.rb:229
937
928
  msgid "Service provider"
938
- msgstr ""
929
+ msgstr "Fournisseur de service"
939
930
 
940
- #: ../lib/hammer_cli_foreman/host.rb:223
931
+ #: ../lib/hammer_cli_foreman/host.rb:230
941
932
  msgid "SP Name"
942
933
  msgstr "SP Nom"
943
934
 
944
- #: ../lib/hammer_cli_foreman/host.rb:224
935
+ #: ../lib/hammer_cli_foreman/host.rb:231
945
936
  msgid "SP IP"
946
937
  msgstr "SP IP"
947
938
 
948
- #: ../lib/hammer_cli_foreman/host.rb:225
939
+ #: ../lib/hammer_cli_foreman/host.rb:232
949
940
  msgid "SP MAC"
950
941
  msgstr "SP MAC"
951
942
 
952
- #: ../lib/hammer_cli_foreman/host.rb:226
943
+ #: ../lib/hammer_cli_foreman/host.rb:233
953
944
  msgid "SP Subnet"
954
945
  msgstr "SP sous réseau"
955
946
 
956
- #: ../lib/hammer_cli_foreman/host.rb:230
957
- #, fuzzy
947
+ #: ../lib/hammer_cli_foreman/host.rb:237
958
948
  msgid "Network interfaces"
959
- msgstr "Interface Réseau BMC"
949
+ msgstr "Interfaces réseau"
960
950
 
961
- #: ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
951
+ #: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
962
952
  msgid "Identifier"
963
- msgstr ""
953
+ msgstr "Identifiant"
964
954
 
965
- #: ../lib/hammer_cli_foreman/host.rb:233 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
955
+ #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
966
956
  msgid "Type"
967
957
  msgstr "Type"
968
958
 
969
- #: ../lib/hammer_cli_foreman/host.rb:234 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
959
+ #: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
970
960
  msgid "MAC address"
971
- msgstr ""
961
+ msgstr "Adresse MAC"
972
962
 
973
- #: ../lib/hammer_cli_foreman/host.rb:235 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
963
+ #: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
974
964
  msgid "IP address"
975
- msgstr ""
965
+ msgstr "Adresse IP"
976
966
 
977
- #: ../lib/hammer_cli_foreman/host.rb:236
967
+ #: ../lib/hammer_cli_foreman/host.rb:243
978
968
  msgid "FQDN"
979
- msgstr ""
969
+ msgstr "FQDN"
980
970
 
981
- #: ../lib/hammer_cli_foreman/host.rb:239
982
- #, fuzzy
971
+ #: ../lib/hammer_cli_foreman/host.rb:246
983
972
  msgid "Operating system"
984
- msgstr "Systèmes d'exploitations"
973
+ msgstr "Système d'exploitation"
985
974
 
986
- #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
975
+ #: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
987
976
  msgid "Architecture"
988
977
  msgstr "Architecture"
989
978
 
990
- #: ../lib/hammer_cli_foreman/host.rb:244
979
+ #: ../lib/hammer_cli_foreman/host.rb:251
991
980
  msgid "Build"
992
981
  msgstr "Construire"
993
982
 
994
- #: ../lib/hammer_cli_foreman/host.rb:245 ../lib/hammer_cli_foreman/hostgroup.rb:77
983
+ #: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
995
984
  msgid "Medium"
996
985
  msgstr "Medium"
997
986
 
998
- #: ../lib/hammer_cli_foreman/host.rb:246 ../lib/hammer_cli_foreman/hostgroup.rb:76
987
+ #: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
999
988
  msgid "Partition Table"
1000
989
  msgstr "Table de partition"
1001
990
 
1002
- #: ../lib/hammer_cli_foreman/host.rb:247
1003
- #, fuzzy
991
+ #: ../lib/hammer_cli_foreman/host.rb:254
1004
992
  msgid "Custom partition table"
1005
- msgstr "Associer une table de partition"
993
+ msgstr "Table de partition spécifique"
1006
994
 
1007
- #: ../lib/hammer_cli_foreman/host.rb:250
995
+ #: ../lib/hammer_cli_foreman/host.rb:257
1008
996
  msgid "Image"
1009
997
  msgstr "Image"
1010
998
 
1011
- #: ../lib/hammer_cli_foreman/host.rb:251
999
+ #: ../lib/hammer_cli_foreman/host.rb:258
1012
1000
  msgid "Image file"
1013
1001
  msgstr "Fichier Image"
1014
1002
 
1015
- #: ../lib/hammer_cli_foreman/host.rb:252
1003
+ #: ../lib/hammer_cli_foreman/host.rb:259
1016
1004
  msgid "Use image"
1017
1005
  msgstr "Utiliser l'image"
1018
1006
 
1019
- #: ../lib/hammer_cli_foreman/host.rb:258
1007
+ #: ../lib/hammer_cli_foreman/host.rb:265
1020
1008
  msgid "Additional info"
1021
- msgstr ""
1009
+ msgstr "Informations complémentaires"
1022
1010
 
1023
- #: ../lib/hammer_cli_foreman/host.rb:259
1011
+ #: ../lib/hammer_cli_foreman/host.rb:266
1024
1012
  msgid "Owner Id"
1025
1013
  msgstr "Id du Propriétaire"
1026
1014
 
1027
- #: ../lib/hammer_cli_foreman/host.rb:260
1015
+ #: ../lib/hammer_cli_foreman/host.rb:267
1028
1016
  msgid "Owner Type"
1029
1017
  msgstr "Type de Propriétaire"
1030
1018
 
1031
- #: ../lib/hammer_cli_foreman/host.rb:261
1019
+ #: ../lib/hammer_cli_foreman/host.rb:268
1032
1020
  msgid "Enabled"
1033
1021
  msgstr "Activé"
1034
1022
 
1035
- #: ../lib/hammer_cli_foreman/host.rb:262 ../lib/hammer_cli_foreman/hostgroup.rb:62
1023
+ #: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
1036
1024
  msgid "Model"
1037
1025
  msgstr "Modèle"
1038
1026
 
1039
- #: ../lib/hammer_cli_foreman/host.rb:263
1027
+ #: ../lib/hammer_cli_foreman/host.rb:270
1040
1028
  msgid "Comment"
1041
1029
  msgstr "Commentaire"
1042
1030
 
1043
- #: ../lib/hammer_cli_foreman/host.rb:276
1031
+ #: ../lib/hammer_cli_foreman/host.rb:283
1044
1032
  msgid "Status"
1045
1033
  msgstr "Statut"
1046
1034
 
1047
- #: ../lib/hammer_cli_foreman/host.rb:277
1035
+ #: ../lib/hammer_cli_foreman/host.rb:284
1048
1036
  msgid "Power"
1049
1037
  msgstr "Alimentation"
1050
1038
 
1051
- #: ../lib/hammer_cli_foreman/host.rb:313
1039
+ #: ../lib/hammer_cli_foreman/host.rb:320
1052
1040
  msgid "Puppet run triggered"
1053
1041
  msgstr "Puppet Run déclenché"
1054
1042
 
1055
- #: ../lib/hammer_cli_foreman/host.rb:366
1043
+ #: ../lib/hammer_cli_foreman/host.rb:373
1056
1044
  msgid "Host created"
1057
1045
  msgstr "Hôte créé"
1058
1046
 
1059
- #: ../lib/hammer_cli_foreman/host.rb:367
1047
+ #: ../lib/hammer_cli_foreman/host.rb:374
1060
1048
  msgid "Could not create the host"
1061
1049
  msgstr "Impossible de créer l'hôte"
1062
1050
 
1063
- #: ../lib/hammer_cli_foreman/host.rb:388
1051
+ #: ../lib/hammer_cli_foreman/host.rb:395
1064
1052
  msgid "Host updated"
1065
1053
  msgstr "Hôte mis à jour"
1066
1054
 
1067
- #: ../lib/hammer_cli_foreman/host.rb:389
1055
+ #: ../lib/hammer_cli_foreman/host.rb:396
1068
1056
  msgid "Could not update the host"
1069
1057
  msgstr "Impossible de mettre à jour l'hôte"
1070
1058
 
1071
- #: ../lib/hammer_cli_foreman/host.rb:396
1059
+ #: ../lib/hammer_cli_foreman/host.rb:403
1072
1060
  msgid "Host deleted"
1073
1061
  msgstr "Hôte supprimé"
1074
1062
 
1075
- #: ../lib/hammer_cli_foreman/host.rb:397
1063
+ #: ../lib/hammer_cli_foreman/host.rb:404
1076
1064
  msgid "Could not delete the host"
1077
1065
  msgstr "Impossible de supprimer l'hôte"
1078
1066
 
1079
- #: ../lib/hammer_cli_foreman/host.rb:404
1067
+ #: ../lib/hammer_cli_foreman/host.rb:411
1080
1068
  msgid "Create or update parameter for a host."
1081
1069
  msgstr "Créer ou changer un paramètre d'un hôte."
1082
1070
 
1083
- #: ../lib/hammer_cli_foreman/host.rb:406
1071
+ #: ../lib/hammer_cli_foreman/host.rb:413
1084
1072
  msgid "Host parameter updated"
1085
1073
  msgstr "Paramètre de l'hôte mis à jour"
1086
1074
 
1087
- #: ../lib/hammer_cli_foreman/host.rb:407
1075
+ #: ../lib/hammer_cli_foreman/host.rb:414
1088
1076
  msgid "New host parameter created"
1089
1077
  msgstr "Nouveau paramètre de l'hôte créé"
1090
1078
 
1091
- #: ../lib/hammer_cli_foreman/host.rb:408
1079
+ #: ../lib/hammer_cli_foreman/host.rb:415
1092
1080
  msgid "Could not set host parameter"
1093
1081
  msgstr "Impossible de positionner le paramètre de l'hôte"
1094
1082
 
1095
- #: ../lib/hammer_cli_foreman/host.rb:420
1083
+ #: ../lib/hammer_cli_foreman/host.rb:427
1096
1084
  msgid "Delete parameter for a host."
1097
1085
  msgstr "Suppression du paramètre d'un hôte."
1098
1086
 
1099
- #: ../lib/hammer_cli_foreman/host.rb:422
1087
+ #: ../lib/hammer_cli_foreman/host.rb:429
1100
1088
  msgid "Host parameter deleted"
1101
1089
  msgstr "Paramètre de l'hôte supprimé"
1102
1090
 
1103
- #: ../lib/hammer_cli_foreman/host.rb:437
1091
+ #: ../lib/hammer_cli_foreman/host.rb:444
1104
1092
  msgid "Power a host on"
1105
1093
  msgstr "Allumer une machine"
1106
1094
 
1107
- #: ../lib/hammer_cli_foreman/host.rb:438
1095
+ #: ../lib/hammer_cli_foreman/host.rb:445
1108
1096
  msgid "The host is starting."
1109
1097
  msgstr "L'hôte démarre."
1110
1098
 
1111
- #: ../lib/hammer_cli_foreman/host.rb:455
1099
+ #: ../lib/hammer_cli_foreman/host.rb:462
1112
1100
  msgid "Force turning off a host"
1113
1101
  msgstr "Forcer l'extinction d'un hôte"
1114
1102
 
1115
- #: ../lib/hammer_cli_foreman/host.rb:460
1103
+ #: ../lib/hammer_cli_foreman/host.rb:467
1116
1104
  msgid "Power a host off"
1117
1105
  msgstr "Éteindre un hôte "
1118
1106
 
1119
- #: ../lib/hammer_cli_foreman/host.rb:472
1107
+ #: ../lib/hammer_cli_foreman/host.rb:479
1120
1108
  msgid "Power off forced."
1121
1109
  msgstr "Extinction forcée."
1122
1110
 
1123
- #: ../lib/hammer_cli_foreman/host.rb:474
1111
+ #: ../lib/hammer_cli_foreman/host.rb:481
1124
1112
  msgid "Powering the host off."
1125
1113
  msgstr "Extinction de l'hôte."
1126
1114
 
1127
- #: ../lib/hammer_cli_foreman/host.rb:491
1115
+ #: ../lib/hammer_cli_foreman/host.rb:498
1128
1116
  msgid "Reboot a host"
1129
1117
  msgstr "Redémarrage d'un hôte"
1130
1118
 
1131
- #: ../lib/hammer_cli_foreman/host.rb:492
1119
+ #: ../lib/hammer_cli_foreman/host.rb:499
1132
1120
  msgid "Host reboot started."
1133
1121
  msgstr "Redémarrage de l'hôte lancé"
1134
1122
 
@@ -1146,16 +1134,15 @@ msgstr "Nom du proxy pour Puppet"
1146
1134
 
1147
1135
  #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1148
1136
  msgid "Name of parent hostgroup"
1149
- msgstr "Nom du groupe d'hôte parent"
1137
+ msgstr "Nom du groupe d'hôtes parent"
1150
1138
 
1151
1139
  #: ../lib/hammer_cli_foreman/hostgroup.rb:17
1152
- #, fuzzy
1153
1140
  msgid "Root password"
1154
- msgstr "Mot de passe BMC"
1141
+ msgstr "Mot de passe root"
1155
1142
 
1156
1143
  #: ../lib/hammer_cli_foreman/hostgroup.rb:23
1157
1144
  msgid "Enter the root password for the host group:"
1158
- msgstr ""
1145
+ msgstr "Saisir le mot de passe root du groupe d'hôtes :"
1159
1146
 
1160
1147
  #: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
1161
1148
  msgid "Title"
@@ -1175,7 +1162,7 @@ msgstr "Ressource d'ordinateur"
1175
1162
 
1176
1163
  #: ../lib/hammer_cli_foreman/hostgroup.rb:84
1177
1164
  msgid "Parent Id"
1178
- msgstr "Id du parent"
1165
+ msgstr "ID du parent"
1179
1166
 
1180
1167
  #: ../lib/hammer_cli_foreman/hostgroup.rb:94
1181
1168
  msgid "Hostgroup created"
@@ -1246,9 +1233,8 @@ msgid "Host name"
1246
1233
  msgstr "Nom d'hôte"
1247
1234
 
1248
1235
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1249
- #, fuzzy
1250
1236
  msgid "Hostgroup title"
1251
- msgstr "Nom du groupe d'hôtes"
1237
+ msgstr "Titre du groupe d'hôtes"
1252
1238
 
1253
1239
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1254
1240
  msgid "Hostgroup name"
@@ -1295,9 +1281,8 @@ msgid "User role name"
1295
1281
  msgstr "Nom du rôle utilisateur"
1296
1282
 
1297
1283
  #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1298
- #, fuzzy
1299
1284
  msgid "Setting name"
1300
- msgstr "Nom du certificat"
1285
+ msgstr "Nom du paramètre"
1301
1286
 
1302
1287
  #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1303
1288
  msgid "Subnet name"
@@ -1316,9 +1301,8 @@ msgid "Smart class parameter name"
1316
1301
  msgstr "Nom du paramètre de la smart class"
1317
1302
 
1318
1303
  #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1319
- #, fuzzy
1320
1304
  msgid "Smart variable name"
1321
- msgstr "Smart variables"
1305
+ msgstr "Nom de la Smart variable"
1322
1306
 
1323
1307
  #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1324
1308
  msgid "Name to search by"
@@ -1326,14 +1310,15 @@ msgstr "Recherche par nom"
1326
1310
 
1327
1311
  #: ../lib/hammer_cli_foreman/id_resolver.rb:153
1328
1312
  msgid "one of %s not found"
1329
- msgstr "aucun membre de %s trouvé"
1313
+ msgstr "un sur %s introuvable"
1330
1314
 
1331
1315
  #: ../lib/hammer_cli_foreman/id_resolver.rb:200
1332
1316
  msgid "%s not found"
1333
1317
  msgstr "%s non trouvé"
1334
1318
 
1335
1319
  #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1336
- msgid "%s found more than once"
1320
+ #, fuzzy
1321
+ msgid "found more than one %s"
1337
1322
  msgstr "%s a été trouvé plus d'une fois"
1338
1323
 
1339
1324
  #: ../lib/hammer_cli_foreman/id_resolver.rb:212
@@ -1382,107 +1367,95 @@ msgstr "Impossible de supprimer l'image"
1382
1367
 
1383
1368
  #: ../lib/hammer_cli_foreman/interface.rb:6
1384
1369
  msgid "View and manage host's network interfaces"
1385
- msgstr ""
1370
+ msgstr "Voir et gérer les interfaces réseau de cet hôte"
1386
1371
 
1387
1372
  #: ../lib/hammer_cli_foreman/interface.rb:10
1388
- #, fuzzy
1389
1373
  msgid "primary"
1390
- msgstr "DNS Primaire"
1374
+ msgstr "primaire"
1391
1375
 
1392
1376
  #: ../lib/hammer_cli_foreman/interface.rb:11
1393
1377
  msgid "provision"
1394
- msgstr ""
1378
+ msgstr "provisionner"
1395
1379
 
1396
1380
  #: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
1397
- #, fuzzy
1398
1381
  msgid "DNS name"
1399
- msgstr "Nom du certificat"
1382
+ msgstr "Nom DNS"
1400
1383
 
1401
1384
  #: ../lib/hammer_cli_foreman/interface.rb:52
1402
- #, fuzzy
1403
1385
  msgid "Primary"
1404
- msgstr "DNS Primaire"
1386
+ msgstr "Primaire"
1405
1387
 
1406
1388
  #: ../lib/hammer_cli_foreman/interface.rb:53
1407
- #, fuzzy
1408
1389
  msgid "Provision"
1409
- msgstr "Fournisseur"
1390
+ msgstr "Provisionner"
1410
1391
 
1411
1392
  #: ../lib/hammer_cli_foreman/interface.rb:54
1412
1393
  msgid "Virtual"
1413
- msgstr ""
1394
+ msgstr "Virtuel"
1414
1395
 
1415
1396
  #: ../lib/hammer_cli_foreman/interface.rb:55
1416
1397
  msgid "Tag"
1417
- msgstr ""
1398
+ msgstr "Tag"
1418
1399
 
1419
1400
  #: ../lib/hammer_cli_foreman/interface.rb:56
1420
1401
  msgid "Attached to"
1421
- msgstr ""
1402
+ msgstr "Attaché à"
1422
1403
 
1423
1404
  #: ../lib/hammer_cli_foreman/interface.rb:58
1424
1405
  msgid "BMC"
1425
- msgstr ""
1406
+ msgstr "BMC"
1426
1407
 
1427
1408
  #: ../lib/hammer_cli_foreman/interface.rb:63
1428
1409
  msgid "Bond"
1429
- msgstr ""
1410
+ msgstr "Agrégat"
1430
1411
 
1431
1412
  #: ../lib/hammer_cli_foreman/interface.rb:64
1432
- #, fuzzy
1433
1413
  msgid "Mode"
1434
- msgstr "Modèle"
1414
+ msgstr "Mode"
1435
1415
 
1436
1416
  #: ../lib/hammer_cli_foreman/interface.rb:65
1437
1417
  msgid "Attached devices"
1438
- msgstr ""
1418
+ msgstr "Périphériques attachés"
1439
1419
 
1440
1420
  #: ../lib/hammer_cli_foreman/interface.rb:66
1441
1421
  msgid "Bond options"
1442
- msgstr ""
1422
+ msgstr "Options de l'aggrégat"
1443
1423
 
1444
1424
  #: ../lib/hammer_cli_foreman/interface.rb:77
1445
1425
  msgid "Should this interface be used for constructing the FQDN of the host? Each managed hosts needs to have one primary interface."
1446
- msgstr ""
1426
+ 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."
1447
1427
 
1448
1428
  #: ../lib/hammer_cli_foreman/interface.rb:78
1449
1429
  msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-based hosts)? Each managed hosts needs to have one provision interface."
1450
- msgstr ""
1430
+ 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."
1451
1431
 
1452
1432
  #: ../lib/hammer_cli_foreman/interface.rb:128
1453
- #, fuzzy
1454
1433
  msgid "Interface created"
1455
- msgstr "Image créée"
1434
+ msgstr "Interface créée"
1456
1435
 
1457
1436
  #: ../lib/hammer_cli_foreman/interface.rb:129
1458
- #, fuzzy
1459
1437
  msgid "Could not create the interface"
1460
- msgstr "Impossible de créer l'image"
1438
+ msgstr "Impossible de créer l'interface"
1461
1439
 
1462
1440
  #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1463
- #, fuzzy
1464
1441
  msgid "Compute resource specific attributes."
1465
- msgstr "Attributs des Ressources d'Ordinateur."
1442
+ msgstr "Attributs des ressources de calcul."
1466
1443
 
1467
1444
  #: ../lib/hammer_cli_foreman/interface.rb:141
1468
- #, fuzzy
1469
1445
  msgid "Interface updated"
1470
- msgstr "Image mise à jour"
1446
+ msgstr "Interface mis à jour"
1471
1447
 
1472
1448
  #: ../lib/hammer_cli_foreman/interface.rb:142
1473
- #, fuzzy
1474
1449
  msgid "Could not update the interface"
1475
- msgstr "Impossible de mettre à jour l'image"
1450
+ msgstr "Impossible de mettre à jour l'interface"
1476
1451
 
1477
1452
  #: ../lib/hammer_cli_foreman/interface.rb:154
1478
- #, fuzzy
1479
1453
  msgid "Interface deleted"
1480
- msgstr "Image supprimée"
1454
+ msgstr "Interface supprimée"
1481
1455
 
1482
1456
  #: ../lib/hammer_cli_foreman/interface.rb:155
1483
- #, fuzzy
1484
1457
  msgid "Could not delete the interface"
1485
- msgstr "Impossible de supprimer l'image"
1458
+ msgstr "Impossible de supprimer cette interface"
1486
1459
 
1487
1460
  #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
1488
1461
  msgid "Location numeric id to search by"
@@ -1516,6 +1489,40 @@ msgstr "Localisation supprimée"
1516
1489
  msgid "Could not delete the location"
1517
1490
  msgstr "Impossible de supprimer la localisation"
1518
1491
 
1492
+ #: ../lib/hammer_cli_foreman/location.rb:86
1493
+ #, fuzzy
1494
+ msgid "Create or update parameter for a location."
1495
+ msgstr "Créer ou changer un paramètre d'un domaine."
1496
+
1497
+ #: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
1498
+ #, fuzzy
1499
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1500
+ msgstr "Paramètre [%{name}] mis à jour à la valeur [%{value}]."
1501
+
1502
+ #: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
1503
+ msgid "Parameter [%{name}] created with value [%{value}]"
1504
+ msgstr ""
1505
+
1506
+ #: ../lib/hammer_cli_foreman/location.rb:90
1507
+ #, fuzzy
1508
+ msgid "Could not set location parameter"
1509
+ msgstr "Impossible de positionner le paramètre du domaine"
1510
+
1511
+ #: ../lib/hammer_cli_foreman/location.rb:97
1512
+ #, fuzzy
1513
+ msgid "Delete parameter for a location."
1514
+ msgstr "Suppression du paramètre d'un domaine"
1515
+
1516
+ #: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
1517
+ #, fuzzy
1518
+ msgid "Parameter [%{name}] deleted"
1519
+ msgstr "Paramètre global [%{name}] supprimé"
1520
+
1521
+ #: ../lib/hammer_cli_foreman/location.rb:100
1522
+ #, fuzzy
1523
+ msgid "Could not delete location parameter"
1524
+ msgstr "Impossible de positionner le paramètre du domaine"
1525
+
1519
1526
  #: ../lib/hammer_cli_foreman/media.rb:11
1520
1527
  msgid "Path"
1521
1528
  msgstr "Chemin"
@@ -1720,6 +1727,25 @@ msgstr "Organisation supprimée"
1720
1727
  msgid "Could not delete the organization"
1721
1728
  msgstr "Impossible de supprimer l'organisation"
1722
1729
 
1730
+ #: ../lib/hammer_cli_foreman/organization.rb:87
1731
+ #, fuzzy
1732
+ msgid "Create or update parameter for an organization."
1733
+ msgstr "Créer ou changer un paramètre d'un domaine."
1734
+
1735
+ #: ../lib/hammer_cli_foreman/organization.rb:91
1736
+ #, fuzzy
1737
+ msgid "Could not set organization parameter"
1738
+ msgstr "Impossible de positionner le paramètre du domaine"
1739
+
1740
+ #: ../lib/hammer_cli_foreman/organization.rb:98
1741
+ #, fuzzy
1742
+ msgid "Delete parameter for an organization."
1743
+ msgstr "Suppression du paramètre d'un domaine"
1744
+
1745
+ #: ../lib/hammer_cli_foreman/organization.rb:101
1746
+ msgid "Could not delete organization parameter"
1747
+ msgstr ""
1748
+
1723
1749
  #: ../lib/hammer_cli_foreman/partition_table.rb:31
1724
1750
  msgid "View partition table content."
1725
1751
  msgstr "Voir le contenu de la table de partition"
@@ -1932,43 +1958,54 @@ msgstr "Impossible de supprimer le rapport"
1932
1958
  msgid "The server does not support such operation."
1933
1959
  msgstr "Le serveur ne supporte pas cette opération."
1934
1960
 
1935
- #: ../lib/hammer_cli_foreman/role.rb:23
1961
+ #: ../lib/hammer_cli_foreman/role.rb:20
1962
+ #, fuzzy
1963
+ msgid "Builtin"
1964
+ msgstr "Construire"
1965
+
1966
+ #: ../lib/hammer_cli_foreman/role.rb:24
1967
+ msgid "No"
1968
+ msgstr ""
1969
+
1970
+ #: ../lib/hammer_cli_foreman/role.rb:24
1971
+ msgid "Yes"
1972
+ msgstr ""
1973
+
1974
+ #: ../lib/hammer_cli_foreman/role.rb:36
1936
1975
  msgid "User role id"
1937
1976
  msgstr "Identifiant du rôle utilisateur"
1938
1977
 
1939
- #: ../lib/hammer_cli_foreman/role.rb:47
1978
+ #: ../lib/hammer_cli_foreman/role.rb:60
1940
1979
  msgid "User role [%<name>s] created"
1941
1980
  msgstr "Rôle utilisateur [%<name>s] créé"
1942
1981
 
1943
- #: ../lib/hammer_cli_foreman/role.rb:48
1982
+ #: ../lib/hammer_cli_foreman/role.rb:61
1944
1983
  msgid "Could not create the user role"
1945
1984
  msgstr "Impossible de créer le rôle utilisateur"
1946
1985
 
1947
- #: ../lib/hammer_cli_foreman/role.rb:55
1986
+ #: ../lib/hammer_cli_foreman/role.rb:68
1948
1987
  msgid "User role [%<name>s] updated"
1949
1988
  msgstr "Rôle utilisateur [%<name>s] mis à jour"
1950
1989
 
1951
- #: ../lib/hammer_cli_foreman/role.rb:56
1990
+ #: ../lib/hammer_cli_foreman/role.rb:69
1952
1991
  msgid "Could not update the user role"
1953
1992
  msgstr "Impossible de mettre à jour le rôle utilisateur"
1954
1993
 
1955
- #: ../lib/hammer_cli_foreman/role.rb:63
1994
+ #: ../lib/hammer_cli_foreman/role.rb:76
1956
1995
  msgid "User role [%<name>s] deleted"
1957
1996
  msgstr "Rôle utilisateur [%<name>s] supprimé"
1958
1997
 
1959
- #: ../lib/hammer_cli_foreman/role.rb:64
1998
+ #: ../lib/hammer_cli_foreman/role.rb:77
1960
1999
  msgid "Could not delete the user roles"
1961
2000
  msgstr "Impossible de supprimer le rôle utilisateur"
1962
2001
 
1963
2002
  #: ../lib/hammer_cli_foreman/settings.rb:28
1964
- #, fuzzy
1965
2003
  msgid "Setting [%{name}] updated to [%{value}]"
1966
- msgstr "Paramètre [%{name}] mis à jour à la valeur [%{value}]."
2004
+ msgstr "Paramètre [%{name}] mis à jour à [%{value}]"
1967
2005
 
1968
2006
  #: ../lib/hammer_cli_foreman/settings.rb:29
1969
- #, fuzzy
1970
2007
  msgid "Could not update the setting"
1971
- msgstr "Impossible de mettreà jour le domaine"
2008
+ msgstr "Impossible de mettre à jour le paramètre"
1972
2009
 
1973
2010
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
1974
2011
  msgid "Default Value"
@@ -2004,25 +2041,23 @@ msgstr "Surcharger les valeurs"
2004
2041
 
2005
2042
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:58
2006
2043
  msgid "Merge overrides"
2007
- msgstr ""
2044
+ msgstr "Fusionner les surcharges"
2008
2045
 
2009
2046
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
2010
- #, fuzzy
2011
2047
  msgid "Merge default value"
2012
- msgstr "Valeur par défaut"
2048
+ msgstr "Fusionner la valeur par défaut"
2013
2049
 
2014
2050
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
2015
2051
  msgid "Avoid duplicates"
2016
- msgstr ""
2052
+ msgstr "Eviter les doublons"
2017
2053
 
2018
2054
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:61
2019
2055
  msgid "Order"
2020
2056
  msgstr "Ordre"
2021
2057
 
2022
2058
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
2023
- #, fuzzy
2024
2059
  msgid "Values"
2025
- msgstr "Valeur"
2060
+ msgstr "Valeurs"
2026
2061
 
2027
2062
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
2028
2063
  msgid "Match"
@@ -2053,24 +2088,20 @@ msgid "Type of the validator."
2053
2088
  msgstr "Type du validateur."
2054
2089
 
2055
2090
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
2056
- #, fuzzy
2057
2091
  msgid "Override value created"
2058
- msgstr "Surcharger les valeurs"
2092
+ msgstr "Valeur de surcharge créée"
2059
2093
 
2060
2094
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133 ../lib/hammer_cli_foreman/smart_variable.rb:123
2061
- #, fuzzy
2062
2095
  msgid "Could not create the override_value"
2063
- msgstr "Impossible de créer le rôle utilisateur"
2096
+ msgstr "Impossible de créer cette surcharge de valeur"
2064
2097
 
2065
2098
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
2066
- #, fuzzy
2067
2099
  msgid "Override value deleted"
2068
- msgstr "Surcharger les valeurs"
2100
+ msgstr "Valeur de surcharge supprimée"
2069
2101
 
2070
2102
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:153 ../lib/hammer_cli_foreman/smart_variable.rb:136
2071
- #, fuzzy
2072
2103
  msgid "Could not delete the override value"
2073
- msgstr "Impossible de supprimer le système d'expoitation"
2104
+ msgstr "Impossible de supprimer cette surcharge de valeur "
2074
2105
 
2075
2106
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2076
2107
  msgid "URL"
@@ -2126,35 +2157,31 @@ msgstr "Rechargement des fonctions smart proxy échoué"
2126
2157
 
2127
2158
  #: ../lib/hammer_cli_foreman/smart_variable.rb:82
2128
2159
  msgid "Smart variable [%{variable}] created"
2129
- msgstr ""
2160
+ msgstr "Smart variable [%{variable}] créée"
2130
2161
 
2131
2162
  #: ../lib/hammer_cli_foreman/smart_variable.rb:83
2132
- #, fuzzy
2133
2163
  msgid "Could not create the smart variable"
2134
- msgstr "Impossible de créer la table de partition"
2164
+ msgstr "Impossible de créer la smart variable"
2135
2165
 
2136
2166
  #: ../lib/hammer_cli_foreman/smart_variable.rb:87 ../lib/hammer_cli_foreman/smart_variable.rb:101
2137
- #, fuzzy
2138
2167
  msgid "Type of the variable."
2139
- msgstr "Type du validateur."
2168
+ msgstr "Type de variable."
2140
2169
 
2141
2170
  #: ../lib/hammer_cli_foreman/smart_variable.rb:96
2142
2171
  msgid "Smart variable [%{variable}] updated"
2143
- msgstr ""
2172
+ msgstr "Smart variable [%{variable}] mis à jour"
2144
2173
 
2145
2174
  #: ../lib/hammer_cli_foreman/smart_variable.rb:97
2146
- #, fuzzy
2147
2175
  msgid "Could not update the smart variable"
2148
- msgstr "Impossible de mettre à jour la table de partition"
2176
+ msgstr "Impossible de mettre à jour la smart variable"
2149
2177
 
2150
2178
  #: ../lib/hammer_cli_foreman/smart_variable.rb:111
2151
2179
  msgid "Smart variable [%{variable}] deleted"
2152
- msgstr ""
2180
+ msgstr "Smart variable [%{variable}] supprimée"
2153
2181
 
2154
2182
  #: ../lib/hammer_cli_foreman/smart_variable.rb:112
2155
- #, fuzzy
2156
2183
  msgid "Could not delete the smart variable"
2157
- msgstr "Impossible de supprimer la table de partition"
2184
+ msgstr "Impossible de supprimer la smart variable"
2158
2185
 
2159
2186
  #: ../lib/hammer_cli_foreman/subnet.rb:13
2160
2187
  msgid "Mask"
@@ -2184,6 +2211,10 @@ msgstr "TFTP"
2184
2211
  msgid "DHCP"
2185
2212
  msgstr "DHCP"
2186
2213
 
2214
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2215
+ msgid "IPAM"
2216
+ msgstr ""
2217
+
2187
2218
  #: ../lib/hammer_cli_foreman/subnet.rb:30
2188
2219
  msgid "VLAN ID"
2189
2220
  msgstr "VLAN ID"
@@ -2238,7 +2269,7 @@ msgstr "Chemin du fichier contenant le modèle"
2238
2269
 
2239
2270
  #: ../lib/hammer_cli_foreman/template.rb:104 ../lib/hammer_cli_foreman/template.rb:122
2240
2271
  msgid "Template type. Eg. snippet, script, provision"
2241
- msgstr "Type de modèle. Ex: snippet, script, provision"
2272
+ msgstr "Type de modèle. Ex: snippet, script, provisioning"
2242
2273
 
2243
2274
  #: ../lib/hammer_cli_foreman/template.rb:106
2244
2275
  msgid "Config template created"
@@ -2266,7 +2297,7 @@ msgstr "Impossible de supprimer le modèle de configuration"
2266
2297
 
2267
2298
  #: ../lib/hammer_cli_foreman/template.rb:150
2268
2299
  msgid "Update the default PXE menu on all configured TFTP servers"
2269
- msgstr ""
2300
+ msgstr "Mise à jour du menu PXE par défaut sur tous les serveurs TFTP configurés"
2270
2301
 
2271
2302
  #: ../lib/hammer_cli_foreman/user.rb:11
2272
2303
  msgid "Login"
@@ -2286,33 +2317,31 @@ msgstr "Autorisé par"
2286
2317
 
2287
2318
  #: ../lib/hammer_cli_foreman/user.rb:30
2288
2319
  msgid "Locale"
2289
- msgstr ""
2320
+ msgstr "Locale"
2290
2321
 
2291
2322
  #: ../lib/hammer_cli_foreman/user.rb:31
2292
2323
  msgid "Timezone"
2293
- msgstr ""
2324
+ msgstr "Fuseau horaire"
2294
2325
 
2295
2326
  #: ../lib/hammer_cli_foreman/user.rb:32
2296
2327
  msgid "Last login"
2297
2328
  msgstr "Dernière connexion le"
2298
2329
 
2299
2330
  #: ../lib/hammer_cli_foreman/user.rb:33
2300
- #, fuzzy
2301
2331
  msgid "Default organization"
2302
- msgstr "Gestion des organisations."
2332
+ msgstr "Organisation par défaut"
2303
2333
 
2304
2334
  #: ../lib/hammer_cli_foreman/user.rb:34
2305
- #, fuzzy
2306
2335
  msgid "Default location"
2307
- msgstr "Gestion des localisations."
2336
+ msgstr "Emplacement par défaut"
2308
2337
 
2309
2338
  #: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
2310
2339
  msgid "default"
2311
- msgstr ""
2340
+ msgstr "défaut"
2312
2341
 
2313
2342
  #: ../lib/hammer_cli_foreman/user.rb:53
2314
2343
  msgid "User [%{login}] created"
2315
- msgstr ""
2344
+ msgstr "Utilisateur [%{login}] créé"
2316
2345
 
2317
2346
  #: ../lib/hammer_cli_foreman/user.rb:54
2318
2347
  msgid "Could not create the user"
@@ -2320,7 +2349,7 @@ msgstr "Impossible de créer l'utilisateur"
2320
2349
 
2321
2350
  #: ../lib/hammer_cli_foreman/user.rb:61
2322
2351
  msgid "User [%{login}] updated"
2323
- msgstr ""
2352
+ msgstr "Utilisateur [%{login}] mis à jour"
2324
2353
 
2325
2354
  #: ../lib/hammer_cli_foreman/user.rb:62
2326
2355
  msgid "Could not update the user"
@@ -2328,7 +2357,7 @@ msgstr "Impossible de mettre à jour l'utilisateur"
2328
2357
 
2329
2358
  #: ../lib/hammer_cli_foreman/user.rb:69
2330
2359
  msgid "User [%{login}] deleted"
2331
- msgstr ""
2360
+ msgstr "Utilisateur [%{login}] supprimé"
2332
2361
 
2333
2362
  #: ../lib/hammer_cli_foreman/user.rb:70
2334
2363
  msgid "Could not delete the user"
@@ -2358,62 +2387,6 @@ msgstr "Groupe d'utilisateurs [%<name>s] supprimé"
2358
2387
  msgid "Could not delete the user group"
2359
2388
  msgstr "Impossible de supprimer le groupe d'utilisateurs"
2360
2389
 
2361
- #: lib/hammer_cli_foreman/host.rb:171
2362
- #~ msgid "Disk"
2363
- #~ msgstr "Disque"
2364
-
2365
- #: lib/hammer_cli_foreman/host.rb:189
2366
- #~ msgid "Puppet Proxy Id"
2367
- #~ msgstr "Id du Proxy Puppet"
2368
-
2369
- #: lib/hammer_cli_foreman/host.rb:198
2370
- #~ msgid "BMC Network Interfaces"
2371
- #~ msgstr "Interface Réseau BMC"
2372
-
2373
- #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
2374
- #~ msgid "Domain Id"
2375
- #~ msgstr "Id du domaine"
2376
-
2377
- #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
2378
- #~ msgid "Domain Name"
2379
- #~ msgstr "Nom de domaine"
2380
-
2381
- #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
2382
- #~ msgid "Subnet Id"
2383
- #~ msgstr "Id du sous réseau"
2384
-
2385
- #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
2386
- #~ msgid "Subnet Name"
2387
- #~ msgstr "Nom du sous-réseau"
2388
-
2389
- #: lib/hammer_cli_foreman/host.rb:207
2390
- #~ msgid "BMC Username"
2391
- #~ msgstr "Nom d'utilisateur BMC"
2392
-
2393
- #: lib/hammer_cli_foreman/host.rb:208
2394
- #~ msgid "BMC Password"
2395
- #~ msgstr "Mot de passe BMC"
2396
-
2397
- #: lib/hammer_cli_foreman/host.rb:211
2398
- #~ msgid "Managed Network Interfaces"
2399
- #~ msgstr "Interfaces réseaux gérées"
2400
-
2401
- #: lib/hammer_cli_foreman/commands.rb:288
2402
- #~ msgid "List next page? (%s): "
2403
- #~ msgstr "Afficher la page suivante ? (%s): "
2404
-
2405
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
2406
- #~ msgid "Count"
2407
- #~ msgstr "Nombre"
2408
-
2409
- #: lib/hammer_cli_foreman/user.rb:47
2410
- #~ msgid "User created"
2411
- #~ msgstr "Utilisateur créé"
2412
-
2413
- #: lib/hammer_cli_foreman/user.rb:55
2414
- #~ msgid "User updated"
2415
- #~ msgstr "Utilisateur mis à jour"
2416
-
2417
- #: lib/hammer_cli_foreman/user.rb:63
2418
- #~ msgid "User deleted"
2419
- #~ msgstr "Utilisateur supprimé"
2390
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:201
2391
+ #~ msgid "%s found more than once"
2392
+ #~ msgstr "%s a été trouvé plus d'une fois"