hammer_cli_foreman 0.6.2 → 0.7.0

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