hammer_cli_foreman 0.4.0 → 0.5.0

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