hammer_cli_foreman 0.6.2 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of hammer_cli_foreman might be problematic. Click here for more details.

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