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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee543dac02c656e65986c6ee749715e063421a34
4
- data.tar.gz: 61ce4eac9d70431ffdcddce15bc11c508c587298
3
+ metadata.gz: 954205c9eb6809133c66f3186248030d45ed9705
4
+ data.tar.gz: 5af8557f733f0c03ae206e407f16fd7971c3e245
5
5
  SHA512:
6
- metadata.gz: e1445bbbb84e20c1713b394e8d5e6f4e58ef9434ff165cec79188dbf9c1264d030f6d6201940f35e08f399c6a7e492c99d8806e7e463516e6bd08be93d4e05ef
7
- data.tar.gz: 0d1b5dccedb96c4dab684c19701e8a5603f44ef5d03a7950ebd0dea1a3a79edde66982415951467cac20c321f32462f764d7b42046e7d38db2cff66c654f3d3a
6
+ metadata.gz: 346c2d28aae1b82efbdc37e8f6acd6072d1e8ec168f0765ccaba3ac56ed04188b4bf9e04a709551935842ad8f445e71fadbc22259588ed1586c1f933875bff11
7
+ data.tar.gz: 6085ab58be173a202cf4d448af282213c1d1dc8627ee86c9c8f9fdb0295d07b2d3f312043b6f7bfe6cf7788b49050eab9dee90b0a8ccd28975cd4863cfa1cd65
data/README.md CHANGED
@@ -38,11 +38,22 @@ look at [the development documentation](doc/developer_docs.md#hammer-development
38
38
  How to test
39
39
  ------------
40
40
 
41
- $ bundle install
42
- $ bundle exec "rake test"
41
+ ```bash
42
+ $ bundle install
43
+ $ bundle exec "rake test"
44
+ ```
43
45
 
44
46
  Generated coverage reports are stored in ./coverage directory.
45
47
 
48
+ There is support for testing against API documentation (and sample data) generated from different versions of Foreman.
49
+ The required version of Foreman can be set in env variable `TEST_API_VERSION`. Make sure the requested data are
50
+ in `test/unit/data/<version>/`.
51
+
52
+ ```bash
53
+ $ TEST_API_VERSION=1.10 bundle exec rake test
54
+ ```
55
+
56
+
46
57
  License
47
58
  -------
48
59
 
data/doc/host_create.md CHANGED
@@ -221,13 +221,19 @@ flavor_id
221
221
  image_id
222
222
  ```
223
223
 
224
- ## vmWare
224
+ ## VMware
225
225
  Available keys for `--compute-attributes`:
226
226
  ```
227
- cpus # cpu count
228
- memory_mb # integer number
229
- cluster
230
- path
227
+ cpus # cpu count
228
+ corespersocket # number of cores per socket
229
+ # (applicable to hardware versions < 10 only)
230
+ memory_mb # integer number
231
+ cluster # cluster id from VMware
232
+ path # path to folder
233
+ guest_id # guest OS id form VMware
234
+ scsi_controller_type # id of the controller from VMWare
235
+ hardware_version # hardware version id from VMWare
236
+ start # 1/0
231
237
  ```
232
238
 
233
239
  Available keys for `--interface`:
@@ -242,12 +248,14 @@ compute_type # Type of the network adapter, for example one of:
242
248
  # See documentation center for your version of vSphere to find
243
249
  # more details about available adapter types:
244
250
  # https://www.vmware.com/support/pubs/
245
- compute_network
251
+ compute_network # network id from VMware
246
252
  ```
247
253
 
248
254
  Available keys for `--volume`:
249
255
  ```
250
- datastore
256
+ datastore # datastore id from VMware
251
257
  name
252
258
  size_gb # integer number
259
+ thin # true/false
260
+ eager_zero # true/false
253
261
  ```
data/doc/release_notes.md CHANGED
@@ -1,6 +1,17 @@
1
1
  Release notes
2
2
  =============
3
3
 
4
+ ### 0.5.0 (2015-12-14)
5
+ * Addng info command to role ([#7412](http://projects.theforeman.org/issues/7412))
6
+ * Add defaults support for location/organization ([#11402](http://projects.theforeman.org/issues/11402))
7
+ * Tests updated to work with Foreman 1.10 API ([#12260](http://projects.theforeman.org/issues/12260))
8
+ * Commands for setting parameters at taxonomies ([#12699](http://projects.theforeman.org/issues/12699))
9
+ * Change once to one in error message ([#12695](http://projects.theforeman.org/issues/12695))
10
+ * Host create VMware docs update ([#12087](http://projects.theforeman.org/issues/12087))
11
+ * Add option to overwrite conflicts on host changes ([#9208](http://projects.theforeman.org/issues/9208))
12
+ * String parameters get double-quoted ([#12202](http://projects.theforeman.org/issues/12202))
13
+ * Added IPAM desc on info command ([#11074](http://projects.theforeman.org/issues/11074))
14
+
4
15
  ### 0.4.0 (2015-09-21)
5
16
  * Adding match_default to smart variables and smart class parameters ([#10731](http://projects.theforeman.org/issues/10731))
6
17
  * Missing field for VMWare host creation docs ([#11088](http://projects.theforeman.org/issues/11088))
@@ -42,13 +42,17 @@ module HammerCLIForeman
42
42
  )
43
43
  end
44
44
 
45
+ def self.foreman_api
46
+ foreman_api_connection.api
47
+ end
48
+
45
49
  def self.foreman_resource!(resource_name, options={})
46
50
  if options[:singular]
47
51
  resource_name = ApipieBindings::Inflector.pluralize(resource_name.to_s).to_sym
48
52
  else
49
53
  resource_name = resource_name.to_sym
50
54
  end
51
- foreman_api_connection.api.resource(resource_name)
55
+ foreman_api.resource(resource_name)
52
56
  end
53
57
 
54
58
  def self.foreman_resource(resource_name, options={})
@@ -0,0 +1,29 @@
1
+ require 'hammer_cli'
2
+ module HammerCLIForeman
3
+ class Defaults < HammerCLI::BaseDefaultsProvider
4
+ def initialize
5
+ @provider_name = 'foreman'
6
+ @supported_defaults = [:organization_id, :location_id]
7
+ @description = _('Use the default organization and/or location from the server')
8
+ end
9
+
10
+ def get_defaults(param)
11
+ param = "default_organization" if param == :organization_id
12
+ param = "default_location" if param == :location_id
13
+ user = get_user
14
+ val = nil
15
+ if user
16
+ val = user["results"].first[param] if user["results"]
17
+ val = val["id"] if val.is_a?(Hash) && param.include?("default")
18
+ end
19
+ val
20
+ end
21
+
22
+ private
23
+ def get_user
24
+ HammerCLIForeman.foreman_resource(:users).action(:index).call(:search =>"login="+HammerCLIForeman.credentials.username)
25
+ end
26
+ end
27
+ HammerCLI.defaults.register_provider(Defaults.new())
28
+
29
+ end
@@ -38,6 +38,8 @@ module HammerCLIForeman
38
38
  base.option "--build", "BUILD", " ", bme_options
39
39
  bme_options[:format] = HammerCLI::Options::Normalizers::Bool.new
40
40
  base.option "--enabled", "ENABLED", " ", bme_options
41
+ bme_options[:format] = HammerCLI::Options::Normalizers::Bool.new
42
+ base.option "--overwrite", "OVERWRITE", " ", bme_options
41
43
 
42
44
  base.option "--parameters", "PARAMS", _("Host parameters."),
43
45
  :format => HammerCLI::Options::Normalizers::KeyValueList.new
@@ -81,6 +83,7 @@ module HammerCLIForeman
81
83
  params['host']['build'] = option_build unless option_build.nil?
82
84
  params['host']['managed'] = option_managed unless option_managed.nil?
83
85
  params['host']['enabled'] = option_enabled unless option_enabled.nil?
86
+ params['host']['overwrite'] = option_overwrite unless option_overwrite.nil?
84
87
 
85
88
  params['host']['host_parameters_attributes'] = parameter_attributes
86
89
  params['host']['compute_attributes'] = option_compute_attributes || {}
@@ -112,7 +115,11 @@ module HammerCLIForeman
112
115
  def parameter_attributes
113
116
  return {} unless option_parameters
114
117
  option_parameters.collect do |key, value|
115
- {"name"=>key, "value"=>value.inspect, "nested"=>""}
118
+ if value.is_a? String
119
+ {"name"=>key, "value"=>value}
120
+ else
121
+ {"name"=>key, "value"=>value.inspect}
122
+ end
116
123
  end
117
124
  end
118
125
 
@@ -198,7 +198,7 @@ module HammerCLIForeman
198
198
 
199
199
  def pick_result(results, resource)
200
200
  raise ResolverError.new(_("%s not found") % resource.singular_name, resource) if results.empty?
201
- raise ResolverError.new(_("%s found more than once") % resource.singular_name, resource) if results.count > 1
201
+ raise ResolverError.new(_("found more than one %s") % resource.singular_name, resource) if results.count > 1
202
202
  results[0]
203
203
  end
204
204
 
@@ -81,6 +81,27 @@ module HammerCLIForeman
81
81
  end
82
82
  end
83
83
 
84
+
85
+ class SetParameterCommand < HammerCLIForeman::Parameter::SetCommand
86
+ desc _("Create or update parameter for a location.")
87
+
88
+ success_message_for :update, _("Parameter [%{name}] updated to value [%{value}]")
89
+ success_message_for :create, _("Parameter [%{name}] created with value [%{value}]")
90
+ failure_message _("Could not set location parameter")
91
+
92
+ build_options
93
+ end
94
+
95
+
96
+ class DeleteParameterCommand < HammerCLIForeman::Parameter::DeleteCommand
97
+ desc _("Delete parameter for a location.")
98
+
99
+ success_message _("Parameter [%{name}] deleted")
100
+ failure_message _("Could not delete location parameter")
101
+
102
+ build_options
103
+ end
104
+
84
105
  HammerCLIForeman::AssociatingCommands::Hostgroup.extend_command(self)
85
106
  HammerCLIForeman::AssociatingCommands::Environment.extend_command(self)
86
107
  HammerCLIForeman::AssociatingCommands::Domain.extend_command(self)
@@ -83,6 +83,27 @@ module HammerCLIForeman
83
83
  end
84
84
 
85
85
 
86
+ class SetParameterCommand < HammerCLIForeman::Parameter::SetCommand
87
+ desc _("Create or update parameter for an organization.")
88
+
89
+ success_message_for :update, _("Parameter [%{name}] updated to value [%{value}]")
90
+ success_message_for :create, _("Parameter [%{name}] created with value [%{value}]")
91
+ failure_message _("Could not set organization parameter")
92
+
93
+ build_options
94
+ end
95
+
96
+
97
+ class DeleteParameterCommand < HammerCLIForeman::Parameter::DeleteCommand
98
+ desc _("Delete parameter for an organization.")
99
+
100
+ success_message _("Parameter [%{name}] deleted")
101
+ failure_message _("Could not delete organization parameter")
102
+
103
+ build_options
104
+ end
105
+
106
+
86
107
  HammerCLIForeman::AssociatingCommands::Hostgroup.extend_command(self)
87
108
  HammerCLIForeman::AssociatingCommands::Environment.extend_command(self)
88
109
  HammerCLIForeman::AssociatingCommands::Domain.extend_command(self)
@@ -55,11 +55,11 @@ module HammerCLIForeman
55
55
 
56
56
  def execute
57
57
  if parameter_exist?
58
- update_parameter
59
- print_message success_message_for :update if success_message_for :update
58
+ response = update_parameter
59
+ print_message(success_message_for(:update), response) if success_message_for(:update)
60
60
  else
61
- create_parameter
62
- print_message success_message_for :create if success_message_for :create
61
+ response = create_parameter
62
+ print_message(success_message_for(:create), response) if success_message_for(:create)
63
63
  end
64
64
  HammerCLI::EX_OK
65
65
  end
@@ -102,10 +102,10 @@ module HammerCLIForeman
102
102
  def execute
103
103
  params = {
104
104
  "id" => get_parameter_identifier
105
- }.merge base_action_params
105
+ }.merge(base_action_params)
106
106
 
107
- HammerCLIForeman.record_to_common_format(parameter_resource.call(:destroy, params))
108
- print_message success_message if success_message
107
+ response = HammerCLIForeman.record_to_common_format(parameter_resource.call(:destroy, params))
108
+ print_message(success_message, response) if success_message
109
109
  HammerCLI::EX_OK
110
110
  end
111
111
 
@@ -15,6 +15,19 @@ module HammerCLIForeman
15
15
  build_options
16
16
  end
17
17
 
18
+ class InfoCommand < HammerCLIForeman::InfoCommand
19
+ output ListCommand.output_definition do
20
+ field :builtin_text, _("Builtin")
21
+ end
22
+
23
+ def extend_data(data)
24
+ data['builtin_text'] = (data['builtin'].to_i > 0) ? _('Yes') : _('No')
25
+ data
26
+ end
27
+
28
+ build_options
29
+ end
30
+
18
31
 
19
32
  class FiltersCommand < HammerCLIForeman::ListCommand
20
33
  command_name "filters"
@@ -26,7 +26,7 @@ module HammerCLIForeman
26
26
  field :dns_secondary, _("Secondary DNS")
27
27
  field :tftp, _("TFTP"), Fields::Reference, :details => :url
28
28
  field :dhcp, _("DHCP"), Fields::Reference, :details => :url
29
-
29
+ field :ipam, _("IPAM")
30
30
  field :vlanid, _("VLAN ID")
31
31
  field :gateway, _("Gateway")
32
32
  field :from, _("From")
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForeman
2
2
  def self.version
3
- @version ||= Gem::Version.new '0.4.0'
3
+ @version ||= Gem::Version.new '0.5.0'
4
4
  end
5
5
  end
@@ -19,6 +19,8 @@ module HammerCLIForeman
19
19
  require 'hammer_cli_foreman/param_filters'
20
20
  require 'hammer_cli_foreman/id_resolver'
21
21
  require 'hammer_cli_foreman/dependency_resolver'
22
+ require 'hammer_cli_foreman/defaults'
23
+
22
24
 
23
25
  begin
24
26
  require 'hammer_cli_foreman/commands'
@@ -4,139 +4,137 @@
4
4
  #
5
5
  # Translators:
6
6
  # Christina Gurski <Gurski_christina@yahoo.de>, 2015
7
- # Ettore Atalan <atalanttore@googlemail.com>, 2014
7
+ # Ettore Atalan <atalanttore@googlemail.com>, 2014-2015
8
8
  # Marcel Fuhrmann <marcel@mfsystems.me>, 2015
9
9
  # simon11 <simon.stieger.98@live.de>, 2014
10
10
  # simon11 <simon.stieger.98@live.de>, 2014
11
11
  msgid ""
12
12
  msgstr ""
13
- "Project-Id-Version: hammer-cli-foreman 0.3.0\n"
13
+ "Project-Id-Version: hammer-cli-foreman 0.4.0\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2015-09-21 16:50+0200\n"
16
- "PO-Revision-Date: 2015-06-27 20:10+0000\n"
17
- "Last-Translator: Christina Gurski <Gurski_christina@yahoo.de>\n"
18
- "Language-Team: German (http://www.transifex.com/projects/p/foreman/language/de"
19
- "/)\n"
15
+ "POT-Creation-Date: 2015-12-11 04:48+0000\n"
16
+ "PO-Revision-Date: 2015-10-15 20:27+0000\n"
17
+ "Last-Translator: mbacovsky <martin.bacovsky@gmail.com>\n"
18
+ "Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
20
19
  "MIME-Version: 1.0\n"
21
20
  "Content-Type: text/plain; charset=UTF-8\n"
22
21
  "Content-Transfer-Encoding: 8bit\n"
23
22
  "Language: de\n"
24
23
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
25
24
 
26
- #: ../lib/hammer_cli_foreman.rb:30
25
+ #: ../lib/hammer_cli_foreman.rb:32
27
26
  msgid "Foreman connection login/logout."
28
27
  msgstr "Anmeldung/Abmeldung für Foreman-Verbindung."
29
28
 
30
- #: ../lib/hammer_cli_foreman.rb:34
29
+ #: ../lib/hammer_cli_foreman.rb:36
31
30
  msgid "Manipulate architectures."
32
31
  msgstr "Architekturen bearbeiten."
33
32
 
34
- #: ../lib/hammer_cli_foreman.rb:38
33
+ #: ../lib/hammer_cli_foreman.rb:40
35
34
  msgid "Manipulate auth sources."
36
- msgstr "Authentifizierungsquellen bearbeiten"
35
+ msgstr "Authentifizierungsquellen bearbeiten."
37
36
 
38
- #: ../lib/hammer_cli_foreman.rb:42
37
+ #: ../lib/hammer_cli_foreman.rb:44
39
38
  msgid "Manipulate compute resources."
40
39
  msgstr "Rechnerressourcen bearbeiten."
41
40
 
42
- #: ../lib/hammer_cli_foreman.rb:46
41
+ #: ../lib/hammer_cli_foreman.rb:48
43
42
  msgid "Manipulate domains."
44
43
  msgstr "Domains bearbeiten."
45
44
 
46
- #: ../lib/hammer_cli_foreman.rb:50
45
+ #: ../lib/hammer_cli_foreman.rb:52
47
46
  msgid "Manipulate environments."
48
- msgstr "Umgebungen bearbeiten"
47
+ msgstr "Umgebungen bearbeiten."
49
48
 
50
- #: ../lib/hammer_cli_foreman.rb:54
49
+ #: ../lib/hammer_cli_foreman.rb:56
51
50
  msgid "Search facts."
52
51
  msgstr "Fakten durchsuchen."
53
52
 
54
- #: ../lib/hammer_cli_foreman.rb:58
53
+ #: ../lib/hammer_cli_foreman.rb:60
55
54
  msgid "Manage permission filters."
56
55
  msgstr "Berechtigungsfilter verwalten."
57
56
 
58
- #: ../lib/hammer_cli_foreman.rb:62
57
+ #: ../lib/hammer_cli_foreman.rb:64
59
58
  msgid "Manipulate hosts."
60
- msgstr "Hosts bearbeiten"
59
+ msgstr "Hosts bearbeiten."
61
60
 
62
- #: ../lib/hammer_cli_foreman.rb:66
61
+ #: ../lib/hammer_cli_foreman.rb:68
63
62
  msgid "Manipulate hostgroups."
64
- msgstr "Hostgruppen verändern"
63
+ msgstr "Hostgruppen bearbeiten."
65
64
 
66
- #: ../lib/hammer_cli_foreman.rb:70
65
+ #: ../lib/hammer_cli_foreman.rb:72
67
66
  msgid "Manipulate locations."
68
- msgstr "Orte verändern."
67
+ msgstr "Standorte bearbeiten."
69
68
 
70
- #: ../lib/hammer_cli_foreman.rb:74
69
+ #: ../lib/hammer_cli_foreman.rb:76
71
70
  msgid "Manipulate installation media."
72
- msgstr "Installationsmedium verändern"
71
+ msgstr "Installationsmedien bearbeiten"
73
72
 
74
- #: ../lib/hammer_cli_foreman.rb:78
73
+ #: ../lib/hammer_cli_foreman.rb:80
75
74
  msgid "Manipulate hardware models."
76
75
  msgstr "Hardwaremodelle bearbeiten."
77
76
 
78
- #: ../lib/hammer_cli_foreman.rb:82
77
+ #: ../lib/hammer_cli_foreman.rb:84
79
78
  msgid "Manipulate operating system."
80
- msgstr "Betriebssystem bearbeiten"
79
+ msgstr "Betriebssystem bearbeiten."
81
80
 
82
- #: ../lib/hammer_cli_foreman.rb:86
81
+ #: ../lib/hammer_cli_foreman.rb:88
83
82
  msgid "Manipulate organizations."
84
- msgstr "Organisationen verändern"
83
+ msgstr "Organisationen bearbeiten."
85
84
 
86
- #: ../lib/hammer_cli_foreman.rb:90
85
+ #: ../lib/hammer_cli_foreman.rb:92
87
86
  msgid "Manipulate partition tables."
88
87
  msgstr "Partitionstabellen bearbeiten."
89
88
 
90
- #: ../lib/hammer_cli_foreman.rb:94
89
+ #: ../lib/hammer_cli_foreman.rb:96
91
90
  msgid "Search puppet modules."
92
- msgstr "Puppet-Module suchen."
91
+ msgstr "Puppet-Module durchsuchen."
93
92
 
94
- #: ../lib/hammer_cli_foreman.rb:98
93
+ #: ../lib/hammer_cli_foreman.rb:100
95
94
  msgid "Browse and read reports."
96
95
  msgstr "Berichte durchsuchen und lesen."
97
96
 
98
- #: ../lib/hammer_cli_foreman.rb:102
97
+ #: ../lib/hammer_cli_foreman.rb:104
99
98
  msgid "Manage user roles."
100
99
  msgstr "Benutzerrollen verwalten."
101
100
 
102
- #: ../lib/hammer_cli_foreman.rb:106
101
+ #: ../lib/hammer_cli_foreman.rb:108
103
102
  msgid "Manipulate smart class parameters."
104
- msgstr "Smart Class-Parameter verändern"
103
+ msgstr "Smart-Klassen-Parameter bearbeiten."
105
104
 
106
- #: ../lib/hammer_cli_foreman.rb:110
107
- #, fuzzy
105
+ #: ../lib/hammer_cli_foreman.rb:112
108
106
  msgid "Manipulate smart variables."
109
- msgstr "Smart Proxys verändern"
107
+ msgstr ""
110
108
 
111
- #: ../lib/hammer_cli_foreman.rb:114
109
+ #: ../lib/hammer_cli_foreman.rb:116
112
110
  msgid "Manipulate smart proxies."
113
- msgstr "Smart Proxys verändern"
111
+ msgstr "Smart-Proxys bearbeiten."
114
112
 
115
- #: ../lib/hammer_cli_foreman.rb:118
113
+ #: ../lib/hammer_cli_foreman.rb:120
116
114
  msgid "Change server settings."
117
- msgstr ""
115
+ msgstr "Servereinstellungen ändern."
118
116
 
119
- #: ../lib/hammer_cli_foreman.rb:122
117
+ #: ../lib/hammer_cli_foreman.rb:124
120
118
  msgid "Manipulate subnets."
121
119
  msgstr "Subnetze bearbeiten."
122
120
 
123
- #: ../lib/hammer_cli_foreman.rb:126
121
+ #: ../lib/hammer_cli_foreman.rb:128
124
122
  msgid "Manipulate config templates."
125
123
  msgstr "Konfigurationsvorlagen bearbeiten."
126
124
 
127
- #: ../lib/hammer_cli_foreman.rb:130
125
+ #: ../lib/hammer_cli_foreman.rb:132
128
126
  msgid "Manipulate users."
129
127
  msgstr "Benutzer bearbeiten."
130
128
 
131
- #: ../lib/hammer_cli_foreman.rb:134
129
+ #: ../lib/hammer_cli_foreman.rb:136
132
130
  msgid "Manage user groups."
133
131
  msgstr "Benutzergruppen verwalten."
134
132
 
135
- #: ../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
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: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
136
134
  msgid "Id"
137
- msgstr "Kennung"
135
+ msgstr "ID"
138
136
 
139
- #: ../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
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: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
140
138
  msgid "Name"
141
139
  msgstr "Name"
142
140
 
@@ -225,28 +223,24 @@ msgid "Associate an user"
225
223
  msgstr "Benutzer zuweisen"
226
224
 
227
225
  #: ../lib/hammer_cli_foreman/associating_commands.rb:149
228
- #, fuzzy
229
226
  msgid "The user has been associated"
230
- msgstr "Architektur wurde zugewiesen"
227
+ msgstr "Benutzer wurde zugewiesen"
231
228
 
232
229
  #: ../lib/hammer_cli_foreman/associating_commands.rb:150
233
- #, fuzzy
234
230
  msgid "Could not associate the user"
235
- msgstr "Der Benutzer konnte nicht erstellt werden"
231
+ msgstr "Benutzer konnte nicht zugewiesen werden"
236
232
 
237
233
  #: ../lib/hammer_cli_foreman/associating_commands.rb:155
238
234
  msgid "Disassociate an user"
239
235
  msgstr "Benutzer lösen"
240
236
 
241
237
  #: ../lib/hammer_cli_foreman/associating_commands.rb:157
242
- #, fuzzy
243
238
  msgid "The user has been disassociated"
244
- msgstr "Architektur wurde gelöst"
239
+ msgstr "Benutzer wurde gelöst"
245
240
 
246
241
  #: ../lib/hammer_cli_foreman/associating_commands.rb:158
247
- #, fuzzy
248
242
  msgid "Could not disassociate the user"
249
- msgstr "Architektur konnte nicht gelöst werden"
243
+ msgstr "Benutzer konnte nicht gelöst werden"
250
244
 
251
245
  #: ../lib/hammer_cli_foreman/associating_commands.rb:167
252
246
  msgid "Associate an user group"
@@ -254,12 +248,11 @@ msgstr "Benutzergruppe zuweisen"
254
248
 
255
249
  #: ../lib/hammer_cli_foreman/associating_commands.rb:171
256
250
  msgid "The user group has been associated"
257
- msgstr ""
251
+ msgstr "Benutzergruppe wurde zugewiesen"
258
252
 
259
253
  #: ../lib/hammer_cli_foreman/associating_commands.rb:172
260
- #, fuzzy
261
254
  msgid "Could not associate the user group"
262
- msgstr "Benutzergruppe konnte nicht erstellt werden"
255
+ msgstr "Benutzergruppe konnte nicht zugewiesen werden"
263
256
 
264
257
  #: ../lib/hammer_cli_foreman/associating_commands.rb:177
265
258
  msgid "Disassociate an user group"
@@ -267,12 +260,11 @@ msgstr "Benutzergruppe lösen"
267
260
 
268
261
  #: ../lib/hammer_cli_foreman/associating_commands.rb:181
269
262
  msgid "The user group has been disassociated"
270
- msgstr ""
263
+ msgstr "Benutzergruppe wurde gelöst"
271
264
 
272
265
  #: ../lib/hammer_cli_foreman/associating_commands.rb:182
273
- #, fuzzy
274
266
  msgid "Could not disassociate the user group"
275
- msgstr "Benutzergruppe konnte nicht erstellt werden"
267
+ msgstr "Benutzergruppe konnte nicht gelöst werden"
276
268
 
277
269
  #: ../lib/hammer_cli_foreman/associating_commands.rb:191
278
270
  msgid "Associate a configuration template"
@@ -388,7 +380,7 @@ msgstr "Benutzerrolle konnte nicht entfernt werden"
388
380
 
389
381
  #: ../lib/hammer_cli_foreman/auth.rb:7
390
382
  msgid "Set credentials"
391
- msgstr "Anmeldedaten festlegen"
383
+ msgstr "Berechtigungsnachweise festlegen"
392
384
 
393
385
  #: ../lib/hammer_cli_foreman/auth.rb:20
394
386
  msgid "Wipe your credentials"
@@ -396,7 +388,7 @@ msgstr "Berechtigungsnachweise löschen"
396
388
 
397
389
  #: ../lib/hammer_cli_foreman/auth.rb:26
398
390
  msgid "Credentials deleted."
399
- msgstr "Anmeldedaten gelöscht."
391
+ msgstr "Berechtigungsnachweise gelöscht."
400
392
 
401
393
  #: ../lib/hammer_cli_foreman/auth.rb:33
402
394
  msgid "Information about current connections"
@@ -404,19 +396,17 @@ msgstr "Informationen über aktuelle Verbindungen"
404
396
 
405
397
  #: ../lib/hammer_cli_foreman/auth.rb:37
406
398
  msgid "You are logged in as '%s'"
407
- msgstr "Sie sind als '%s' angemeldet"
399
+ msgstr "Sie sind als \"%s\" angemeldet"
408
400
 
409
401
  #: ../lib/hammer_cli_foreman/auth.rb:39
410
402
  msgid ""
411
403
  "You are currently not logged in to any service.\n"
412
404
  "Use the service to set credentials."
413
405
  msgstr ""
414
- "Sie sind derzeit bei keinem Service angemeldet.\n"
415
- "Verwenden Sie den Service, um Berechtigungsnachweise festzulegen."
416
406
 
417
407
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
418
408
  msgid "Manage LDAP auth sources."
419
- msgstr "LDAP-Authentifizierungsquellen verwalten"
409
+ msgstr "LDAP-Authentifizierungsquellen verwalten."
420
410
 
421
411
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
422
412
  msgid "LDAPS?"
@@ -432,35 +422,35 @@ msgstr "Servertyp"
432
422
 
433
423
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
434
424
  msgid "Account Username"
435
- msgstr "Konto-Benutzername"
425
+ msgstr "Account-Benutzername"
436
426
 
437
427
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
438
428
  msgid "Base DN"
439
- msgstr "Base DN"
429
+ msgstr "Basis-DN"
440
430
 
441
431
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:29
442
432
  msgid "LDAP filter"
443
- msgstr "LDAP Filter"
433
+ msgstr "LDAP-Filter"
444
434
 
445
435
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
446
436
  msgid "Automatically Create Accounts?"
447
- msgstr "Konten automatisch erstellen?"
437
+ msgstr "Accounts automatisch erstellen?"
448
438
 
449
439
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
450
440
  msgid "Login Name Attribute"
451
- msgstr "Anmeldenamen-Attribut"
441
+ msgstr "Benutzername-Attribut"
452
442
 
453
443
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
454
444
  msgid "First Name Attribute"
455
- msgstr "Vornamen-Attribut"
445
+ msgstr "Vorname-Attribut"
456
446
 
457
447
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
458
448
  msgid "Last Name Attribute"
459
- msgstr "Nachnamen-Attribut"
449
+ msgstr "Nachname-Attribut"
460
450
 
461
451
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
462
452
  msgid "Email Address Attribute"
463
- msgstr "E-Mail-Adressen-Attribut"
453
+ msgstr "E-Mail-Adress-Attribut"
464
454
 
465
455
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
466
456
  msgid "Photo Attribute"
@@ -472,7 +462,7 @@ msgstr "Authentifizierungsquelle erstellt"
472
462
 
473
463
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
474
464
  msgid "Could not create the Auth Source"
475
- msgstr "Authentifzierungsquelle konnte nicht erstellt werden"
465
+ msgstr "Authentifizierungsquelle konnte nicht erstellt werden"
476
466
 
477
467
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
478
468
  msgid "Auth source deleted"
@@ -490,37 +480,37 @@ msgstr "Authentifizierungsquelle aktualisiert"
490
480
  msgid "Could not update the Auth Source"
491
481
  msgstr "Authentifizierungsquelle konnte nicht aktualisiert werden"
492
482
 
493
- #: ../lib/hammer_cli_foreman/commands.rb:83
483
+ #: ../lib/hammer_cli_foreman/commands.rb:87
494
484
  msgid "Received data of unknown format"
495
485
  msgstr "Daten in unbekanntem Format erhalten"
496
486
 
497
- #: ../lib/hammer_cli_foreman/commands.rb:191
487
+ #: ../lib/hammer_cli_foreman/commands.rb:195
498
488
  msgid "Could not find %{resource}. Some search options were missing, please see --help."
499
- msgstr "%{resource} nicht gefunden. Einige Suchoptionen fehlten, siehe --help"
489
+ msgstr "%{resource} konnte nicht gefunden werden. Einige Suchoptionen fehlten; siehe --help."
500
490
 
501
- #: ../lib/hammer_cli_foreman/commands.rb:193
491
+ #: ../lib/hammer_cli_foreman/commands.rb:197
502
492
  msgid "Could not find %{resource}, please set option %{switches}."
503
- msgstr "%{resource} nicht gefunden. Bitte Option %{switches} setzen."
493
+ msgstr "%{resource} konnte nicht gefunden werden, bitte legen Sie die Option %{switches} fest."
504
494
 
505
- #: ../lib/hammer_cli_foreman/commands.rb:195
495
+ #: ../lib/hammer_cli_foreman/commands.rb:199
506
496
  msgid "Could not find %{resource}, please set one of options %{switches}."
507
- msgstr "%{resource} nicht gefunden. Bitte eine der Optionen %{switches} setzen."
497
+ msgstr "%{resource} konnte nicht gefunden werden, bitte legen Sie eine der Optionen %{switches} fest."
508
498
 
509
- #: ../lib/hammer_cli_foreman/commands.rb:517
499
+ #: ../lib/hammer_cli_foreman/commands.rb:521
510
500
  msgid "Associate a resource"
511
501
  msgstr "Ressource zuweisen"
512
502
 
513
- #: ../lib/hammer_cli_foreman/commands.rb:539
503
+ #: ../lib/hammer_cli_foreman/commands.rb:543
514
504
  msgid "Disassociate a resource"
515
505
  msgstr "Ressource lösen"
516
506
 
517
- #: ../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
518
508
  msgid "Value"
519
509
  msgstr "Wert"
520
510
 
521
511
  #: ../lib/hammer_cli_foreman/common_parameter.rb:22
522
512
  msgid "Set a global parameter."
523
- msgstr "Einen globalen Parameter festlegen."
513
+ msgstr "Globalen Parameter festlegen."
524
514
 
525
515
  #: ../lib/hammer_cli_foreman/common_parameter.rb:24
526
516
  msgid "Created parameter [%{name}] with value [%{value}]."
@@ -554,7 +544,7 @@ msgstr "Globale Parameter bearbeiten."
554
544
  msgid "Provider"
555
545
  msgstr "Anbieter"
556
546
 
557
- #: ../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
558
548
  msgid "UUID"
559
549
  msgstr "UUID"
560
550
 
@@ -568,7 +558,7 @@ msgstr "Server"
568
558
 
569
559
  #: ../lib/hammer_cli_foreman/compute_resource.rb:44
570
560
  msgid "Tenant"
571
- msgstr "Mieter"
561
+ msgstr "Mandant"
572
562
 
573
563
  #: ../lib/hammer_cli_foreman/compute_resource.rb:54
574
564
  msgid "Url"
@@ -614,17 +604,21 @@ msgstr "[Foreman]-Benutzername: "
614
604
  msgid "[Foreman] Password for %s: "
615
605
  msgstr "[Foreman]-Passwort für %s: "
616
606
 
607
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
608
+ msgid "Use the default organization and/or location from the server"
609
+ msgstr ""
610
+
617
611
  #: ../lib/hammer_cli_foreman/domain.rb:6
618
612
  msgid "ID of DNS proxy to use within this domain"
619
- msgstr ""
613
+ msgstr "ID des DNS-Proxys für diese Domain"
620
614
 
621
615
  #: ../lib/hammer_cli_foreman/domain.rb:7
622
616
  msgid "Name of DNS proxy to use within this domain"
623
- msgstr ""
617
+ msgstr "Name des DNS-Proxys für diese Domain"
624
618
 
625
619
  #: ../lib/hammer_cli_foreman/domain.rb:43
626
620
  msgid "DNS Id"
627
- msgstr "DNS-Kennung"
621
+ msgstr "DNS-ID"
628
622
 
629
623
  #: ../lib/hammer_cli_foreman/domain.rb:57
630
624
  msgid "Domain [%{name}] created"
@@ -636,7 +630,7 @@ msgstr "Domain konnte nicht erstellt werden"
636
630
 
637
631
  #: ../lib/hammer_cli_foreman/domain.rb:60 ../lib/hammer_cli_foreman/domain.rb:71
638
632
  msgid "Full name describing the domain"
639
- msgstr "Voller Name der die Domäne beschreibet"
633
+ msgstr "Vollständiger Name der Domain"
640
634
 
641
635
  #: ../lib/hammer_cli_foreman/domain.rb:68
642
636
  msgid "Domain [%{name}] updated"
@@ -704,7 +698,7 @@ msgstr "Umgebung konnte nicht gelöscht werden"
704
698
 
705
699
  #: ../lib/hammer_cli_foreman/exception_handler.rb:41
706
700
  msgid "Forbidden - server refused to process the request"
707
- msgstr "Abgelehnt - Server verweigert die Verarbeitung der Anfrage"
701
+ msgstr "Abgelehnt Server verweigert die Verarbeitung der Anfrage"
708
702
 
709
703
  #: ../lib/hammer_cli_foreman/exception_handler.rb:75
710
704
  msgid "Could not load the API description from the server"
@@ -716,11 +710,11 @@ msgstr "ist der Server nicht verfügbar?"
716
710
 
717
711
  #: ../lib/hammer_cli_foreman/exception_handler.rb:77
718
712
  msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
719
- msgstr "Wurde '%s' auf dem Server ausgeführt, während Apipe-Cache in Verwendung war? (typische Produktionseinstellungen)"
713
+ msgstr "lief \"%s\" auf dem Server, als apipie-Cache verwendet wurde? (typische Produktionseinstellungen)"
720
714
 
721
715
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
722
716
  msgid "View and manage user group's external user groups"
723
- msgstr "Externe Benutzergruppen der Benutzergruppe anzeigen und verwalten"
717
+ msgstr "Externe Benutzergruppen dieser Benutzergruppe anzeigen und verwalten"
724
718
 
725
719
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
726
720
  msgid "Auth source"
@@ -758,7 +752,7 @@ msgstr "Externe Benutzergruppe konnte nicht gelöscht werden"
758
752
  msgid "Host"
759
753
  msgstr "Host"
760
754
 
761
- #: ../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
762
756
  msgid "Fact"
763
757
  msgstr "Fakt"
764
758
 
@@ -780,13 +774,13 @@ msgstr "Rolle"
780
774
 
781
775
  #: ../lib/hammer_cli_foreman/filter.rb:14
782
776
  msgid "Permissions"
783
- msgstr "Zugriffsrechte"
777
+ msgstr "Berechtigungen"
784
778
 
785
- #: ../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
786
780
  msgid "(Miscellaneous)"
787
781
  msgstr "(Verschiedenes)"
788
782
 
789
- #: ../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
790
784
  msgid "none"
791
785
  msgstr "keine"
792
786
 
@@ -820,340 +814,331 @@ msgstr "Ressource"
820
814
 
821
815
  #: ../lib/hammer_cli_foreman/host.rb:15
822
816
  msgid "Login of the owner"
823
- msgstr "Anmeldung des Eigentümers"
817
+ msgstr "Benutzername des Besitzers"
824
818
 
825
819
  #: ../lib/hammer_cli_foreman/host.rb:17
826
820
  msgid "ID of the owner"
827
- msgstr "Kennung des Eigentümers"
821
+ msgstr "ID des Besitzers"
828
822
 
829
- #: ../lib/hammer_cli_foreman/host.rb:42
823
+ #: ../lib/hammer_cli_foreman/host.rb:44
830
824
  msgid "Host parameters."
831
825
  msgstr "Hostparameter."
832
826
 
833
- #: ../lib/hammer_cli_foreman/host.rb:44
827
+ #: ../lib/hammer_cli_foreman/host.rb:46
834
828
  msgid "Compute resource attributes."
835
829
  msgstr "Rechnerressourcenattribute."
836
830
 
837
- #: ../lib/hammer_cli_foreman/host.rb:46
831
+ #: ../lib/hammer_cli_foreman/host.rb:48
838
832
  msgid "Volume parameters"
839
833
  msgstr "Datenträgerparameter"
840
834
 
841
- #: ../lib/hammer_cli_foreman/host.rb:48
835
+ #: ../lib/hammer_cli_foreman/host.rb:50
842
836
  msgid "Interface parameters."
843
837
  msgstr "Schnittstellenparameter."
844
838
 
845
- #: ../lib/hammer_cli_foreman/host.rb:62
839
+ #: ../lib/hammer_cli_foreman/host.rb:64
846
840
  msgid "Enter the root password for the host:"
847
- msgstr ""
841
+ msgstr "Geben Sie das Root-Passwort für den Host ein:"
848
842
 
849
- #: ../lib/hammer_cli_foreman/host.rb:146
843
+ #: ../lib/hammer_cli_foreman/host.rb:153
850
844
  msgid "At least one interface must be set as primary"
851
845
  msgstr ""
852
846
 
853
- #: ../lib/hammer_cli_foreman/host.rb:149
847
+ #: ../lib/hammer_cli_foreman/host.rb:156
854
848
  msgid "At least one interface must be set as provision"
855
849
  msgstr ""
856
850
 
857
- #: ../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
858
852
  msgid "Operating System"
859
853
  msgstr "Betriebssystem"
860
854
 
861
- #: ../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
862
856
  msgid "Host Group"
863
857
  msgstr "Hostgruppe"
864
858
 
865
- #: ../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
866
860
  msgid "IP"
867
861
  msgstr "IP"
868
862
 
869
- #: ../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
870
864
  msgid "MAC"
871
- msgstr "MAC"
865
+ msgstr "MAC-Adresse"
872
866
 
873
- #: ../lib/hammer_cli_foreman/host.rb:178
867
+ #: ../lib/hammer_cli_foreman/host.rb:185
874
868
  msgid "Bare Metal"
875
869
  msgstr ""
876
870
 
877
- #: ../lib/hammer_cli_foreman/host.rb:203
878
- #, fuzzy
871
+ #: ../lib/hammer_cli_foreman/host.rb:210
879
872
  msgid "Organization"
880
- msgstr "Organisationen"
873
+ msgstr "Organisation"
881
874
 
882
- #: ../lib/hammer_cli_foreman/host.rb:204
883
- #, fuzzy
875
+ #: ../lib/hammer_cli_foreman/host.rb:211
884
876
  msgid "Location"
885
- msgstr "Orte"
877
+ msgstr "Ort"
886
878
 
887
- #: ../lib/hammer_cli_foreman/host.rb:206
879
+ #: ../lib/hammer_cli_foreman/host.rb:213
888
880
  msgid "Compute Resource"
889
881
  msgstr "Rechnerresource"
890
882
 
891
- #: ../lib/hammer_cli_foreman/host.rb:207
892
- #, fuzzy
883
+ #: ../lib/hammer_cli_foreman/host.rb:214
893
884
  msgid "Compute Profile"
894
- msgstr "Rechnerprofil"
885
+ msgstr "Rechenprofil"
895
886
 
896
- #: ../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
897
888
  msgid "Environment"
898
889
  msgstr "Umgebung"
899
890
 
900
- #: ../lib/hammer_cli_foreman/host.rb:209
901
- #, fuzzy
891
+ #: ../lib/hammer_cli_foreman/host.rb:216
902
892
  msgid "Puppet CA Id"
903
- msgstr "Puppet CA Proxy-Kennung"
893
+ msgstr ""
904
894
 
905
- #: ../lib/hammer_cli_foreman/host.rb:210
906
- #, fuzzy
895
+ #: ../lib/hammer_cli_foreman/host.rb:217
907
896
  msgid "Puppet Master Id"
908
- msgstr "Puppet Master Proxy-Kennung"
897
+ msgstr ""
909
898
 
910
- #: ../lib/hammer_cli_foreman/host.rb:211
899
+ #: ../lib/hammer_cli_foreman/host.rb:218
911
900
  msgid "Cert name"
912
901
  msgstr "Zertifikatsname"
913
902
 
914
- #: ../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
915
904
  msgid "Managed"
916
905
  msgstr "Verwaltet"
917
906
 
918
- #: ../lib/hammer_cli_foreman/host.rb:214
907
+ #: ../lib/hammer_cli_foreman/host.rb:221
919
908
  msgid "Installed at"
920
909
  msgstr "Installiert um"
921
910
 
922
- #: ../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
923
912
  msgid "Last report"
924
- msgstr "letzter Report"
913
+ msgstr "Letzter Bericht"
925
914
 
926
- #: ../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
927
916
  msgid "Network"
928
917
  msgstr "Netzwerk"
929
918
 
930
- #: ../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
931
920
  msgid "Subnet"
932
921
  msgstr "Subnetz"
933
922
 
934
- #: ../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
935
924
  msgid "Domain"
936
- msgstr "Domäne"
925
+ msgstr "Domain"
937
926
 
938
- #: ../lib/hammer_cli_foreman/host.rb:222
927
+ #: ../lib/hammer_cli_foreman/host.rb:229
939
928
  msgid "Service provider"
940
- msgstr ""
929
+ msgstr "Dienstanbieter"
941
930
 
942
- #: ../lib/hammer_cli_foreman/host.rb:223
931
+ #: ../lib/hammer_cli_foreman/host.rb:230
943
932
  msgid "SP Name"
944
933
  msgstr "SP-Name"
945
934
 
946
- #: ../lib/hammer_cli_foreman/host.rb:224
935
+ #: ../lib/hammer_cli_foreman/host.rb:231
947
936
  msgid "SP IP"
948
- msgstr "SP-Kennung"
937
+ msgstr "SP-IP"
949
938
 
950
- #: ../lib/hammer_cli_foreman/host.rb:225
939
+ #: ../lib/hammer_cli_foreman/host.rb:232
951
940
  msgid "SP MAC"
952
- msgstr "SP MAC"
941
+ msgstr "SP-MAC"
953
942
 
954
- #: ../lib/hammer_cli_foreman/host.rb:226
943
+ #: ../lib/hammer_cli_foreman/host.rb:233
955
944
  msgid "SP Subnet"
956
945
  msgstr "SP-Subnetz"
957
946
 
958
- #: ../lib/hammer_cli_foreman/host.rb:230
959
- #, fuzzy
947
+ #: ../lib/hammer_cli_foreman/host.rb:237
960
948
  msgid "Network interfaces"
961
- msgstr "BMC-Netzwerkschnittstellen"
949
+ msgstr "Netzwerkschnittstellen"
962
950
 
963
- #: ../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
964
952
  msgid "Identifier"
965
- msgstr ""
953
+ msgstr "Bezeichner"
966
954
 
967
- #: ../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
968
956
  msgid "Type"
969
957
  msgstr "Typ"
970
958
 
971
- #: ../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
972
960
  msgid "MAC address"
973
- msgstr ""
961
+ msgstr "MAC-Adresse"
974
962
 
975
- #: ../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
976
964
  msgid "IP address"
977
- msgstr ""
965
+ msgstr "IP-Adresse"
978
966
 
979
- #: ../lib/hammer_cli_foreman/host.rb:236
967
+ #: ../lib/hammer_cli_foreman/host.rb:243
980
968
  msgid "FQDN"
981
- msgstr ""
969
+ msgstr "FQDN"
982
970
 
983
- #: ../lib/hammer_cli_foreman/host.rb:239
984
- #, fuzzy
971
+ #: ../lib/hammer_cli_foreman/host.rb:246
985
972
  msgid "Operating system"
986
- msgstr "Betriebssysteme"
973
+ msgstr "Betriebssystem"
987
974
 
988
- #: ../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
989
976
  msgid "Architecture"
990
977
  msgstr "Architektur"
991
978
 
992
- #: ../lib/hammer_cli_foreman/host.rb:244
979
+ #: ../lib/hammer_cli_foreman/host.rb:251
993
980
  msgid "Build"
994
- msgstr "Erstelle"
981
+ msgstr "Build"
995
982
 
996
- #: ../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
997
984
  msgid "Medium"
998
985
  msgstr "Medium"
999
986
 
1000
- #: ../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
1001
988
  msgid "Partition Table"
1002
989
  msgstr "Partitionstabelle"
1003
990
 
1004
- #: ../lib/hammer_cli_foreman/host.rb:247
1005
- #, fuzzy
991
+ #: ../lib/hammer_cli_foreman/host.rb:254
1006
992
  msgid "Custom partition table"
1007
- msgstr "Partitionstabelle zuweisen"
993
+ msgstr "Benutzerdefinierte Partitionstabelle"
1008
994
 
1009
- #: ../lib/hammer_cli_foreman/host.rb:250
995
+ #: ../lib/hammer_cli_foreman/host.rb:257
1010
996
  msgid "Image"
1011
- msgstr "Abbild"
997
+ msgstr "Image"
1012
998
 
1013
- #: ../lib/hammer_cli_foreman/host.rb:251
999
+ #: ../lib/hammer_cli_foreman/host.rb:258
1014
1000
  msgid "Image file"
1015
- msgstr "Abbilddatei"
1001
+ msgstr "Image-Datei"
1016
1002
 
1017
- #: ../lib/hammer_cli_foreman/host.rb:252
1003
+ #: ../lib/hammer_cli_foreman/host.rb:259
1018
1004
  msgid "Use image"
1019
- msgstr "Abbild verwenden"
1005
+ msgstr "Image verwenden"
1020
1006
 
1021
- #: ../lib/hammer_cli_foreman/host.rb:258
1007
+ #: ../lib/hammer_cli_foreman/host.rb:265
1022
1008
  msgid "Additional info"
1023
- msgstr ""
1009
+ msgstr "Zusätzliche Informationen"
1024
1010
 
1025
- #: ../lib/hammer_cli_foreman/host.rb:259
1011
+ #: ../lib/hammer_cli_foreman/host.rb:266
1026
1012
  msgid "Owner Id"
1027
- msgstr "Eigentümerkennung"
1013
+ msgstr "Besitzer-ID"
1028
1014
 
1029
- #: ../lib/hammer_cli_foreman/host.rb:260
1015
+ #: ../lib/hammer_cli_foreman/host.rb:267
1030
1016
  msgid "Owner Type"
1031
- msgstr "Eigentümertyp"
1017
+ msgstr "Besitzertyp"
1032
1018
 
1033
- #: ../lib/hammer_cli_foreman/host.rb:261
1019
+ #: ../lib/hammer_cli_foreman/host.rb:268
1034
1020
  msgid "Enabled"
1035
1021
  msgstr "Aktiviert"
1036
1022
 
1037
- #: ../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
1038
1024
  msgid "Model"
1039
1025
  msgstr "Modell"
1040
1026
 
1041
- #: ../lib/hammer_cli_foreman/host.rb:263
1027
+ #: ../lib/hammer_cli_foreman/host.rb:270
1042
1028
  msgid "Comment"
1043
1029
  msgstr "Kommentar"
1044
1030
 
1045
- #: ../lib/hammer_cli_foreman/host.rb:276
1031
+ #: ../lib/hammer_cli_foreman/host.rb:283
1046
1032
  msgid "Status"
1047
1033
  msgstr "Status"
1048
1034
 
1049
- #: ../lib/hammer_cli_foreman/host.rb:277
1035
+ #: ../lib/hammer_cli_foreman/host.rb:284
1050
1036
  msgid "Power"
1051
1037
  msgstr "Strom"
1052
1038
 
1053
- #: ../lib/hammer_cli_foreman/host.rb:313
1039
+ #: ../lib/hammer_cli_foreman/host.rb:320
1054
1040
  msgid "Puppet run triggered"
1055
1041
  msgstr "Puppet-Durchlauf ausgelöst"
1056
1042
 
1057
- #: ../lib/hammer_cli_foreman/host.rb:366
1043
+ #: ../lib/hammer_cli_foreman/host.rb:373
1058
1044
  msgid "Host created"
1059
1045
  msgstr "Host erstellt"
1060
1046
 
1061
- #: ../lib/hammer_cli_foreman/host.rb:367
1047
+ #: ../lib/hammer_cli_foreman/host.rb:374
1062
1048
  msgid "Could not create the host"
1063
1049
  msgstr "Host konnte nicht erstellt werden"
1064
1050
 
1065
- #: ../lib/hammer_cli_foreman/host.rb:388
1051
+ #: ../lib/hammer_cli_foreman/host.rb:395
1066
1052
  msgid "Host updated"
1067
1053
  msgstr "Host aktualisiert"
1068
1054
 
1069
- #: ../lib/hammer_cli_foreman/host.rb:389
1055
+ #: ../lib/hammer_cli_foreman/host.rb:396
1070
1056
  msgid "Could not update the host"
1071
1057
  msgstr "Host konnte nicht aktualisiert werden"
1072
1058
 
1073
- #: ../lib/hammer_cli_foreman/host.rb:396
1059
+ #: ../lib/hammer_cli_foreman/host.rb:403
1074
1060
  msgid "Host deleted"
1075
1061
  msgstr "Host gelöscht"
1076
1062
 
1077
- #: ../lib/hammer_cli_foreman/host.rb:397
1063
+ #: ../lib/hammer_cli_foreman/host.rb:404
1078
1064
  msgid "Could not delete the host"
1079
1065
  msgstr "Host konnte nicht gelöscht werden"
1080
1066
 
1081
- #: ../lib/hammer_cli_foreman/host.rb:404
1067
+ #: ../lib/hammer_cli_foreman/host.rb:411
1082
1068
  msgid "Create or update parameter for a host."
1083
1069
  msgstr "Parameter für einen Host erstellen oder aktualisieren."
1084
1070
 
1085
- #: ../lib/hammer_cli_foreman/host.rb:406
1071
+ #: ../lib/hammer_cli_foreman/host.rb:413
1086
1072
  msgid "Host parameter updated"
1087
1073
  msgstr "Hostparameter aktualisiert"
1088
1074
 
1089
- #: ../lib/hammer_cli_foreman/host.rb:407
1075
+ #: ../lib/hammer_cli_foreman/host.rb:414
1090
1076
  msgid "New host parameter created"
1091
1077
  msgstr "Neuer Hostparameter erstellt"
1092
1078
 
1093
- #: ../lib/hammer_cli_foreman/host.rb:408
1079
+ #: ../lib/hammer_cli_foreman/host.rb:415
1094
1080
  msgid "Could not set host parameter"
1095
1081
  msgstr "Hostparameter konnte nicht festgelegt werden"
1096
1082
 
1097
- #: ../lib/hammer_cli_foreman/host.rb:420
1083
+ #: ../lib/hammer_cli_foreman/host.rb:427
1098
1084
  msgid "Delete parameter for a host."
1099
1085
  msgstr "Parameter für einen Host löschen."
1100
1086
 
1101
- #: ../lib/hammer_cli_foreman/host.rb:422
1087
+ #: ../lib/hammer_cli_foreman/host.rb:429
1102
1088
  msgid "Host parameter deleted"
1103
1089
  msgstr "Hostparameter gelöscht"
1104
1090
 
1105
- #: ../lib/hammer_cli_foreman/host.rb:437
1091
+ #: ../lib/hammer_cli_foreman/host.rb:444
1106
1092
  msgid "Power a host on"
1107
1093
  msgstr "Host anschalten"
1108
1094
 
1109
- #: ../lib/hammer_cli_foreman/host.rb:438
1095
+ #: ../lib/hammer_cli_foreman/host.rb:445
1110
1096
  msgid "The host is starting."
1111
1097
  msgstr "Host wird gestartet."
1112
1098
 
1113
- #: ../lib/hammer_cli_foreman/host.rb:455
1099
+ #: ../lib/hammer_cli_foreman/host.rb:462
1114
1100
  msgid "Force turning off a host"
1115
1101
  msgstr "Abschalten von Host erzwingen"
1116
1102
 
1117
- #: ../lib/hammer_cli_foreman/host.rb:460
1103
+ #: ../lib/hammer_cli_foreman/host.rb:467
1118
1104
  msgid "Power a host off"
1119
1105
  msgstr "Host ausschalten"
1120
1106
 
1121
- #: ../lib/hammer_cli_foreman/host.rb:472
1107
+ #: ../lib/hammer_cli_foreman/host.rb:479
1122
1108
  msgid "Power off forced."
1123
1109
  msgstr "Abschalten erzwingen."
1124
1110
 
1125
- #: ../lib/hammer_cli_foreman/host.rb:474
1111
+ #: ../lib/hammer_cli_foreman/host.rb:481
1126
1112
  msgid "Powering the host off."
1127
1113
  msgstr "Host wird abgeschaltet."
1128
1114
 
1129
- #: ../lib/hammer_cli_foreman/host.rb:491
1115
+ #: ../lib/hammer_cli_foreman/host.rb:498
1130
1116
  msgid "Reboot a host"
1131
- msgstr "Host neustarten"
1117
+ msgstr "Host neu starten"
1132
1118
 
1133
- #: ../lib/hammer_cli_foreman/host.rb:492
1119
+ #: ../lib/hammer_cli_foreman/host.rb:499
1134
1120
  msgid "Host reboot started."
1135
1121
  msgstr "Host wird neu gestartet."
1136
1122
 
1137
1123
  #: ../lib/hammer_cli_foreman/hostgroup.rb:10
1138
1124
  msgid "List of puppetclass ids"
1139
- msgstr "Liste der Puppetklassen-IDs"
1125
+ msgstr "Liste mit Puppet-Klassen-IDs"
1140
1126
 
1141
1127
  #: ../lib/hammer_cli_foreman/hostgroup.rb:12
1142
1128
  msgid "Name of puppet CA proxy"
1143
- msgstr "Name des Puppet CA Proxy"
1129
+ msgstr "Name des Puppet-CA-Proxys"
1144
1130
 
1145
1131
  #: ../lib/hammer_cli_foreman/hostgroup.rb:13
1146
1132
  msgid "Name of puppet proxy"
1147
- msgstr "Name des Puppet Proxy"
1133
+ msgstr "Name des Puppet-Proxys"
1148
1134
 
1149
1135
  #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1150
1136
  msgid "Name of parent hostgroup"
1151
1137
  msgstr "Name der übergeordneten Hostgruppe"
1152
1138
 
1153
1139
  #: ../lib/hammer_cli_foreman/hostgroup.rb:17
1154
- #, fuzzy
1155
1140
  msgid "Root password"
1156
- msgstr "BMC-Passwort"
1141
+ msgstr "Root-Passwort"
1157
1142
 
1158
1143
  #: ../lib/hammer_cli_foreman/hostgroup.rb:23
1159
1144
  msgid "Enter the root password for the host group:"
@@ -1161,15 +1146,15 @@ msgstr ""
1161
1146
 
1162
1147
  #: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
1163
1148
  msgid "Title"
1164
- msgstr "Titel"
1149
+ msgstr "Title"
1165
1150
 
1166
1151
  #: ../lib/hammer_cli_foreman/hostgroup.rb:78
1167
1152
  msgid "Puppet CA Proxy Id"
1168
- msgstr "Puppet CA Proxy-Kennung"
1153
+ msgstr "Puppet-CA-Proxy-ID"
1169
1154
 
1170
1155
  #: ../lib/hammer_cli_foreman/hostgroup.rb:79
1171
1156
  msgid "Puppet Master Proxy Id"
1172
- msgstr "Puppet Master Proxy-Kennung"
1157
+ msgstr "Puppet-Master-Proxy-ID"
1173
1158
 
1174
1159
  #: ../lib/hammer_cli_foreman/hostgroup.rb:80
1175
1160
  msgid "ComputeProfile"
@@ -1177,7 +1162,7 @@ msgstr "Rechnerprofil"
1177
1162
 
1178
1163
  #: ../lib/hammer_cli_foreman/hostgroup.rb:84
1179
1164
  msgid "Parent Id"
1180
- msgstr "Übergeordnete Kennung"
1165
+ msgstr "Übergeordnete ID"
1181
1166
 
1182
1167
  #: ../lib/hammer_cli_foreman/hostgroup.rb:94
1183
1168
  msgid "Hostgroup created"
@@ -1197,11 +1182,11 @@ msgstr "Hostgruppe konnte nicht aktualisiert werden"
1197
1182
 
1198
1183
  #: ../lib/hammer_cli_foreman/hostgroup.rb:112
1199
1184
  msgid "Hostgroup deleted"
1200
- msgstr "Hostgruppe entfernt"
1185
+ msgstr "Hostgruppe gelöscht"
1201
1186
 
1202
1187
  #: ../lib/hammer_cli_foreman/hostgroup.rb:113
1203
1188
  msgid "Could not delete the hostgroup"
1204
- msgstr "Hostgruppe konnte nicht entfernt werden"
1189
+ msgstr "Hostgruppe konnte nicht gelöscht werden"
1205
1190
 
1206
1191
  #: ../lib/hammer_cli_foreman/hostgroup.rb:137
1207
1192
  msgid "Create or update parameter for a hostgroup."
@@ -1209,15 +1194,15 @@ msgstr "Parameter für Hostgruppe erstellen oder aktualisieren."
1209
1194
 
1210
1195
  #: ../lib/hammer_cli_foreman/hostgroup.rb:139
1211
1196
  msgid "Hostgroup parameter updated"
1212
- msgstr "Hostgruppen-Parameter aktualisiert"
1197
+ msgstr "Hostgruppenparameter aktualisiert"
1213
1198
 
1214
1199
  #: ../lib/hammer_cli_foreman/hostgroup.rb:140
1215
1200
  msgid "New hostgroup parameter created"
1216
- msgstr "Neuer Hostgruppen-Parameter erstellt"
1201
+ msgstr "Neuer Hostgruppenparameter erstellt"
1217
1202
 
1218
1203
  #: ../lib/hammer_cli_foreman/hostgroup.rb:141
1219
1204
  msgid "Could not set hostgroup parameter"
1220
- msgstr "Hostgruppen-Parameter konnte nicht gesetzt werden"
1205
+ msgstr "Hostgruppenparameter konnte nicht festgelegt werden"
1221
1206
 
1222
1207
  #: ../lib/hammer_cli_foreman/hostgroup.rb:148
1223
1208
  msgid "Delete parameter for a hostgroup."
@@ -1225,7 +1210,7 @@ msgstr "Parameter für Hostgruppe löschen."
1225
1210
 
1226
1211
  #: ../lib/hammer_cli_foreman/hostgroup.rb:150
1227
1212
  msgid "Hostgroup parameter deleted"
1228
- msgstr "Hostgruppen-Parameter entfernt"
1213
+ msgstr "Hostgruppenparameter gelöscht"
1229
1214
 
1230
1215
  #: ../lib/hammer_cli_foreman/id_resolver.rb:36
1231
1216
  msgid "Architecture name"
@@ -1245,12 +1230,11 @@ msgstr "Umgebungsname"
1245
1230
 
1246
1231
  #: ../lib/hammer_cli_foreman/id_resolver.rb:42
1247
1232
  msgid "Host name"
1248
- msgstr "Host name"
1233
+ msgstr "Hostname"
1249
1234
 
1250
1235
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1251
- #, fuzzy
1252
1236
  msgid "Hostgroup title"
1253
- msgstr "Hostgruppenname"
1237
+ msgstr "Hostgruppentitel"
1254
1238
 
1255
1239
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1256
1240
  msgid "Hostgroup name"
@@ -1274,7 +1258,7 @@ msgstr "Organisationsname"
1274
1258
 
1275
1259
  #: ../lib/hammer_cli_foreman/id_resolver.rb:50
1276
1260
  msgid "Operating system title"
1277
- msgstr "Betriebssystemname"
1261
+ msgstr "Betriebssystemtitel"
1278
1262
 
1279
1263
  #: ../lib/hammer_cli_foreman/id_resolver.rb:52
1280
1264
  msgid "Partition table name"
@@ -1282,7 +1266,7 @@ msgstr "Partitionstabellenname"
1282
1266
 
1283
1267
  #: ../lib/hammer_cli_foreman/id_resolver.rb:53
1284
1268
  msgid "Proxy name"
1285
- msgstr "Proxyname"
1269
+ msgstr "Proxy-Name"
1286
1270
 
1287
1271
  #: ../lib/hammer_cli_foreman/id_resolver.rb:54
1288
1272
  msgid "Puppet class name"
@@ -1297,9 +1281,8 @@ msgid "User role name"
1297
1281
  msgstr "Benutzerrollenname"
1298
1282
 
1299
1283
  #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1300
- #, fuzzy
1301
1284
  msgid "Setting name"
1302
- msgstr "Zertifikatsname"
1285
+ msgstr "Einstellungsname"
1303
1286
 
1304
1287
  #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1305
1288
  msgid "Subnet name"
@@ -1315,12 +1298,11 @@ msgstr "Allgemeiner Parametername"
1315
1298
 
1316
1299
  #: ../lib/hammer_cli_foreman/id_resolver.rb:62
1317
1300
  msgid "Smart class parameter name"
1318
- msgstr "Smart-Class-Parametername"
1301
+ msgstr "Smart-Klassen-Parametername"
1319
1302
 
1320
1303
  #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1321
- #, fuzzy
1322
1304
  msgid "Smart variable name"
1323
- msgstr "Smart variables"
1305
+ msgstr ""
1324
1306
 
1325
1307
  #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1326
1308
  msgid "Name to search by"
@@ -1328,14 +1310,15 @@ msgstr "Zu suchender Name"
1328
1310
 
1329
1311
  #: ../lib/hammer_cli_foreman/id_resolver.rb:153
1330
1312
  msgid "one of %s not found"
1331
- msgstr "eine von %s nicht gefunden"
1313
+ msgstr "eines von %s nicht gefunden"
1332
1314
 
1333
1315
  #: ../lib/hammer_cli_foreman/id_resolver.rb:200
1334
1316
  msgid "%s not found"
1335
1317
  msgstr "%s nicht gefunden"
1336
1318
 
1337
1319
  #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1338
- msgid "%s found more than once"
1320
+ #, fuzzy
1321
+ msgid "found more than one %s"
1339
1322
  msgstr "%s mehr als einmal gefunden"
1340
1323
 
1341
1324
  #: ../lib/hammer_cli_foreman/id_resolver.rb:212
@@ -1360,7 +1343,7 @@ msgstr "Verfügbare Images anzeigen"
1360
1343
 
1361
1344
  #: ../lib/hammer_cli_foreman/image.rb:81
1362
1345
  msgid "Image created"
1363
- msgstr "Abbild erstellt"
1346
+ msgstr "Image erstellt"
1364
1347
 
1365
1348
  #: ../lib/hammer_cli_foreman/image.rb:82
1366
1349
  msgid "Could not create the image"
@@ -1368,7 +1351,7 @@ msgstr "Image konnte nicht erstellt werden"
1368
1351
 
1369
1352
  #: ../lib/hammer_cli_foreman/image.rb:90
1370
1353
  msgid "Image updated"
1371
- msgstr "Abbild aktualisiert"
1354
+ msgstr "Image aktualisiert"
1372
1355
 
1373
1356
  #: ../lib/hammer_cli_foreman/image.rb:91
1374
1357
  msgid "Could not update the image"
@@ -1376,7 +1359,7 @@ msgstr "Image konnte nicht aktualisiert werden"
1376
1359
 
1377
1360
  #: ../lib/hammer_cli_foreman/image.rb:99
1378
1361
  msgid "Image deleted"
1379
- msgstr "Abbild gelöscht"
1362
+ msgstr "Image gelöscht"
1380
1363
 
1381
1364
  #: ../lib/hammer_cli_foreman/image.rb:100
1382
1365
  msgid "Could not delete the image"
@@ -1387,32 +1370,28 @@ msgid "View and manage host's network interfaces"
1387
1370
  msgstr ""
1388
1371
 
1389
1372
  #: ../lib/hammer_cli_foreman/interface.rb:10
1390
- #, fuzzy
1391
1373
  msgid "primary"
1392
- msgstr "Primärer DNS"
1374
+ msgstr "primär"
1393
1375
 
1394
1376
  #: ../lib/hammer_cli_foreman/interface.rb:11
1395
1377
  msgid "provision"
1396
1378
  msgstr ""
1397
1379
 
1398
1380
  #: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
1399
- #, fuzzy
1400
1381
  msgid "DNS name"
1401
- msgstr "Zertifikatsname"
1382
+ msgstr "DNS-Name"
1402
1383
 
1403
1384
  #: ../lib/hammer_cli_foreman/interface.rb:52
1404
- #, fuzzy
1405
1385
  msgid "Primary"
1406
- msgstr "Primärer DNS"
1386
+ msgstr "Primär"
1407
1387
 
1408
1388
  #: ../lib/hammer_cli_foreman/interface.rb:53
1409
- #, fuzzy
1410
1389
  msgid "Provision"
1411
- msgstr "Anbieter"
1390
+ msgstr ""
1412
1391
 
1413
1392
  #: ../lib/hammer_cli_foreman/interface.rb:54
1414
1393
  msgid "Virtual"
1415
- msgstr ""
1394
+ msgstr "Virtuell"
1416
1395
 
1417
1396
  #: ../lib/hammer_cli_foreman/interface.rb:55
1418
1397
  msgid "Tag"
@@ -1420,24 +1399,23 @@ msgstr ""
1420
1399
 
1421
1400
  #: ../lib/hammer_cli_foreman/interface.rb:56
1422
1401
  msgid "Attached to"
1423
- msgstr ""
1402
+ msgstr "Verbunden mit"
1424
1403
 
1425
1404
  #: ../lib/hammer_cli_foreman/interface.rb:58
1426
1405
  msgid "BMC"
1427
- msgstr ""
1406
+ msgstr "BMC"
1428
1407
 
1429
1408
  #: ../lib/hammer_cli_foreman/interface.rb:63
1430
1409
  msgid "Bond"
1431
1410
  msgstr ""
1432
1411
 
1433
1412
  #: ../lib/hammer_cli_foreman/interface.rb:64
1434
- #, fuzzy
1435
1413
  msgid "Mode"
1436
- msgstr "Modell"
1414
+ msgstr "Modus"
1437
1415
 
1438
1416
  #: ../lib/hammer_cli_foreman/interface.rb:65
1439
1417
  msgid "Attached devices"
1440
- msgstr ""
1418
+ msgstr "Verbundene Geräte"
1441
1419
 
1442
1420
  #: ../lib/hammer_cli_foreman/interface.rb:66
1443
1421
  msgid "Bond options"
@@ -1452,39 +1430,32 @@ msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-base
1452
1430
  msgstr ""
1453
1431
 
1454
1432
  #: ../lib/hammer_cli_foreman/interface.rb:128
1455
- #, fuzzy
1456
1433
  msgid "Interface created"
1457
- msgstr "Abbild erstellt"
1434
+ msgstr "Schnittstelle erstellt"
1458
1435
 
1459
1436
  #: ../lib/hammer_cli_foreman/interface.rb:129
1460
- #, fuzzy
1461
1437
  msgid "Could not create the interface"
1462
- msgstr "Image konnte nicht erstellt werden"
1438
+ msgstr "Schnittstelle konnte nicht erstellt werden"
1463
1439
 
1464
1440
  #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1465
- #, fuzzy
1466
1441
  msgid "Compute resource specific attributes."
1467
- msgstr "Rechnerressourcenattribute."
1442
+ msgstr ""
1468
1443
 
1469
1444
  #: ../lib/hammer_cli_foreman/interface.rb:141
1470
- #, fuzzy
1471
1445
  msgid "Interface updated"
1472
- msgstr "Abbild aktualisiert"
1446
+ msgstr "Schnittstelle aktualisiert"
1473
1447
 
1474
1448
  #: ../lib/hammer_cli_foreman/interface.rb:142
1475
- #, fuzzy
1476
1449
  msgid "Could not update the interface"
1477
- msgstr "Image konnte nicht aktualisiert werden"
1450
+ msgstr "Schnittstelle konnte nicht aktualisiert werden"
1478
1451
 
1479
1452
  #: ../lib/hammer_cli_foreman/interface.rb:154
1480
- #, fuzzy
1481
1453
  msgid "Interface deleted"
1482
- msgstr "Abbild gelöscht"
1454
+ msgstr "Schnittstelle gelöscht"
1483
1455
 
1484
1456
  #: ../lib/hammer_cli_foreman/interface.rb:155
1485
- #, fuzzy
1486
1457
  msgid "Could not delete the interface"
1487
- msgstr "Image konnte nicht gelöscht werden"
1458
+ msgstr "Schnittstelle konnte nicht gelöscht werden"
1488
1459
 
1489
1460
  #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
1490
1461
  msgid "Location numeric id to search by"
@@ -1496,27 +1467,61 @@ msgstr "Organisationen"
1496
1467
 
1497
1468
  #: ../lib/hammer_cli_foreman/location.rb:52
1498
1469
  msgid "Location created"
1499
- msgstr "Ort erstellt"
1470
+ msgstr "Standort erstellt"
1500
1471
 
1501
1472
  #: ../lib/hammer_cli_foreman/location.rb:53
1502
1473
  msgid "Could not create the location"
1503
- msgstr "Ort konnte nicht erstellt werden"
1474
+ msgstr "Standort konnte nicht erstellt werden"
1504
1475
 
1505
1476
  #: ../lib/hammer_cli_foreman/location.rb:64
1506
1477
  msgid "Location updated"
1507
- msgstr "Ort aktualisiert"
1478
+ msgstr "Standort aktualisiert"
1508
1479
 
1509
1480
  #: ../lib/hammer_cli_foreman/location.rb:65
1510
1481
  msgid "Could not update the location"
1511
- msgstr "Ort konnte nicht aktualisiert werden"
1482
+ msgstr "Standort konnte nicht aktualisiert werden"
1512
1483
 
1513
1484
  #: ../lib/hammer_cli_foreman/location.rb:76
1514
1485
  msgid "Location deleted"
1515
- msgstr "Ort entfernt"
1486
+ msgstr "Standort gelöscht"
1516
1487
 
1517
1488
  #: ../lib/hammer_cli_foreman/location.rb:77
1518
1489
  msgid "Could not delete the location"
1519
- msgstr "Ort konnte nicht entfernt werden"
1490
+ msgstr "Standort konnte nicht gelöscht werden"
1491
+
1492
+ #: ../lib/hammer_cli_foreman/location.rb:86
1493
+ #, fuzzy
1494
+ msgid "Create or update parameter for a location."
1495
+ msgstr "Parameter für eine Domain erstellen oder aktualisieren."
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 "Parameter [%{name}] aktualisiert auf [%{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 "Domainparameter konnte nicht festgelegt werden"
1510
+
1511
+ #: ../lib/hammer_cli_foreman/location.rb:97
1512
+ #, fuzzy
1513
+ msgid "Delete parameter for a location."
1514
+ msgstr "Parameter für eine Domain löschen."
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 "Globaler Parameter [%{name}] gelöscht."
1520
+
1521
+ #: ../lib/hammer_cli_foreman/location.rb:100
1522
+ #, fuzzy
1523
+ msgid "Could not delete location parameter"
1524
+ msgstr "Domainparameter konnte nicht festgelegt werden"
1520
1525
 
1521
1526
  #: ../lib/hammer_cli_foreman/media.rb:11
1522
1527
  msgid "Path"
@@ -1544,15 +1549,15 @@ msgstr "Installationsmedium konnte nicht aktualisiert werden"
1544
1549
 
1545
1550
  #: ../lib/hammer_cli_foreman/media.rb:50
1546
1551
  msgid "Installation medium deleted"
1547
- msgstr "Installationsmedium entfernt"
1552
+ msgstr "Installationsmedium gelöscht"
1548
1553
 
1549
1554
  #: ../lib/hammer_cli_foreman/media.rb:51
1550
1555
  msgid "Could not delete the installation media"
1551
- msgstr "Installationsmedium konnte nicht entfernt werden"
1556
+ msgstr "Installationsmedium konnte nicht gelöscht werden"
1552
1557
 
1553
1558
  #: ../lib/hammer_cli_foreman/model.rb:12
1554
1559
  msgid "Vendor class"
1555
- msgstr "Herstellerklassen"
1560
+ msgstr "Herstellerklasse"
1556
1561
 
1557
1562
  #: ../lib/hammer_cli_foreman/model.rb:13
1558
1563
  msgid "HW model"
@@ -1596,7 +1601,7 @@ msgstr "Familie"
1596
1601
 
1597
1602
  #: ../lib/hammer_cli_foreman/operating_system.rb:23
1598
1603
  msgid "Major version"
1599
- msgstr "Hauptversion"
1604
+ msgstr "Hauptrelease"
1600
1605
 
1601
1606
  #: ../lib/hammer_cli_foreman/operating_system.rb:24
1602
1607
  msgid "Minor version"
@@ -1632,7 +1637,7 @@ msgstr "Betriebssystem konnte nicht aktualisiert werden"
1632
1637
 
1633
1638
  #: ../lib/hammer_cli_foreman/operating_system.rb:60
1634
1639
  msgid "Operating system deleted"
1635
- msgstr "Betriebssystem entfernt"
1640
+ msgstr "Betriebssystem gelöscht"
1636
1641
 
1637
1642
  #: ../lib/hammer_cli_foreman/operating_system.rb:61
1638
1643
  msgid "Could not delete the operating system"
@@ -1640,7 +1645,7 @@ msgstr "Betriebssystem konnte nicht gelöscht werden"
1640
1645
 
1641
1646
  #: ../lib/hammer_cli_foreman/operating_system.rb:68
1642
1647
  msgid "Create or update parameter for an operating system."
1643
- msgstr "Parameter für ein Betriebssystem konnten nicht erstellt oder aktualisiert werden."
1648
+ msgstr "Parameter für ein Betriebssystem konnte nicht erstellt oder aktualisiert werden."
1644
1649
 
1645
1650
  #: ../lib/hammer_cli_foreman/operating_system.rb:70
1646
1651
  msgid "Operating system parameter updated"
@@ -1664,7 +1669,7 @@ msgstr "Betriebssystemparameter gelöscht"
1664
1669
 
1665
1670
  #: ../lib/hammer_cli_foreman/operating_system.rb:101 ../lib/hammer_cli_foreman/operating_system.rb:167
1666
1671
  msgid "operatingsystem id"
1667
- msgstr "Betriebssystemkennung"
1672
+ msgstr "Betriebssystem-ID"
1668
1673
 
1669
1674
  #: ../lib/hammer_cli_foreman/operating_system.rb:102
1670
1675
  msgid "config template id to be set"
@@ -1692,11 +1697,11 @@ msgstr "Standardvorlage konnte nicht gelöscht werden"
1692
1697
 
1693
1698
  #: ../lib/hammer_cli_foreman/operating_system.rb:178
1694
1699
  msgid "Default template of type %s not found"
1695
- msgstr "Standardvorlage von Typ %s nicht gefunden"
1700
+ msgstr "Standardvorlage des Typs %s nicht gefunden"
1696
1701
 
1697
1702
  #: ../lib/hammer_cli_foreman/organization.rb:37 ../lib/hammer_cli_foreman/references.rb:15
1698
1703
  msgid "Locations"
1699
- msgstr "Orte"
1704
+ msgstr "Standorte"
1700
1705
 
1701
1706
  #: ../lib/hammer_cli_foreman/organization.rb:53
1702
1707
  msgid "Organization created"
@@ -1716,11 +1721,30 @@ msgstr "Organisation konnte nicht aktualisiert werden"
1716
1721
 
1717
1722
  #: ../lib/hammer_cli_foreman/organization.rb:77
1718
1723
  msgid "Organization deleted"
1719
- msgstr "Organisation entfernt"
1724
+ msgstr "Organisation gelöscht"
1720
1725
 
1721
1726
  #: ../lib/hammer_cli_foreman/organization.rb:78
1722
1727
  msgid "Could not delete the organization"
1723
- msgstr "Organisation konnte nicht entfernt werden"
1728
+ msgstr "Organisation konnte nicht gelöscht werden"
1729
+
1730
+ #: ../lib/hammer_cli_foreman/organization.rb:87
1731
+ #, fuzzy
1732
+ msgid "Create or update parameter for an organization."
1733
+ msgstr "Parameter für eine Domain erstellen oder aktualisieren."
1734
+
1735
+ #: ../lib/hammer_cli_foreman/organization.rb:91
1736
+ #, fuzzy
1737
+ msgid "Could not set organization parameter"
1738
+ msgstr "Domainparameter konnte nicht festgelegt werden"
1739
+
1740
+ #: ../lib/hammer_cli_foreman/organization.rb:98
1741
+ #, fuzzy
1742
+ msgid "Delete parameter for an organization."
1743
+ msgstr "Parameter für eine Domain löschen."
1744
+
1745
+ #: ../lib/hammer_cli_foreman/organization.rb:101
1746
+ msgid "Could not delete organization parameter"
1747
+ msgstr ""
1724
1748
 
1725
1749
  #: ../lib/hammer_cli_foreman/partition_table.rb:31
1726
1750
  msgid "View partition table content."
@@ -1756,7 +1780,7 @@ msgstr "Partitionstabelle konnte nicht gelöscht werden"
1756
1780
 
1757
1781
  #: ../lib/hammer_cli_foreman/puppet_class.rb:34
1758
1782
  msgid "Smart variables"
1759
- msgstr "Smart variables"
1783
+ msgstr "Smart-Variablen"
1760
1784
 
1761
1785
  #: ../lib/hammer_cli_foreman/puppet_class.rb:35 ../lib/hammer_cli_foreman/smart_class_parameter.rb:10
1762
1786
  msgid "Parameter"
@@ -1788,11 +1812,11 @@ msgstr "Benutzergruppen"
1788
1812
 
1789
1813
  #: ../lib/hammer_cli_foreman/references.rb:42
1790
1814
  msgid "Smart proxies"
1791
- msgstr "Smart Proxys"
1815
+ msgstr "Smart-Proxys"
1792
1816
 
1793
1817
  #: ../lib/hammer_cli_foreman/references.rb:50
1794
1818
  msgid "Compute resources"
1795
- msgstr "Rechnerresourcen"
1819
+ msgstr "Rechnerressourcen"
1796
1820
 
1797
1821
  #: ../lib/hammer_cli_foreman/references.rb:58
1798
1822
  msgid "Installation media"
@@ -1804,7 +1828,7 @@ msgstr "Vorlagen"
1804
1828
 
1805
1829
  #: ../lib/hammer_cli_foreman/references.rb:74
1806
1830
  msgid "Domains"
1807
- msgstr "Domänen"
1831
+ msgstr "Domains"
1808
1832
 
1809
1833
  #: ../lib/hammer_cli_foreman/references.rb:82
1810
1834
  msgid "Environments"
@@ -1844,15 +1868,15 @@ msgstr "Angewendet"
1844
1868
 
1845
1869
  #: ../lib/hammer_cli_foreman/report.rb:15 ../lib/hammer_cli_foreman/report.rb:36
1846
1870
  msgid "Restarted"
1847
- msgstr "neu gestartet"
1871
+ msgstr "Neu gestartet"
1848
1872
 
1849
1873
  #: ../lib/hammer_cli_foreman/report.rb:16 ../lib/hammer_cli_foreman/report.rb:37
1850
1874
  msgid "Failed"
1851
- msgstr "fehlgeschlagen"
1875
+ msgstr "Fehlgeschlagen"
1852
1876
 
1853
1877
  #: ../lib/hammer_cli_foreman/report.rb:17 ../lib/hammer_cli_foreman/report.rb:38
1854
1878
  msgid "Restart Failures"
1855
- msgstr "Neustarts - Fehler"
1879
+ msgstr "Fehlgeschlagene Neustarts"
1856
1880
 
1857
1881
  #: ../lib/hammer_cli_foreman/report.rb:18 ../lib/hammer_cli_foreman/report.rb:39
1858
1882
  msgid "Skipped"
@@ -1860,7 +1884,7 @@ msgstr "Übersprungen"
1860
1884
 
1861
1885
  #: ../lib/hammer_cli_foreman/report.rb:19 ../lib/hammer_cli_foreman/report.rb:40
1862
1886
  msgid "Pending"
1863
- msgstr "ausstehende"
1887
+ msgstr "Ausstehend"
1864
1888
 
1865
1889
  #: ../lib/hammer_cli_foreman/report.rb:32
1866
1890
  msgid "Reported at"
@@ -1934,43 +1958,54 @@ msgstr "Bericht konnte nicht gelöscht werden"
1934
1958
  msgid "The server does not support such operation."
1935
1959
  msgstr "Diese Operation wird vom Server nicht unterstützt."
1936
1960
 
1937
- #: ../lib/hammer_cli_foreman/role.rb:23
1961
+ #: ../lib/hammer_cli_foreman/role.rb:20
1962
+ #, fuzzy
1963
+ msgid "Builtin"
1964
+ msgstr "Build"
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
1938
1975
  msgid "User role id"
1939
1976
  msgstr "Benutzerrollen-ID"
1940
1977
 
1941
- #: ../lib/hammer_cli_foreman/role.rb:47
1978
+ #: ../lib/hammer_cli_foreman/role.rb:60
1942
1979
  msgid "User role [%<name>s] created"
1943
1980
  msgstr "Benutzerrolle [%<name>s] erstellt"
1944
1981
 
1945
- #: ../lib/hammer_cli_foreman/role.rb:48
1982
+ #: ../lib/hammer_cli_foreman/role.rb:61
1946
1983
  msgid "Could not create the user role"
1947
1984
  msgstr "Benutzerrolle konnte nicht erstellt werden"
1948
1985
 
1949
- #: ../lib/hammer_cli_foreman/role.rb:55
1986
+ #: ../lib/hammer_cli_foreman/role.rb:68
1950
1987
  msgid "User role [%<name>s] updated"
1951
1988
  msgstr "Benutzerrolle [%<name>s] aktualisiert"
1952
1989
 
1953
- #: ../lib/hammer_cli_foreman/role.rb:56
1990
+ #: ../lib/hammer_cli_foreman/role.rb:69
1954
1991
  msgid "Could not update the user role"
1955
1992
  msgstr "Benutzerrolle konnte nicht aktualisiert werden"
1956
1993
 
1957
- #: ../lib/hammer_cli_foreman/role.rb:63
1994
+ #: ../lib/hammer_cli_foreman/role.rb:76
1958
1995
  msgid "User role [%<name>s] deleted"
1959
1996
  msgstr "Benutzerrolle [%<name>s] gelöscht"
1960
1997
 
1961
- #: ../lib/hammer_cli_foreman/role.rb:64
1998
+ #: ../lib/hammer_cli_foreman/role.rb:77
1962
1999
  msgid "Could not delete the user roles"
1963
2000
  msgstr "Benutzerrollen konnten nicht gelöscht werden"
1964
2001
 
1965
2002
  #: ../lib/hammer_cli_foreman/settings.rb:28
1966
- #, fuzzy
1967
2003
  msgid "Setting [%{name}] updated to [%{value}]"
1968
- msgstr "Parameter [%{name}] aktualisiert auf [%{value}]."
2004
+ msgstr "Einstellung [%{name}] aktualisiert auf [%{value}]."
1969
2005
 
1970
2006
  #: ../lib/hammer_cli_foreman/settings.rb:29
1971
- #, fuzzy
1972
2007
  msgid "Could not update the setting"
1973
- msgstr "Domain konnte nicht aktualisiert werden"
2008
+ msgstr "Einstellung konnte nicht aktualisiert werden"
1974
2009
 
1975
2010
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
1976
2011
  msgid "Default Value"
@@ -1978,23 +2013,23 @@ msgstr "Standardwert"
1978
2013
 
1979
2014
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:12
1980
2015
  msgid "Override"
1981
- msgstr "Übergehen"
2016
+ msgstr "Überschreiben"
1982
2017
 
1983
2018
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:36 ../lib/hammer_cli_foreman/smart_variable.rb:27
1984
2019
  msgid "Puppet class"
1985
- msgstr "Puppet Klasse"
2020
+ msgstr "Puppet-Klasse"
1986
2021
 
1987
2022
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:37 ../lib/hammer_cli_foreman/smart_variable.rb:28
1988
2023
  msgid "Class Id"
1989
- msgstr "Klassenkennung"
2024
+ msgstr "Klassen-ID"
1990
2025
 
1991
2026
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:63
1992
2027
  msgid "Required"
1993
- msgstr "Benötigt"
2028
+ msgstr "Erforderlich"
1994
2029
 
1995
2030
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:65 ../lib/hammer_cli_foreman/smart_variable.rb:53
1996
2031
  msgid "Validator"
1997
- msgstr "Validator"
2032
+ msgstr "Prüfung"
1998
2033
 
1999
2034
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:67 ../lib/hammer_cli_foreman/smart_variable.rb:55
2000
2035
  msgid "Rule"
@@ -2002,29 +2037,27 @@ msgstr "Regel"
2002
2037
 
2003
2038
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:69 ../lib/hammer_cli_foreman/smart_variable.rb:57
2004
2039
  msgid "Override values"
2005
- msgstr "Werte übergehen"
2040
+ msgstr "Überschreibungswerte"
2006
2041
 
2007
2042
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:58
2008
2043
  msgid "Merge overrides"
2009
2044
  msgstr ""
2010
2045
 
2011
2046
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
2012
- #, fuzzy
2013
2047
  msgid "Merge default value"
2014
- msgstr "Standardwert"
2048
+ msgstr ""
2015
2049
 
2016
2050
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
2017
2051
  msgid "Avoid duplicates"
2018
- msgstr ""
2052
+ msgstr "Duplikate vermeiden"
2019
2053
 
2020
2054
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:61
2021
2055
  msgid "Order"
2022
2056
  msgstr "Reihenfolge"
2023
2057
 
2024
2058
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
2025
- #, fuzzy
2026
2059
  msgid "Values"
2027
- msgstr "Wert"
2060
+ msgstr "Werte"
2028
2061
 
2029
2062
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
2030
2063
  msgid "Match"
@@ -2040,39 +2073,35 @@ msgstr "Parameter konnte nicht aktualisiert werden"
2040
2073
 
2041
2074
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:111
2042
2075
  msgid "Override this parameter."
2043
- msgstr "Diesen Parameter übergehen."
2076
+ msgstr "Diesen Parameter überschreiben."
2044
2077
 
2045
2078
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:113
2046
2079
  msgid "This parameter is required."
2047
- msgstr "Dieser Parameter wird benötigt."
2080
+ msgstr "Dieser Parameter ist erforderlich."
2048
2081
 
2049
2082
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:115
2050
2083
  msgid "Type of the parameter."
2051
- msgstr "Typ des Parameters"
2084
+ msgstr "Typ des Parameters."
2052
2085
 
2053
2086
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:118 ../lib/hammer_cli_foreman/smart_variable.rb:90 ../lib/hammer_cli_foreman/smart_variable.rb:104
2054
2087
  msgid "Type of the validator."
2055
- msgstr "Typ des Validators."
2088
+ msgstr "Typ der Prüfung."
2056
2089
 
2057
2090
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
2058
- #, fuzzy
2059
2091
  msgid "Override value created"
2060
- msgstr "Werte übergehen"
2092
+ msgstr ""
2061
2093
 
2062
2094
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133 ../lib/hammer_cli_foreman/smart_variable.rb:123
2063
- #, fuzzy
2064
2095
  msgid "Could not create the override_value"
2065
- msgstr "Benutzerrolle konnte nicht erstellt werden"
2096
+ msgstr ""
2066
2097
 
2067
2098
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
2068
- #, fuzzy
2069
2099
  msgid "Override value deleted"
2070
- msgstr "Werte übergehen"
2100
+ msgstr ""
2071
2101
 
2072
2102
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:153 ../lib/hammer_cli_foreman/smart_variable.rb:136
2073
- #, fuzzy
2074
2103
  msgid "Could not delete the override value"
2075
- msgstr "Betriebssystem konnte nicht gelöscht werden"
2104
+ msgstr ""
2076
2105
 
2077
2106
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2078
2107
  msgid "URL"
@@ -2080,19 +2109,19 @@ msgstr "URL"
2080
2109
 
2081
2110
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
2082
2111
  msgid "Features"
2083
- msgstr "Eigenschaften"
2112
+ msgstr "Funktionen"
2084
2113
 
2085
2114
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:41
2086
2115
  msgid "Smart proxy created"
2087
- msgstr "Smart Proxy erstellt"
2116
+ msgstr "Smart-Proxy erstellt"
2088
2117
 
2089
2118
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:42
2090
2119
  msgid "Could not create the proxy"
2091
- msgstr "Smart Proxy konnte nicht erstellt werden"
2120
+ msgstr "Smart-Proxy konnte nicht erstellt werden"
2092
2121
 
2093
2122
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:49
2094
2123
  msgid "Smart proxy updated"
2095
- msgstr "Smart Proxy aktualisiert"
2124
+ msgstr "Smart-Proxy aktualisiert"
2096
2125
 
2097
2126
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:50
2098
2127
  msgid "Could not update the proxy"
@@ -2100,11 +2129,11 @@ msgstr "Proxy konnte nicht aktualisiert werden"
2100
2129
 
2101
2130
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:57
2102
2131
  msgid "Smart proxy deleted"
2103
- msgstr "Smart Proxy entfernt"
2132
+ msgstr "Smart-Proxy gelöscht"
2104
2133
 
2105
2134
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:58
2106
2135
  msgid "Could not delete the proxy"
2107
- msgstr "Smart Proxy konnte nicht entfernt werden"
2136
+ msgstr "Smart-Proxy konnte nicht gelöscht werden"
2108
2137
 
2109
2138
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:69
2110
2139
  msgid "Puppet classes were imported"
@@ -2131,32 +2160,28 @@ msgid "Smart variable [%{variable}] created"
2131
2160
  msgstr ""
2132
2161
 
2133
2162
  #: ../lib/hammer_cli_foreman/smart_variable.rb:83
2134
- #, fuzzy
2135
2163
  msgid "Could not create the smart variable"
2136
- msgstr "Partitionstabelle konnte nicht erstellt werden"
2164
+ msgstr ""
2137
2165
 
2138
2166
  #: ../lib/hammer_cli_foreman/smart_variable.rb:87 ../lib/hammer_cli_foreman/smart_variable.rb:101
2139
- #, fuzzy
2140
2167
  msgid "Type of the variable."
2141
- msgstr "Typ des Validators."
2168
+ msgstr "Typ der Variable."
2142
2169
 
2143
2170
  #: ../lib/hammer_cli_foreman/smart_variable.rb:96
2144
2171
  msgid "Smart variable [%{variable}] updated"
2145
2172
  msgstr ""
2146
2173
 
2147
2174
  #: ../lib/hammer_cli_foreman/smart_variable.rb:97
2148
- #, fuzzy
2149
2175
  msgid "Could not update the smart variable"
2150
- msgstr "Partitionstabelle konnte nicht aktualisiert werden"
2176
+ msgstr ""
2151
2177
 
2152
2178
  #: ../lib/hammer_cli_foreman/smart_variable.rb:111
2153
2179
  msgid "Smart variable [%{variable}] deleted"
2154
2180
  msgstr ""
2155
2181
 
2156
2182
  #: ../lib/hammer_cli_foreman/smart_variable.rb:112
2157
- #, fuzzy
2158
2183
  msgid "Could not delete the smart variable"
2159
- msgstr "Partitionstabelle konnte nicht gelöscht werden"
2184
+ msgstr ""
2160
2185
 
2161
2186
  #: ../lib/hammer_cli_foreman/subnet.rb:13
2162
2187
  msgid "Mask"
@@ -2186,9 +2211,13 @@ msgstr "TFTP"
2186
2211
  msgid "DHCP"
2187
2212
  msgstr "DHCP"
2188
2213
 
2214
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2215
+ msgid "IPAM"
2216
+ msgstr ""
2217
+
2189
2218
  #: ../lib/hammer_cli_foreman/subnet.rb:30
2190
2219
  msgid "VLAN ID"
2191
- msgstr "VLAN-Kennung"
2220
+ msgstr "VLAN-ID"
2192
2221
 
2193
2222
  #: ../lib/hammer_cli_foreman/subnet.rb:31
2194
2223
  msgid "Gateway"
@@ -2200,7 +2229,7 @@ msgstr "Von"
2200
2229
 
2201
2230
  #: ../lib/hammer_cli_foreman/subnet.rb:33
2202
2231
  msgid "To"
2203
- msgstr "An"
2232
+ msgstr "Bis"
2204
2233
 
2205
2234
  #: ../lib/hammer_cli_foreman/subnet.rb:44
2206
2235
  msgid "Subnet created"
@@ -2236,7 +2265,7 @@ msgstr "Konfigurationsvorlageninhalte anzeigen."
2236
2265
 
2237
2266
  #: ../lib/hammer_cli_foreman/template.rb:102 ../lib/hammer_cli_foreman/template.rb:120
2238
2267
  msgid "Path to a file that contains the template"
2239
- msgstr "Pfad zur Datei, dass die Vorlage enthält"
2268
+ msgstr "Pfad zur Datei, welche die Vorlage enthält"
2240
2269
 
2241
2270
  #: ../lib/hammer_cli_foreman/template.rb:104 ../lib/hammer_cli_foreman/template.rb:122
2242
2271
  msgid "Template type. Eg. snippet, script, provision"
@@ -2268,7 +2297,7 @@ msgstr "Konfigurationsvorlage konnte nicht gelöscht werden"
2268
2297
 
2269
2298
  #: ../lib/hammer_cli_foreman/template.rb:150
2270
2299
  msgid "Update the default PXE menu on all configured TFTP servers"
2271
- msgstr ""
2300
+ msgstr "Standard-PXE-Menü auf allen konfigurierten TFTP-Servern aktualisieren"
2272
2301
 
2273
2302
  #: ../lib/hammer_cli_foreman/user.rb:11
2274
2303
  msgid "Login"
@@ -2276,7 +2305,7 @@ msgstr "Anmeldung"
2276
2305
 
2277
2306
  #: ../lib/hammer_cli_foreman/user.rb:13
2278
2307
  msgid "Email"
2279
- msgstr "E-Mail"
2308
+ msgstr "E-Mail-Adresse"
2280
2309
 
2281
2310
  #: ../lib/hammer_cli_foreman/user.rb:28
2282
2311
  msgid "Admin"
@@ -2288,49 +2317,47 @@ msgstr "Autorisiert durch"
2288
2317
 
2289
2318
  #: ../lib/hammer_cli_foreman/user.rb:30
2290
2319
  msgid "Locale"
2291
- msgstr ""
2320
+ msgstr "Sprachumgebung"
2292
2321
 
2293
2322
  #: ../lib/hammer_cli_foreman/user.rb:31
2294
2323
  msgid "Timezone"
2295
- msgstr ""
2324
+ msgstr "Zeitzone"
2296
2325
 
2297
2326
  #: ../lib/hammer_cli_foreman/user.rb:32
2298
2327
  msgid "Last login"
2299
2328
  msgstr "Letzte Anmeldung"
2300
2329
 
2301
2330
  #: ../lib/hammer_cli_foreman/user.rb:33
2302
- #, fuzzy
2303
2331
  msgid "Default organization"
2304
- msgstr "Organisationen verändern"
2332
+ msgstr "Standardmäßige Organisation"
2305
2333
 
2306
2334
  #: ../lib/hammer_cli_foreman/user.rb:34
2307
- #, fuzzy
2308
2335
  msgid "Default location"
2309
- msgstr "Orte verändern."
2336
+ msgstr "Standardmäßiger Standort"
2310
2337
 
2311
2338
  #: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
2312
2339
  msgid "default"
2313
- msgstr ""
2340
+ msgstr "Standard"
2314
2341
 
2315
2342
  #: ../lib/hammer_cli_foreman/user.rb:53
2316
2343
  msgid "User [%{login}] created"
2317
- msgstr ""
2344
+ msgstr "Benutzer [%{login}] erstellt"
2318
2345
 
2319
2346
  #: ../lib/hammer_cli_foreman/user.rb:54
2320
2347
  msgid "Could not create the user"
2321
- msgstr "Der Benutzer konnte nicht erstellt werden"
2348
+ msgstr "Benutzer konnte nicht erstellt werden"
2322
2349
 
2323
2350
  #: ../lib/hammer_cli_foreman/user.rb:61
2324
2351
  msgid "User [%{login}] updated"
2325
- msgstr ""
2352
+ msgstr "Benutzer [%{login}] aktualisiert"
2326
2353
 
2327
2354
  #: ../lib/hammer_cli_foreman/user.rb:62
2328
2355
  msgid "Could not update the user"
2329
- msgstr "Der Benutzer konnte nicht aktualisiert werden"
2356
+ msgstr "Benutzer konnte nicht aktualisiert werden"
2330
2357
 
2331
2358
  #: ../lib/hammer_cli_foreman/user.rb:69
2332
2359
  msgid "User [%{login}] deleted"
2333
- msgstr ""
2360
+ msgstr "Benutzer [%{login}] gelöscht"
2334
2361
 
2335
2362
  #: ../lib/hammer_cli_foreman/user.rb:70
2336
2363
  msgid "Could not delete the user"
@@ -2360,62 +2387,6 @@ msgstr "Benutzergruppe [%<name>s] gelöscht"
2360
2387
  msgid "Could not delete the user group"
2361
2388
  msgstr "Benutzergruppe konnte nicht gelöscht werden"
2362
2389
 
2363
- #: lib/hammer_cli_foreman/host.rb:171
2364
- #~ msgid "Disk"
2365
- #~ msgstr "Festplatte"
2366
-
2367
- #: lib/hammer_cli_foreman/host.rb:189
2368
- #~ msgid "Puppet Proxy Id"
2369
- #~ msgstr "Puppet-Proxy-ID"
2370
-
2371
- #: lib/hammer_cli_foreman/host.rb:198
2372
- #~ msgid "BMC Network Interfaces"
2373
- #~ msgstr "BMC-Netzwerkschnittstellen"
2374
-
2375
- #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
2376
- #~ msgid "Domain Id"
2377
- #~ msgstr "Domain-Kennung"
2378
-
2379
- #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
2380
- #~ msgid "Domain Name"
2381
- #~ msgstr "Domainname"
2382
-
2383
- #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
2384
- #~ msgid "Subnet Id"
2385
- #~ msgstr "Subnetzkennung"
2386
-
2387
- #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
2388
- #~ msgid "Subnet Name"
2389
- #~ msgstr "Subnetzname"
2390
-
2391
- #: lib/hammer_cli_foreman/host.rb:207
2392
- #~ msgid "BMC Username"
2393
- #~ msgstr "BMC-Benutzername"
2394
-
2395
- #: lib/hammer_cli_foreman/host.rb:208
2396
- #~ msgid "BMC Password"
2397
- #~ msgstr "BMC-Passwort"
2398
-
2399
- #: lib/hammer_cli_foreman/host.rb:211
2400
- #~ msgid "Managed Network Interfaces"
2401
- #~ msgstr "Verwaltete Netzwerkschnittstellen"
2402
-
2403
- #: lib/hammer_cli_foreman/commands.rb:288
2404
- #~ msgid "List next page? (%s): "
2405
- #~ msgstr "Nächste Seite auflisten? (%s): "
2406
-
2407
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
2408
- #~ msgid "Count"
2409
- #~ msgstr "Zähler"
2410
-
2411
- #: lib/hammer_cli_foreman/user.rb:47
2412
- #~ msgid "User created"
2413
- #~ msgstr "Benutzer erstellt"
2414
-
2415
- #: lib/hammer_cli_foreman/user.rb:55
2416
- #~ msgid "User updated"
2417
- #~ msgstr "Benutzer aktualisiert"
2418
-
2419
- #: lib/hammer_cli_foreman/user.rb:63
2420
- #~ msgid "User deleted"
2421
- #~ msgstr "Benutzer gelöscht"
2390
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:201
2391
+ #~ msgid "%s found more than once"
2392
+ #~ msgstr "%s mehr als einmal gefunden"