hammer_cli_foreman 0.4.0 → 0.5.0

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