hammer_cli_foreman 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (340) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -2
  3. data/doc/host_create.md +15 -7
  4. data/doc/release_notes.md +11 -0
  5. data/lib/hammer_cli_foreman/commands.rb +5 -1
  6. data/lib/hammer_cli_foreman/defaults.rb +29 -0
  7. data/lib/hammer_cli_foreman/host.rb +8 -1
  8. data/lib/hammer_cli_foreman/id_resolver.rb +1 -1
  9. data/lib/hammer_cli_foreman/location.rb +21 -0
  10. data/lib/hammer_cli_foreman/organization.rb +21 -0
  11. data/lib/hammer_cli_foreman/parameter.rb +7 -7
  12. data/lib/hammer_cli_foreman/role.rb +13 -0
  13. data/lib/hammer_cli_foreman/subnet.rb +1 -1
  14. data/lib/hammer_cli_foreman/version.rb +1 -1
  15. data/lib/hammer_cli_foreman.rb +2 -0
  16. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  17. data/locale/de/hammer-cli-foreman.edit.po +394 -423
  18. data/locale/de/hammer-cli-foreman.po +1920 -1511
  19. data/locale/en/hammer-cli-foreman.edit.po +188 -124
  20. data/locale/en/hammer-cli-foreman.po +49 -1
  21. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  22. data/locale/en_GB/hammer-cli-foreman.edit.po +208 -152
  23. data/locale/en_GB/hammer-cli-foreman.po +1554 -1145
  24. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/es/hammer-cli-foreman.edit.po +438 -464
  26. data/locale/es/hammer-cli-foreman.po +1930 -1519
  27. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  28. data/locale/fr/hammer-cli-foreman.edit.po +301 -328
  29. data/locale/fr/hammer-cli-foreman.po +1922 -1513
  30. data/locale/hammer-cli-foreman.pot +194 -127
  31. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  32. data/locale/it/hammer-cli-foreman.edit.po +303 -331
  33. data/locale/it/hammer-cli-foreman.po +1909 -1500
  34. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  35. data/locale/ja/hammer-cli-foreman.edit.po +302 -330
  36. data/locale/ja/hammer-cli-foreman.po +1920 -1511
  37. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  38. data/locale/ko/hammer-cli-foreman.edit.po +303 -332
  39. data/locale/ko/hammer-cli-foreman.po +1910 -1501
  40. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  41. data/locale/pt_BR/hammer-cli-foreman.edit.po +369 -393
  42. data/locale/pt_BR/hammer-cli-foreman.po +1916 -1506
  43. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  44. data/locale/ru/hammer-cli-foreman.edit.po +344 -372
  45. data/locale/ru/hammer-cli-foreman.po +1940 -1531
  46. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  47. data/locale/zh_CN/hammer-cli-foreman.edit.po +303 -331
  48. data/locale/zh_CN/hammer-cli-foreman.po +1905 -1496
  49. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/zh_TW/hammer-cli-foreman.edit.po +306 -334
  51. data/locale/zh_TW/hammer-cli-foreman.po +1908 -1499
  52. data/test/functional/api_expectations.rb +65 -0
  53. data/test/functional/command_assertions.rb +76 -0
  54. data/test/functional/location_test.rb +140 -0
  55. data/test/functional/organization_test.rb +140 -0
  56. data/test/functional/test_helper.rb +7 -0
  57. data/test/test_helper.rb +27 -0
  58. data/test/unit/apipie_resource_mock.rb +24 -6
  59. data/test/unit/architecture_test.rb +1 -1
  60. data/test/unit/auth_source_ldap_test.rb +1 -3
  61. data/test/unit/common_parameter_test.rb +1 -1
  62. data/test/unit/compute_resource_test.rb +1 -1
  63. data/test/unit/data/1.10/foreman_api.json +1 -0
  64. data/test/unit/data/README.md +22 -0
  65. data/test/unit/data/test_api.json +609 -0
  66. data/test/unit/defaults_test.rb +32 -0
  67. data/test/unit/dependency_resolver_test.rb +21 -16
  68. data/test/unit/domain_test.rb +1 -1
  69. data/test/unit/environment_test.rb +1 -1
  70. data/test/unit/external_usergroup_test.rb +1 -1
  71. data/test/unit/helpers/command.rb +5 -1
  72. data/test/unit/host_test.rb +16 -8
  73. data/test/unit/hostgroup_test.rb +1 -1
  74. data/test/unit/id_resolver_test.rb +40 -37
  75. data/test/unit/image_test.rb +1 -3
  76. data/test/unit/location_test.rb +1 -1
  77. data/test/unit/media_test.rb +3 -3
  78. data/test/unit/model_test.rb +1 -1
  79. data/test/unit/operating_system_test.rb +1 -2
  80. data/test/unit/option_builders_test.rb +106 -116
  81. data/test/unit/organization_test.rb +1 -1
  82. data/test/unit/partition_table_test.rb +1 -1
  83. data/test/unit/puppet_class_test.rb +4 -1
  84. data/test/unit/report_test.rb +1 -1
  85. data/test/unit/role_test.rb +15 -0
  86. data/test/unit/smart_class_parameter_test.rb +1 -1
  87. data/test/unit/smart_proxy_test.rb +1 -1
  88. data/test/unit/smart_variable_test.rb +1 -1
  89. data/test/unit/subnet_test.rb +1 -1
  90. data/test/unit/template_test.rb +1 -1
  91. data/test/unit/test_helper.rb +2 -29
  92. data/test/unit/user_test.rb +1 -2
  93. metadata +67 -539
  94. data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +0 -11
  95. data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +0 -7
  96. data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +0 -13
  97. data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +0 -7
  98. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +0 -13
  99. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +0 -13
  100. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +0 -7
  101. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +0 -13
  102. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +0 -17
  103. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +0 -7
  104. data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +0 -15
  105. data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +0 -7
  106. data/test/reports/TEST-HammerCLIForeman-Architecture.xml +0 -7
  107. data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +0 -11
  108. data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +0 -7
  109. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +0 -13
  110. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +0 -17
  111. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +0 -7
  112. data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +0 -13
  113. data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +0 -7
  114. data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +0 -7
  115. data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +0 -15
  116. data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +0 -7
  117. data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +0 -13
  118. data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +0 -7
  119. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +0 -17
  120. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +0 -13
  121. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +0 -7
  122. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +0 -15
  123. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +0 -17
  124. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +0 -7
  125. data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +0 -15
  126. data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +0 -7
  127. data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +0 -7
  128. data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +0 -11
  129. data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +0 -7
  130. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +0 -13
  131. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +0 -7
  132. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +0 -15
  133. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +0 -7
  134. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +0 -21
  135. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +0 -13
  136. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +0 -7
  137. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +0 -13
  138. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +0 -17
  139. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +0 -7
  140. data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +0 -17
  141. data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +0 -7
  142. data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +0 -15
  143. data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +0 -7
  144. data/test/reports/TEST-HammerCLIForeman-Domain.xml +0 -7
  145. data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +0 -11
  146. data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +0 -7
  147. data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +0 -13
  148. data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +0 -7
  149. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +0 -17
  150. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +0 -13
  151. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +0 -7
  152. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +0 -13
  153. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +0 -17
  154. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +0 -7
  155. data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +0 -15
  156. data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +0 -7
  157. data/test/reports/TEST-HammerCLIForeman-Environment.xml +0 -7
  158. data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +0 -13
  159. data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +0 -46
  160. data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +0 -7
  161. data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +0 -13
  162. data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +0 -7
  163. data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +0 -15
  164. data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +0 -7
  165. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +0 -85
  166. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +0 -13
  167. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +0 -7
  168. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +0 -21
  169. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +0 -17
  170. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +0 -7
  171. data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +0 -9
  172. data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +0 -7
  173. data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +0 -17
  174. data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +0 -7
  175. data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +0 -9
  176. data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +0 -7
  177. data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +0 -40
  178. data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +0 -7
  179. data/test/reports/TEST-HammerCLIForeman-Host.xml +0 -7
  180. data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +0 -11
  181. data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +0 -7
  182. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +0 -11
  183. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +0 -7
  184. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +0 -13
  185. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +0 -7
  186. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +0 -29
  187. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +0 -11
  188. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +0 -7
  189. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +0 -27
  190. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +0 -17
  191. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +0 -7
  192. data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +0 -15
  193. data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +0 -7
  194. data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +0 -13
  195. data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +0 -7
  196. data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +0 -7
  197. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +0 -11
  198. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +0 -11
  199. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +0 -7
  200. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +0 -13
  201. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +0 -11
  202. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +0 -7
  203. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +0 -17
  204. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +0 -13
  205. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +0 -11
  206. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +0 -7
  207. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +0 -13
  208. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +0 -17
  209. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +0 -11
  210. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +0 -7
  211. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +0 -15
  212. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +0 -11
  213. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +0 -7
  214. data/test/reports/TEST-HammerCLIForeman-Location.xml +0 -7
  215. data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +0 -13
  216. data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +0 -7
  217. data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +0 -13
  218. data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +0 -7
  219. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +0 -23
  220. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +0 -13
  221. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +0 -7
  222. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +0 -15
  223. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +0 -17
  224. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +0 -7
  225. data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +0 -17
  226. data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +0 -7
  227. data/test/reports/TEST-HammerCLIForeman-Medium.xml +0 -7
  228. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +0 -11
  229. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +0 -7
  230. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +0 -13
  231. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +0 -7
  232. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +0 -13
  233. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +0 -7
  234. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +0 -27
  235. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +0 -13
  236. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +0 -7
  237. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +0 -17
  238. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +0 -17
  239. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +0 -7
  240. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +0 -15
  241. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +0 -7
  242. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +0 -17
  243. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +0 -7
  244. data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +0 -7
  245. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +0 -11
  246. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +0 -11
  247. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +0 -7
  248. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +0 -13
  249. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +0 -11
  250. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +0 -7
  251. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +0 -17
  252. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +0 -13
  253. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +0 -11
  254. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +0 -7
  255. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +0 -13
  256. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +0 -17
  257. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +0 -11
  258. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +0 -7
  259. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +0 -15
  260. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +0 -11
  261. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +0 -7
  262. data/test/reports/TEST-HammerCLIForeman-Organization.xml +0 -7
  263. data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +0 -13
  264. data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +0 -7
  265. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +0 -13
  266. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +0 -7
  267. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +0 -15
  268. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +0 -7
  269. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +0 -19
  270. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +0 -13
  271. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +0 -7
  272. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +0 -15
  273. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +0 -17
  274. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +0 -7
  275. data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +0 -13
  276. data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +0 -7
  277. data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +0 -7
  278. data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +0 -13
  279. data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +0 -7
  280. data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +0 -13
  281. data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +0 -7
  282. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +0 -21
  283. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +0 -13
  284. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +0 -7
  285. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +0 -15
  286. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +0 -11
  287. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +0 -7
  288. data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +0 -15
  289. data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +0 -7
  290. data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +0 -7
  291. data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +0 -15
  292. data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +0 -7
  293. data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +0 -13
  294. data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +0 -7
  295. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +0 -43
  296. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +0 -13
  297. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +0 -7
  298. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +0 -17
  299. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +0 -17
  300. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +0 -7
  301. data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +0 -15
  302. data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +0 -7
  303. data/test/reports/TEST-HammerCLIForeman-Subnet.xml +0 -7
  304. data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +0 -15
  305. data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +0 -7
  306. data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +0 -11
  307. data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +0 -7
  308. data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +0 -12
  309. data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +0 -7
  310. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +0 -17
  311. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +0 -11
  312. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +0 -7
  313. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +0 -15
  314. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +0 -17
  315. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +0 -7
  316. data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +0 -9
  317. data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +0 -7
  318. data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +0 -11
  319. data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +0 -7
  320. data/test/reports/TEST-HammerCLIForeman-Template.xml +0 -7
  321. data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +0 -19
  322. data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +0 -7
  323. data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +0 -11
  324. data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +0 -7
  325. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +0 -23
  326. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +0 -11
  327. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +0 -7
  328. data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +0 -17
  329. data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +0 -17
  330. data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +0 -7
  331. data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +0 -11
  332. data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +0 -7
  333. data/test/reports/TEST-HammerCLIForeman-User.xml +0 -7
  334. data/test/reports/TEST-MiniTest-Spec.xml +0 -7
  335. data/test/unit/data/1.4/foreman_api.json +0 -10387
  336. data/test/unit/data/1.5/foreman_api.json +0 -14130
  337. data/test/unit/data/1.6/foreman_api.json +0 -1
  338. data/test/unit/data/1.6/foreman_api_back.json +0 -1
  339. data/test/unit/data/1.6/whatever.json +0 -1
  340. data/test/unit/data/1.7/foreman_api.json +0 -1
@@ -4,136 +4,135 @@
4
4
  #
5
5
  # Translators:
6
6
  # Automatically generated, 2014
7
- # Giuseppe Pignataro <rogepix@gmail.com>, 2014
7
+ # Giuseppe Pignataro <anubisteam01@gmail.com>, 2014
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: hammer-cli-foreman 0.3.0\n"
10
+ "Project-Id-Version: hammer-cli-foreman 0.4.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2015-09-21 16:50+0200\n"
13
- "PO-Revision-Date: 2015-03-22 03:37+0000\n"
14
- "Last-Translator: Lukáš Zapletal\n"
15
- "Language-Team: Italian (http://www.transifex.com/projects/p/foreman/language/i"
16
- "t/)\n"
12
+ "POT-Creation-Date: 2015-12-11 04:48+0000\n"
13
+ "PO-Revision-Date: 2015-10-08 11:29+0000\n"
14
+ "Last-Translator: mbacovsky <martin.bacovsky@gmail.com>\n"
15
+ "Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
16
+ "\n"
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: 8bit\n"
20
20
  "Language: it\n"
21
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
22
 
23
- #: ../lib/hammer_cli_foreman.rb:30
23
+ #: ../lib/hammer_cli_foreman.rb:32
24
24
  msgid "Foreman connection login/logout."
25
25
  msgstr "Login/logout della connessione di foreman"
26
26
 
27
- #: ../lib/hammer_cli_foreman.rb:34
27
+ #: ../lib/hammer_cli_foreman.rb:36
28
28
  msgid "Manipulate architectures."
29
29
  msgstr "Manipolazione architetture."
30
30
 
31
- #: ../lib/hammer_cli_foreman.rb:38
31
+ #: ../lib/hammer_cli_foreman.rb:40
32
32
  msgid "Manipulate auth sources."
33
- msgstr ""
33
+ msgstr "Manipolazione sorgenti di autenticazione."
34
34
 
35
- #: ../lib/hammer_cli_foreman.rb:42
35
+ #: ../lib/hammer_cli_foreman.rb:44
36
36
  msgid "Manipulate compute resources."
37
37
  msgstr "Manipolazione risorse di calcolo"
38
38
 
39
- #: ../lib/hammer_cli_foreman.rb:46
39
+ #: ../lib/hammer_cli_foreman.rb:48
40
40
  msgid "Manipulate domains."
41
41
  msgstr "Manipolazione domini."
42
42
 
43
- #: ../lib/hammer_cli_foreman.rb:50
43
+ #: ../lib/hammer_cli_foreman.rb:52
44
44
  msgid "Manipulate environments."
45
- msgstr ""
45
+ msgstr "Manipolazione ambienti."
46
46
 
47
- #: ../lib/hammer_cli_foreman.rb:54
47
+ #: ../lib/hammer_cli_foreman.rb:56
48
48
  msgid "Search facts."
49
49
  msgstr "Cerca eventi."
50
50
 
51
- #: ../lib/hammer_cli_foreman.rb:58
51
+ #: ../lib/hammer_cli_foreman.rb:60
52
52
  msgid "Manage permission filters."
53
53
  msgstr "Gestisci i filri dei permessi."
54
54
 
55
- #: ../lib/hammer_cli_foreman.rb:62
55
+ #: ../lib/hammer_cli_foreman.rb:64
56
56
  msgid "Manipulate hosts."
57
- msgstr ""
57
+ msgstr "Manipolazione host."
58
58
 
59
- #: ../lib/hammer_cli_foreman.rb:66
59
+ #: ../lib/hammer_cli_foreman.rb:68
60
60
  msgid "Manipulate hostgroups."
61
61
  msgstr "Manipolazione hostgroup."
62
62
 
63
- #: ../lib/hammer_cli_foreman.rb:70
63
+ #: ../lib/hammer_cli_foreman.rb:72
64
64
  msgid "Manipulate locations."
65
65
  msgstr "Manipolazione posizioni."
66
66
 
67
- #: ../lib/hammer_cli_foreman.rb:74
67
+ #: ../lib/hammer_cli_foreman.rb:76
68
68
  msgid "Manipulate installation media."
69
69
  msgstr "Manipolazione dispositivo d'installazione"
70
70
 
71
- #: ../lib/hammer_cli_foreman.rb:78
71
+ #: ../lib/hammer_cli_foreman.rb:80
72
72
  msgid "Manipulate hardware models."
73
73
  msgstr "Manipolazione modelli hardware."
74
74
 
75
- #: ../lib/hammer_cli_foreman.rb:82
75
+ #: ../lib/hammer_cli_foreman.rb:84
76
76
  msgid "Manipulate operating system."
77
- msgstr ""
77
+ msgstr "Manipolazione sistema operativo."
78
78
 
79
- #: ../lib/hammer_cli_foreman.rb:86
79
+ #: ../lib/hammer_cli_foreman.rb:88
80
80
  msgid "Manipulate organizations."
81
81
  msgstr "Manipolazione organizzazioni."
82
82
 
83
- #: ../lib/hammer_cli_foreman.rb:90
83
+ #: ../lib/hammer_cli_foreman.rb:92
84
84
  msgid "Manipulate partition tables."
85
85
  msgstr "Manipolazione tabelle delle partizioni"
86
86
 
87
- #: ../lib/hammer_cli_foreman.rb:94
87
+ #: ../lib/hammer_cli_foreman.rb:96
88
88
  msgid "Search puppet modules."
89
89
  msgstr "Cerca moduli puppet."
90
90
 
91
- #: ../lib/hammer_cli_foreman.rb:98
91
+ #: ../lib/hammer_cli_foreman.rb:100
92
92
  msgid "Browse and read reports."
93
93
  msgstr "Sfoglia e leggi i riporti."
94
94
 
95
- #: ../lib/hammer_cli_foreman.rb:102
95
+ #: ../lib/hammer_cli_foreman.rb:104
96
96
  msgid "Manage user roles."
97
97
  msgstr "Gestisci ruoli utente."
98
98
 
99
- #: ../lib/hammer_cli_foreman.rb:106
99
+ #: ../lib/hammer_cli_foreman.rb:108
100
100
  msgid "Manipulate smart class parameters."
101
101
  msgstr "Manipolazione parametri classe smart."
102
102
 
103
- #: ../lib/hammer_cli_foreman.rb:110
104
- #, fuzzy
103
+ #: ../lib/hammer_cli_foreman.rb:112
105
104
  msgid "Manipulate smart variables."
106
- msgstr "Manipolazione smart proxy."
105
+ msgstr ""
107
106
 
108
- #: ../lib/hammer_cli_foreman.rb:114
107
+ #: ../lib/hammer_cli_foreman.rb:116
109
108
  msgid "Manipulate smart proxies."
110
109
  msgstr "Manipolazione smart proxy."
111
110
 
112
- #: ../lib/hammer_cli_foreman.rb:118
111
+ #: ../lib/hammer_cli_foreman.rb:120
113
112
  msgid "Change server settings."
114
113
  msgstr ""
115
114
 
116
- #: ../lib/hammer_cli_foreman.rb:122
115
+ #: ../lib/hammer_cli_foreman.rb:124
117
116
  msgid "Manipulate subnets."
118
117
  msgstr "Manipolazione sottoreti."
119
118
 
120
- #: ../lib/hammer_cli_foreman.rb:126
119
+ #: ../lib/hammer_cli_foreman.rb:128
121
120
  msgid "Manipulate config templates."
122
121
  msgstr "Manipolazione modelli di configurazione."
123
122
 
124
- #: ../lib/hammer_cli_foreman.rb:130
123
+ #: ../lib/hammer_cli_foreman.rb:132
125
124
  msgid "Manipulate users."
126
125
  msgstr "Manipolazione utenti."
127
126
 
128
- #: ../lib/hammer_cli_foreman.rb:134
127
+ #: ../lib/hammer_cli_foreman.rb:136
129
128
  msgid "Manage user groups."
130
129
  msgstr "Gestisci gruppi di utenti."
131
130
 
132
- #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:200 ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
131
+ #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:170 ../lib/hammer_cli_foreman/host.rb:207 ../lib/hammer_cli_foreman/host.rb:238 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
133
132
  msgid "Id"
134
133
  msgstr "Id"
135
134
 
136
- #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:202 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
135
+ #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:171 ../lib/hammer_cli_foreman/host.rb:209 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
137
136
  msgid "Name"
138
137
  msgstr "Nome"
139
138
 
@@ -222,28 +221,24 @@ msgid "Associate an user"
222
221
  msgstr "Associa un utente"
223
222
 
224
223
  #: ../lib/hammer_cli_foreman/associating_commands.rb:149
225
- #, fuzzy
226
224
  msgid "The user has been associated"
227
- msgstr "L'architettura è stata associata"
225
+ msgstr ""
228
226
 
229
227
  #: ../lib/hammer_cli_foreman/associating_commands.rb:150
230
- #, fuzzy
231
228
  msgid "Could not associate the user"
232
- msgstr "Impossibile creare l'utente"
229
+ msgstr ""
233
230
 
234
231
  #: ../lib/hammer_cli_foreman/associating_commands.rb:155
235
232
  msgid "Disassociate an user"
236
233
  msgstr "Rimuovere associazione di un utente"
237
234
 
238
235
  #: ../lib/hammer_cli_foreman/associating_commands.rb:157
239
- #, fuzzy
240
236
  msgid "The user has been disassociated"
241
- msgstr "Rimossa associazione dell'architettura"
237
+ msgstr ""
242
238
 
243
239
  #: ../lib/hammer_cli_foreman/associating_commands.rb:158
244
- #, fuzzy
245
240
  msgid "Could not disassociate the user"
246
- msgstr "Impossibile rimuovere associazione dell'architettura"
241
+ msgstr ""
247
242
 
248
243
  #: ../lib/hammer_cli_foreman/associating_commands.rb:167
249
244
  msgid "Associate an user group"
@@ -254,9 +249,8 @@ msgid "The user group has been associated"
254
249
  msgstr ""
255
250
 
256
251
  #: ../lib/hammer_cli_foreman/associating_commands.rb:172
257
- #, fuzzy
258
252
  msgid "Could not associate the user group"
259
- msgstr "Impossibile creare il gruppo di utenti"
253
+ msgstr ""
260
254
 
261
255
  #: ../lib/hammer_cli_foreman/associating_commands.rb:177
262
256
  msgid "Disassociate an user group"
@@ -267,9 +261,8 @@ msgid "The user group has been disassociated"
267
261
  msgstr ""
268
262
 
269
263
  #: ../lib/hammer_cli_foreman/associating_commands.rb:182
270
- #, fuzzy
271
264
  msgid "Could not disassociate the user group"
272
- msgstr "Impossibile creare il gruppo di utenti"
265
+ msgstr ""
273
266
 
274
267
  #: ../lib/hammer_cli_foreman/associating_commands.rb:191
275
268
  msgid "Associate a configuration template"
@@ -408,28 +401,26 @@ msgid ""
408
401
  "You are currently not logged in to any service.\n"
409
402
  "Use the service to set credentials."
410
403
  msgstr ""
411
- "Attualmente non sei registrato con un servizio.\n"
412
- "Usa il servizio per impostare le credenziali."
413
404
 
414
405
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
415
406
  msgid "Manage LDAP auth sources."
416
- msgstr ""
407
+ msgstr "Gestisci sorgenti di autenticazione LDAP."
417
408
 
418
409
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
419
410
  msgid "LDAPS?"
420
- msgstr ""
411
+ msgstr "LDAPS?"
421
412
 
422
413
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
423
414
  msgid "Port"
424
- msgstr ""
415
+ msgstr "Porta"
425
416
 
426
417
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
427
418
  msgid "Server Type"
428
- msgstr ""
419
+ msgstr "Tipo di server"
429
420
 
430
421
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
431
422
  msgid "Account Username"
432
- msgstr ""
423
+ msgstr "Nome utente account"
433
424
 
434
425
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
435
426
  msgid "Base DN"
@@ -441,77 +432,77 @@ msgstr "Filtro LDAP"
441
432
 
442
433
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
443
434
  msgid "Automatically Create Accounts?"
444
- msgstr ""
435
+ msgstr "Crea automaticamente gli account?"
445
436
 
446
437
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
447
438
  msgid "Login Name Attribute"
448
- msgstr ""
439
+ msgstr "Attributo nome per l'accesso"
449
440
 
450
441
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
451
442
  msgid "First Name Attribute"
452
- msgstr ""
443
+ msgstr "Attributo Nome"
453
444
 
454
445
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
455
446
  msgid "Last Name Attribute"
456
- msgstr ""
447
+ msgstr "Attributo cognome"
457
448
 
458
449
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
459
450
  msgid "Email Address Attribute"
460
- msgstr ""
451
+ msgstr "Attributo indirizzo email"
461
452
 
462
453
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
463
454
  msgid "Photo Attribute"
464
- msgstr ""
455
+ msgstr "Attributo foto"
465
456
 
466
457
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
467
458
  msgid "Auth source created"
468
- msgstr ""
459
+ msgstr "Sorgente di autenticazione creato"
469
460
 
470
461
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
471
462
  msgid "Could not create the Auth Source"
472
- msgstr ""
463
+ msgstr "Impossibile creare il sorgente di autenticazione"
473
464
 
474
465
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
475
466
  msgid "Auth source deleted"
476
- msgstr ""
467
+ msgstr "Sorgente di autenticazione rimosso"
477
468
 
478
469
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
479
470
  msgid "Could not delete the Auth Source"
480
- msgstr ""
471
+ msgstr "Impossibile cancellare il sorgente di autenticazione"
481
472
 
482
473
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
483
474
  msgid "Auth source updated"
484
- msgstr ""
475
+ msgstr "Sorgente di autenticazione aggiornato"
485
476
 
486
477
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
487
478
  msgid "Could not update the Auth Source"
488
- msgstr ""
479
+ msgstr "Impossibile aggiornare il sorgente di autenticazione"
489
480
 
490
- #: ../lib/hammer_cli_foreman/commands.rb:83
481
+ #: ../lib/hammer_cli_foreman/commands.rb:87
491
482
  msgid "Received data of unknown format"
492
483
  msgstr "Dati ricevuti con un formato sconosciuto"
493
484
 
494
- #: ../lib/hammer_cli_foreman/commands.rb:191
485
+ #: ../lib/hammer_cli_foreman/commands.rb:195
495
486
  msgid "Could not find %{resource}. Some search options were missing, please see --help."
496
- msgstr ""
487
+ msgstr "Impossibile trovare %{resource}. Alcune opzioni risultano mancanti, consultare --help."
497
488
 
498
- #: ../lib/hammer_cli_foreman/commands.rb:193
489
+ #: ../lib/hammer_cli_foreman/commands.rb:197
499
490
  msgid "Could not find %{resource}, please set option %{switches}."
500
- msgstr ""
491
+ msgstr "Impossibile trovare %{resource}, impostare l'opzione %{switches}."
501
492
 
502
- #: ../lib/hammer_cli_foreman/commands.rb:195
493
+ #: ../lib/hammer_cli_foreman/commands.rb:199
503
494
  msgid "Could not find %{resource}, please set one of options %{switches}."
504
- msgstr ""
495
+ msgstr "Impossibile trovare %{resource}, impostare una delle opzioni %{switches}."
505
496
 
506
- #: ../lib/hammer_cli_foreman/commands.rb:517
497
+ #: ../lib/hammer_cli_foreman/commands.rb:521
507
498
  msgid "Associate a resource"
508
499
  msgstr "Associare una risorsa"
509
500
 
510
- #: ../lib/hammer_cli_foreman/commands.rb:539
501
+ #: ../lib/hammer_cli_foreman/commands.rb:543
511
502
  msgid "Disassociate a resource"
512
503
  msgstr "Rimuovere associazione di una risorsa"
513
504
 
514
- #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:327 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
505
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:334 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
515
506
  msgid "Value"
516
507
  msgstr "Valore"
517
508
 
@@ -551,7 +542,7 @@ msgstr "Manipolazione parametri globali."
551
542
  msgid "Provider"
552
543
  msgstr "Provider"
553
544
 
554
- #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:201 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
545
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
555
546
  msgid "UUID"
556
547
  msgstr "UUID"
557
548
 
@@ -605,19 +596,23 @@ msgstr "Impossibile rimuovere la risorsa di calcolo"
605
596
 
606
597
  #: ../lib/hammer_cli_foreman/credentials.rb:26
607
598
  msgid "[Foreman] Username: "
608
- msgstr ""
599
+ msgstr "Nome utente [Foreman]: "
609
600
 
610
601
  #: ../lib/hammer_cli_foreman/credentials.rb:33
611
602
  msgid "[Foreman] Password for %s: "
603
+ msgstr "[Foreman] Password per %s: "
604
+
605
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
606
+ msgid "Use the default organization and/or location from the server"
612
607
  msgstr ""
613
608
 
614
609
  #: ../lib/hammer_cli_foreman/domain.rb:6
615
610
  msgid "ID of DNS proxy to use within this domain"
616
- msgstr ""
611
+ msgstr "ID di DNS proxy da usare all'interno di questo dominio"
617
612
 
618
613
  #: ../lib/hammer_cli_foreman/domain.rb:7
619
614
  msgid "Name of DNS proxy to use within this domain"
620
- msgstr ""
615
+ msgstr "Nome di DNS proxy da usare all'interno di questo dominio"
621
616
 
622
617
  #: ../lib/hammer_cli_foreman/domain.rb:43
623
618
  msgid "DNS Id"
@@ -705,19 +700,19 @@ msgstr "Non consentito - il server ha rifiutato di processare la richiesta"
705
700
 
706
701
  #: ../lib/hammer_cli_foreman/exception_handler.rb:75
707
702
  msgid "Could not load the API description from the server"
708
- msgstr ""
703
+ msgstr "Impossibile caricare la descrizione API dal server"
709
704
 
710
705
  #: ../lib/hammer_cli_foreman/exception_handler.rb:76
711
706
  msgid "is the server down?"
712
- msgstr ""
707
+ msgstr "il server non è attivo?"
713
708
 
714
709
  #: ../lib/hammer_cli_foreman/exception_handler.rb:77
715
710
  msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
716
- msgstr ""
711
+ msgstr "'%s' era in esecuzione sul server durante l'utilizzo di apipie cache? (impostazioni tipiche di produzione)"
717
712
 
718
713
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
719
714
  msgid "View and manage user group's external user groups"
720
- msgstr ""
715
+ msgstr "Visualizza e gestisci i gruppi di utenti esterni del gruppo di utenti"
721
716
 
722
717
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
723
718
  msgid "Auth source"
@@ -725,37 +720,37 @@ msgstr "Sorgente di autenticazione"
725
720
 
726
721
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:39
727
722
  msgid "Refresh external user group"
728
- msgstr ""
723
+ msgstr "Aggiorna il gruppo di utenti esterno"
729
724
 
730
725
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:57
731
726
  msgid "External user group created"
732
- msgstr ""
727
+ msgstr "Gruppo di utenti esterno creato"
733
728
 
734
729
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:58
735
730
  msgid "Could not create external user group"
736
- msgstr ""
731
+ msgstr "Impossibile creare il gruppo di utenti esterno"
737
732
 
738
733
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:65
739
734
  msgid "External user group updated"
740
- msgstr ""
735
+ msgstr "Gruppo di utenti esterno aggiornato"
741
736
 
742
737
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:66
743
738
  msgid "Could not update external user group"
744
- msgstr ""
739
+ msgstr "Impossibile aggiornare il gruppo di utenti esterno"
745
740
 
746
741
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:73
747
742
  msgid "External user group deleted"
748
- msgstr ""
743
+ msgstr "Gruppo di utenti esterno rimosso"
749
744
 
750
745
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:74
751
746
  msgid "Could not delete the external user group"
752
- msgstr ""
747
+ msgstr "Impossibile cancellare il gruppo di utenti esterno"
753
748
 
754
749
  #: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11 ../lib/hammer_cli_foreman/report.rb:31
755
750
  msgid "Host"
756
751
  msgstr "Host"
757
752
 
758
- #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
753
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
759
754
  msgid "Fact"
760
755
  msgstr "Evento"
761
756
 
@@ -779,11 +774,11 @@ msgstr "Ruolo"
779
774
  msgid "Permissions"
780
775
  msgstr "Permessi"
781
776
 
782
- #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:33
777
+ #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
783
778
  msgid "(Miscellaneous)"
784
779
  msgstr "(Altro)"
785
780
 
786
- #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
781
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
787
782
  msgid "none"
788
783
  msgstr "nessuno"
789
784
 
@@ -817,340 +812,331 @@ msgstr "Risorsa"
817
812
 
818
813
  #: ../lib/hammer_cli_foreman/host.rb:15
819
814
  msgid "Login of the owner"
820
- msgstr ""
815
+ msgstr "Login del proprietario"
821
816
 
822
817
  #: ../lib/hammer_cli_foreman/host.rb:17
823
818
  msgid "ID of the owner"
824
- msgstr ""
819
+ msgstr "ID del proprietario"
825
820
 
826
- #: ../lib/hammer_cli_foreman/host.rb:42
821
+ #: ../lib/hammer_cli_foreman/host.rb:44
827
822
  msgid "Host parameters."
828
823
  msgstr "Parametri host"
829
824
 
830
- #: ../lib/hammer_cli_foreman/host.rb:44
825
+ #: ../lib/hammer_cli_foreman/host.rb:46
831
826
  msgid "Compute resource attributes."
832
827
  msgstr "Attributi risorsa di colacolo."
833
828
 
834
- #: ../lib/hammer_cli_foreman/host.rb:46
829
+ #: ../lib/hammer_cli_foreman/host.rb:48
835
830
  msgid "Volume parameters"
836
831
  msgstr "Parametri del volume"
837
832
 
838
- #: ../lib/hammer_cli_foreman/host.rb:48
833
+ #: ../lib/hammer_cli_foreman/host.rb:50
839
834
  msgid "Interface parameters."
840
835
  msgstr "Parametri dell'interfaccia."
841
836
 
842
- #: ../lib/hammer_cli_foreman/host.rb:62
837
+ #: ../lib/hammer_cli_foreman/host.rb:64
843
838
  msgid "Enter the root password for the host:"
844
839
  msgstr ""
845
840
 
846
- #: ../lib/hammer_cli_foreman/host.rb:146
841
+ #: ../lib/hammer_cli_foreman/host.rb:153
847
842
  msgid "At least one interface must be set as primary"
848
843
  msgstr ""
849
844
 
850
- #: ../lib/hammer_cli_foreman/host.rb:149
845
+ #: ../lib/hammer_cli_foreman/host.rb:156
851
846
  msgid "At least one interface must be set as provision"
852
847
  msgstr ""
853
848
 
854
- #: ../lib/hammer_cli_foreman/host.rb:165 ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
849
+ #: ../lib/hammer_cli_foreman/host.rb:172 ../lib/hammer_cli_foreman/host.rb:248 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
855
850
  msgid "Operating System"
856
851
  msgstr "Sistema Operativo"
857
852
 
858
- #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
853
+ #: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
859
854
  msgid "Host Group"
860
855
  msgstr "Gruppo di host"
861
856
 
862
- #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
857
+ #: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
863
858
  msgid "IP"
864
859
  msgstr "IP"
865
860
 
866
- #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
861
+ #: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
867
862
  msgid "MAC"
868
863
  msgstr "MAC"
869
864
 
870
- #: ../lib/hammer_cli_foreman/host.rb:178
865
+ #: ../lib/hammer_cli_foreman/host.rb:185
871
866
  msgid "Bare Metal"
872
867
  msgstr ""
873
868
 
874
- #: ../lib/hammer_cli_foreman/host.rb:203
875
- #, fuzzy
869
+ #: ../lib/hammer_cli_foreman/host.rb:210
876
870
  msgid "Organization"
877
- msgstr "Organizzazioni"
871
+ msgstr ""
878
872
 
879
- #: ../lib/hammer_cli_foreman/host.rb:204
880
- #, fuzzy
873
+ #: ../lib/hammer_cli_foreman/host.rb:211
881
874
  msgid "Location"
882
- msgstr "Posizioni"
875
+ msgstr ""
883
876
 
884
- #: ../lib/hammer_cli_foreman/host.rb:206
877
+ #: ../lib/hammer_cli_foreman/host.rb:213
885
878
  msgid "Compute Resource"
886
879
  msgstr "Risorsa di calcolo"
887
880
 
888
- #: ../lib/hammer_cli_foreman/host.rb:207
889
- #, fuzzy
881
+ #: ../lib/hammer_cli_foreman/host.rb:214
890
882
  msgid "Compute Profile"
891
- msgstr "ComputeProfile"
883
+ msgstr ""
892
884
 
893
- #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/hostgroup.rb:61
885
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
894
886
  msgid "Environment"
895
887
  msgstr "Ambiente"
896
888
 
897
- #: ../lib/hammer_cli_foreman/host.rb:209
898
- #, fuzzy
889
+ #: ../lib/hammer_cli_foreman/host.rb:216
899
890
  msgid "Puppet CA Id"
900
- msgstr "ID CA Proxy del Puppet"
891
+ msgstr ""
901
892
 
902
- #: ../lib/hammer_cli_foreman/host.rb:210
903
- #, fuzzy
893
+ #: ../lib/hammer_cli_foreman/host.rb:217
904
894
  msgid "Puppet Master Id"
905
- msgstr "ID Proxy master del Puppet"
895
+ msgstr ""
906
896
 
907
- #: ../lib/hammer_cli_foreman/host.rb:211
897
+ #: ../lib/hammer_cli_foreman/host.rb:218
908
898
  msgid "Cert name"
909
899
  msgstr "Nome certificato"
910
900
 
911
- #: ../lib/hammer_cli_foreman/host.rb:212 ../lib/hammer_cli_foreman/interface.rb:51
901
+ #: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
912
902
  msgid "Managed"
913
903
  msgstr "Gestito"
914
904
 
915
- #: ../lib/hammer_cli_foreman/host.rb:214
905
+ #: ../lib/hammer_cli_foreman/host.rb:221
916
906
  msgid "Installed at"
917
907
  msgstr "Installato"
918
908
 
919
- #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
909
+ #: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
920
910
  msgid "Last report"
921
911
  msgstr "Ultimo riporto"
922
912
 
923
- #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
913
+ #: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
924
914
  msgid "Network"
925
915
  msgstr "Rete"
926
916
 
927
- #: ../lib/hammer_cli_foreman/host.rb:220 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
917
+ #: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
928
918
  msgid "Subnet"
929
919
  msgstr "Sottorete"
930
920
 
931
- #: ../lib/hammer_cli_foreman/host.rb:221 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
921
+ #: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
932
922
  msgid "Domain"
933
923
  msgstr "Dominio"
934
924
 
935
- #: ../lib/hammer_cli_foreman/host.rb:222
925
+ #: ../lib/hammer_cli_foreman/host.rb:229
936
926
  msgid "Service provider"
937
927
  msgstr ""
938
928
 
939
- #: ../lib/hammer_cli_foreman/host.rb:223
929
+ #: ../lib/hammer_cli_foreman/host.rb:230
940
930
  msgid "SP Name"
941
931
  msgstr "Nome SP"
942
932
 
943
- #: ../lib/hammer_cli_foreman/host.rb:224
933
+ #: ../lib/hammer_cli_foreman/host.rb:231
944
934
  msgid "SP IP"
945
935
  msgstr "IP SP"
946
936
 
947
- #: ../lib/hammer_cli_foreman/host.rb:225
937
+ #: ../lib/hammer_cli_foreman/host.rb:232
948
938
  msgid "SP MAC"
949
939
  msgstr "MCA SP"
950
940
 
951
- #: ../lib/hammer_cli_foreman/host.rb:226
941
+ #: ../lib/hammer_cli_foreman/host.rb:233
952
942
  msgid "SP Subnet"
953
943
  msgstr "Sottorete SP"
954
944
 
955
- #: ../lib/hammer_cli_foreman/host.rb:230
956
- #, fuzzy
945
+ #: ../lib/hammer_cli_foreman/host.rb:237
957
946
  msgid "Network interfaces"
958
- msgstr "Interfacce di rete BMC"
947
+ msgstr ""
959
948
 
960
- #: ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
949
+ #: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
961
950
  msgid "Identifier"
962
951
  msgstr ""
963
952
 
964
- #: ../lib/hammer_cli_foreman/host.rb:233 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
953
+ #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
965
954
  msgid "Type"
966
955
  msgstr "Tipo"
967
956
 
968
- #: ../lib/hammer_cli_foreman/host.rb:234 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
957
+ #: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
969
958
  msgid "MAC address"
970
959
  msgstr ""
971
960
 
972
- #: ../lib/hammer_cli_foreman/host.rb:235 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
961
+ #: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
973
962
  msgid "IP address"
974
963
  msgstr ""
975
964
 
976
- #: ../lib/hammer_cli_foreman/host.rb:236
965
+ #: ../lib/hammer_cli_foreman/host.rb:243
977
966
  msgid "FQDN"
978
967
  msgstr ""
979
968
 
980
- #: ../lib/hammer_cli_foreman/host.rb:239
981
- #, fuzzy
969
+ #: ../lib/hammer_cli_foreman/host.rb:246
982
970
  msgid "Operating system"
983
- msgstr "Sistemi operativi"
971
+ msgstr ""
984
972
 
985
- #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
973
+ #: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
986
974
  msgid "Architecture"
987
975
  msgstr "Architettura"
988
976
 
989
- #: ../lib/hammer_cli_foreman/host.rb:244
977
+ #: ../lib/hammer_cli_foreman/host.rb:251
990
978
  msgid "Build"
991
979
  msgstr "Compilazione"
992
980
 
993
- #: ../lib/hammer_cli_foreman/host.rb:245 ../lib/hammer_cli_foreman/hostgroup.rb:77
981
+ #: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
994
982
  msgid "Medium"
995
983
  msgstr "Supporto"
996
984
 
997
- #: ../lib/hammer_cli_foreman/host.rb:246 ../lib/hammer_cli_foreman/hostgroup.rb:76
985
+ #: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
998
986
  msgid "Partition Table"
999
987
  msgstr "Tabella delle partizioni"
1000
988
 
1001
- #: ../lib/hammer_cli_foreman/host.rb:247
1002
- #, fuzzy
989
+ #: ../lib/hammer_cli_foreman/host.rb:254
1003
990
  msgid "Custom partition table"
1004
- msgstr "Associa una tabella delle partizioni"
991
+ msgstr ""
1005
992
 
1006
- #: ../lib/hammer_cli_foreman/host.rb:250
993
+ #: ../lib/hammer_cli_foreman/host.rb:257
1007
994
  msgid "Image"
1008
995
  msgstr "Immagine"
1009
996
 
1010
- #: ../lib/hammer_cli_foreman/host.rb:251
997
+ #: ../lib/hammer_cli_foreman/host.rb:258
1011
998
  msgid "Image file"
1012
999
  msgstr "File immagine"
1013
1000
 
1014
- #: ../lib/hammer_cli_foreman/host.rb:252
1001
+ #: ../lib/hammer_cli_foreman/host.rb:259
1015
1002
  msgid "Use image"
1016
1003
  msgstr "Usa immagine"
1017
1004
 
1018
- #: ../lib/hammer_cli_foreman/host.rb:258
1005
+ #: ../lib/hammer_cli_foreman/host.rb:265
1019
1006
  msgid "Additional info"
1020
1007
  msgstr ""
1021
1008
 
1022
- #: ../lib/hammer_cli_foreman/host.rb:259
1009
+ #: ../lib/hammer_cli_foreman/host.rb:266
1023
1010
  msgid "Owner Id"
1024
1011
  msgstr "ID proprietario"
1025
1012
 
1026
- #: ../lib/hammer_cli_foreman/host.rb:260
1013
+ #: ../lib/hammer_cli_foreman/host.rb:267
1027
1014
  msgid "Owner Type"
1028
1015
  msgstr "Tipo di proprietario"
1029
1016
 
1030
- #: ../lib/hammer_cli_foreman/host.rb:261
1017
+ #: ../lib/hammer_cli_foreman/host.rb:268
1031
1018
  msgid "Enabled"
1032
1019
  msgstr "Abilitato"
1033
1020
 
1034
- #: ../lib/hammer_cli_foreman/host.rb:262 ../lib/hammer_cli_foreman/hostgroup.rb:62
1021
+ #: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
1035
1022
  msgid "Model"
1036
1023
  msgstr "Modello"
1037
1024
 
1038
- #: ../lib/hammer_cli_foreman/host.rb:263
1025
+ #: ../lib/hammer_cli_foreman/host.rb:270
1039
1026
  msgid "Comment"
1040
1027
  msgstr "Commento"
1041
1028
 
1042
- #: ../lib/hammer_cli_foreman/host.rb:276
1029
+ #: ../lib/hammer_cli_foreman/host.rb:283
1043
1030
  msgid "Status"
1044
1031
  msgstr "Stato"
1045
1032
 
1046
- #: ../lib/hammer_cli_foreman/host.rb:277
1033
+ #: ../lib/hammer_cli_foreman/host.rb:284
1047
1034
  msgid "Power"
1048
1035
  msgstr "Alimentazione"
1049
1036
 
1050
- #: ../lib/hammer_cli_foreman/host.rb:313
1037
+ #: ../lib/hammer_cli_foreman/host.rb:320
1051
1038
  msgid "Puppet run triggered"
1052
1039
  msgstr "Esecuzione puppet attivata"
1053
1040
 
1054
- #: ../lib/hammer_cli_foreman/host.rb:366
1041
+ #: ../lib/hammer_cli_foreman/host.rb:373
1055
1042
  msgid "Host created"
1056
1043
  msgstr "Host creato"
1057
1044
 
1058
- #: ../lib/hammer_cli_foreman/host.rb:367
1045
+ #: ../lib/hammer_cli_foreman/host.rb:374
1059
1046
  msgid "Could not create the host"
1060
1047
  msgstr "Impossibile creare l'host"
1061
1048
 
1062
- #: ../lib/hammer_cli_foreman/host.rb:388
1049
+ #: ../lib/hammer_cli_foreman/host.rb:395
1063
1050
  msgid "Host updated"
1064
1051
  msgstr "Host aggiornato"
1065
1052
 
1066
- #: ../lib/hammer_cli_foreman/host.rb:389
1053
+ #: ../lib/hammer_cli_foreman/host.rb:396
1067
1054
  msgid "Could not update the host"
1068
1055
  msgstr "Impossibile aggiornare l'host"
1069
1056
 
1070
- #: ../lib/hammer_cli_foreman/host.rb:396
1057
+ #: ../lib/hammer_cli_foreman/host.rb:403
1071
1058
  msgid "Host deleted"
1072
1059
  msgstr "Host rimosso"
1073
1060
 
1074
- #: ../lib/hammer_cli_foreman/host.rb:397
1061
+ #: ../lib/hammer_cli_foreman/host.rb:404
1075
1062
  msgid "Could not delete the host"
1076
1063
  msgstr "Impossibile rimuovere l'host"
1077
1064
 
1078
- #: ../lib/hammer_cli_foreman/host.rb:404
1065
+ #: ../lib/hammer_cli_foreman/host.rb:411
1079
1066
  msgid "Create or update parameter for a host."
1080
1067
  msgstr "Creare o aggiornare il parametro per un host."
1081
1068
 
1082
- #: ../lib/hammer_cli_foreman/host.rb:406
1069
+ #: ../lib/hammer_cli_foreman/host.rb:413
1083
1070
  msgid "Host parameter updated"
1084
1071
  msgstr "Parametro host aggiornato"
1085
1072
 
1086
- #: ../lib/hammer_cli_foreman/host.rb:407
1073
+ #: ../lib/hammer_cli_foreman/host.rb:414
1087
1074
  msgid "New host parameter created"
1088
1075
  msgstr "Creato nuovo parametro dell'host"
1089
1076
 
1090
- #: ../lib/hammer_cli_foreman/host.rb:408
1077
+ #: ../lib/hammer_cli_foreman/host.rb:415
1091
1078
  msgid "Could not set host parameter"
1092
1079
  msgstr "Impossibile impostare il parametro dell'host"
1093
1080
 
1094
- #: ../lib/hammer_cli_foreman/host.rb:420
1081
+ #: ../lib/hammer_cli_foreman/host.rb:427
1095
1082
  msgid "Delete parameter for a host."
1096
1083
  msgstr "Cancella il parametro per un host."
1097
1084
 
1098
- #: ../lib/hammer_cli_foreman/host.rb:422
1085
+ #: ../lib/hammer_cli_foreman/host.rb:429
1099
1086
  msgid "Host parameter deleted"
1100
1087
  msgstr "Parametro host cancellato"
1101
1088
 
1102
- #: ../lib/hammer_cli_foreman/host.rb:437
1089
+ #: ../lib/hammer_cli_foreman/host.rb:444
1103
1090
  msgid "Power a host on"
1104
1091
  msgstr "Attiva un host"
1105
1092
 
1106
- #: ../lib/hammer_cli_foreman/host.rb:438
1093
+ #: ../lib/hammer_cli_foreman/host.rb:445
1107
1094
  msgid "The host is starting."
1108
1095
  msgstr "L'host è stato avviato."
1109
1096
 
1110
- #: ../lib/hammer_cli_foreman/host.rb:455
1097
+ #: ../lib/hammer_cli_foreman/host.rb:462
1111
1098
  msgid "Force turning off a host"
1112
1099
  msgstr "Forza la disattivazione di un host."
1113
1100
 
1114
- #: ../lib/hammer_cli_foreman/host.rb:460
1101
+ #: ../lib/hammer_cli_foreman/host.rb:467
1115
1102
  msgid "Power a host off"
1116
1103
  msgstr "Disattiva un host"
1117
1104
 
1118
- #: ../lib/hammer_cli_foreman/host.rb:472
1105
+ #: ../lib/hammer_cli_foreman/host.rb:479
1119
1106
  msgid "Power off forced."
1120
1107
  msgstr "Disattivazione forzata."
1121
1108
 
1122
- #: ../lib/hammer_cli_foreman/host.rb:474
1109
+ #: ../lib/hammer_cli_foreman/host.rb:481
1123
1110
  msgid "Powering the host off."
1124
1111
  msgstr "Disattivazione host in corso."
1125
1112
 
1126
- #: ../lib/hammer_cli_foreman/host.rb:491
1113
+ #: ../lib/hammer_cli_foreman/host.rb:498
1127
1114
  msgid "Reboot a host"
1128
1115
  msgstr "Riavvia un host"
1129
1116
 
1130
- #: ../lib/hammer_cli_foreman/host.rb:492
1117
+ #: ../lib/hammer_cli_foreman/host.rb:499
1131
1118
  msgid "Host reboot started."
1132
1119
  msgstr "Riavvio host iniziato."
1133
1120
 
1134
1121
  #: ../lib/hammer_cli_foreman/hostgroup.rb:10
1135
1122
  msgid "List of puppetclass ids"
1136
- msgstr ""
1123
+ msgstr "Elenco di id puppetclass"
1137
1124
 
1138
1125
  #: ../lib/hammer_cli_foreman/hostgroup.rb:12
1139
1126
  msgid "Name of puppet CA proxy"
1140
- msgstr ""
1127
+ msgstr "Nome proxy CA del puppet"
1141
1128
 
1142
1129
  #: ../lib/hammer_cli_foreman/hostgroup.rb:13
1143
1130
  msgid "Name of puppet proxy"
1144
- msgstr ""
1131
+ msgstr "Nome proxy del puppet"
1145
1132
 
1146
1133
  #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1147
1134
  msgid "Name of parent hostgroup"
1148
- msgstr ""
1135
+ msgstr "Nome dell'hostgroup genitore"
1149
1136
 
1150
1137
  #: ../lib/hammer_cli_foreman/hostgroup.rb:17
1151
- #, fuzzy
1152
1138
  msgid "Root password"
1153
- msgstr "Password BMC"
1139
+ msgstr ""
1154
1140
 
1155
1141
  #: ../lib/hammer_cli_foreman/hostgroup.rb:23
1156
1142
  msgid "Enter the root password for the host group:"
@@ -1158,7 +1144,7 @@ msgstr ""
1158
1144
 
1159
1145
  #: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
1160
1146
  msgid "Title"
1161
- msgstr ""
1147
+ msgstr "Qualifica"
1162
1148
 
1163
1149
  #: ../lib/hammer_cli_foreman/hostgroup.rb:78
1164
1150
  msgid "Puppet CA Proxy Id"
@@ -1174,7 +1160,7 @@ msgstr "ComputeProfile"
1174
1160
 
1175
1161
  #: ../lib/hammer_cli_foreman/hostgroup.rb:84
1176
1162
  msgid "Parent Id"
1177
- msgstr ""
1163
+ msgstr "ID genitore"
1178
1164
 
1179
1165
  #: ../lib/hammer_cli_foreman/hostgroup.rb:94
1180
1166
  msgid "Hostgroup created"
@@ -1245,9 +1231,8 @@ msgid "Host name"
1245
1231
  msgstr "Hostname"
1246
1232
 
1247
1233
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1248
- #, fuzzy
1249
1234
  msgid "Hostgroup title"
1250
- msgstr "Nome hostgroup"
1235
+ msgstr ""
1251
1236
 
1252
1237
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1253
1238
  msgid "Hostgroup name"
@@ -1271,7 +1256,7 @@ msgstr "Nome organizzazione"
1271
1256
 
1272
1257
  #: ../lib/hammer_cli_foreman/id_resolver.rb:50
1273
1258
  msgid "Operating system title"
1274
- msgstr ""
1259
+ msgstr "Titolo sistema operativo"
1275
1260
 
1276
1261
  #: ../lib/hammer_cli_foreman/id_resolver.rb:52
1277
1262
  msgid "Partition table name"
@@ -1294,9 +1279,8 @@ msgid "User role name"
1294
1279
  msgstr "Nome ruolo utente"
1295
1280
 
1296
1281
  #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1297
- #, fuzzy
1298
1282
  msgid "Setting name"
1299
- msgstr "Nome certificato"
1283
+ msgstr ""
1300
1284
 
1301
1285
  #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1302
1286
  msgid "Subnet name"
@@ -1315,9 +1299,8 @@ msgid "Smart class parameter name"
1315
1299
  msgstr "Nome parametro classe smart"
1316
1300
 
1317
1301
  #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1318
- #, fuzzy
1319
1302
  msgid "Smart variable name"
1320
- msgstr "Variabili smart"
1303
+ msgstr ""
1321
1304
 
1322
1305
  #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1323
1306
  msgid "Name to search by"
@@ -1325,14 +1308,15 @@ msgstr "Nome per la ricerca"
1325
1308
 
1326
1309
  #: ../lib/hammer_cli_foreman/id_resolver.rb:153
1327
1310
  msgid "one of %s not found"
1328
- msgstr ""
1311
+ msgstr "uno di %s non trovato"
1329
1312
 
1330
1313
  #: ../lib/hammer_cli_foreman/id_resolver.rb:200
1331
1314
  msgid "%s not found"
1332
1315
  msgstr "%s non trovato"
1333
1316
 
1334
1317
  #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1335
- msgid "%s found more than once"
1318
+ #, fuzzy
1319
+ msgid "found more than one %s"
1336
1320
  msgstr "%s trovato più di una volta"
1337
1321
 
1338
1322
  #: ../lib/hammer_cli_foreman/id_resolver.rb:212
@@ -1384,28 +1368,24 @@ msgid "View and manage host's network interfaces"
1384
1368
  msgstr ""
1385
1369
 
1386
1370
  #: ../lib/hammer_cli_foreman/interface.rb:10
1387
- #, fuzzy
1388
1371
  msgid "primary"
1389
- msgstr "DNS primario"
1372
+ msgstr ""
1390
1373
 
1391
1374
  #: ../lib/hammer_cli_foreman/interface.rb:11
1392
1375
  msgid "provision"
1393
1376
  msgstr ""
1394
1377
 
1395
1378
  #: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
1396
- #, fuzzy
1397
1379
  msgid "DNS name"
1398
- msgstr "Nome certificato"
1380
+ msgstr ""
1399
1381
 
1400
1382
  #: ../lib/hammer_cli_foreman/interface.rb:52
1401
- #, fuzzy
1402
1383
  msgid "Primary"
1403
- msgstr "DNS primario"
1384
+ msgstr ""
1404
1385
 
1405
1386
  #: ../lib/hammer_cli_foreman/interface.rb:53
1406
- #, fuzzy
1407
1387
  msgid "Provision"
1408
- msgstr "Provider"
1388
+ msgstr ""
1409
1389
 
1410
1390
  #: ../lib/hammer_cli_foreman/interface.rb:54
1411
1391
  msgid "Virtual"
@@ -1428,9 +1408,8 @@ msgid "Bond"
1428
1408
  msgstr ""
1429
1409
 
1430
1410
  #: ../lib/hammer_cli_foreman/interface.rb:64
1431
- #, fuzzy
1432
1411
  msgid "Mode"
1433
- msgstr "Modello"
1412
+ msgstr ""
1434
1413
 
1435
1414
  #: ../lib/hammer_cli_foreman/interface.rb:65
1436
1415
  msgid "Attached devices"
@@ -1449,39 +1428,32 @@ msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-base
1449
1428
  msgstr ""
1450
1429
 
1451
1430
  #: ../lib/hammer_cli_foreman/interface.rb:128
1452
- #, fuzzy
1453
1431
  msgid "Interface created"
1454
- msgstr "Immagine creata"
1432
+ msgstr ""
1455
1433
 
1456
1434
  #: ../lib/hammer_cli_foreman/interface.rb:129
1457
- #, fuzzy
1458
1435
  msgid "Could not create the interface"
1459
- msgstr "Impossibile creare l'immagine"
1436
+ msgstr ""
1460
1437
 
1461
1438
  #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1462
- #, fuzzy
1463
1439
  msgid "Compute resource specific attributes."
1464
- msgstr "Attributi risorsa di colacolo."
1440
+ msgstr ""
1465
1441
 
1466
1442
  #: ../lib/hammer_cli_foreman/interface.rb:141
1467
- #, fuzzy
1468
1443
  msgid "Interface updated"
1469
- msgstr "Immagine aggiornata"
1444
+ msgstr ""
1470
1445
 
1471
1446
  #: ../lib/hammer_cli_foreman/interface.rb:142
1472
- #, fuzzy
1473
1447
  msgid "Could not update the interface"
1474
- msgstr "Impossibile aggiornare l'immagine"
1448
+ msgstr ""
1475
1449
 
1476
1450
  #: ../lib/hammer_cli_foreman/interface.rb:154
1477
- #, fuzzy
1478
1451
  msgid "Interface deleted"
1479
- msgstr "Immagine cancellata"
1452
+ msgstr ""
1480
1453
 
1481
1454
  #: ../lib/hammer_cli_foreman/interface.rb:155
1482
- #, fuzzy
1483
1455
  msgid "Could not delete the interface"
1484
- msgstr "Impossibile rimuovere l'immagine"
1456
+ msgstr ""
1485
1457
 
1486
1458
  #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
1487
1459
  msgid "Location numeric id to search by"
@@ -1515,6 +1487,40 @@ msgstr "Posizione cancellata"
1515
1487
  msgid "Could not delete the location"
1516
1488
  msgstr "Impossibile cancellare la posizione"
1517
1489
 
1490
+ #: ../lib/hammer_cli_foreman/location.rb:86
1491
+ #, fuzzy
1492
+ msgid "Create or update parameter for a location."
1493
+ msgstr "Crea o aggiorna il parametro per un dominio."
1494
+
1495
+ #: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
1496
+ #, fuzzy
1497
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1498
+ msgstr "Parametro [%{name}] aggiornato a [%{value}]."
1499
+
1500
+ #: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
1501
+ msgid "Parameter [%{name}] created with value [%{value}]"
1502
+ msgstr ""
1503
+
1504
+ #: ../lib/hammer_cli_foreman/location.rb:90
1505
+ #, fuzzy
1506
+ msgid "Could not set location parameter"
1507
+ msgstr "Impossibile impostare il parametro del dominio"
1508
+
1509
+ #: ../lib/hammer_cli_foreman/location.rb:97
1510
+ #, fuzzy
1511
+ msgid "Delete parameter for a location."
1512
+ msgstr "Rimuovi parametro di un dominio."
1513
+
1514
+ #: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
1515
+ #, fuzzy
1516
+ msgid "Parameter [%{name}] deleted"
1517
+ msgstr "Parametro globale [%{name}] rimosso."
1518
+
1519
+ #: ../lib/hammer_cli_foreman/location.rb:100
1520
+ #, fuzzy
1521
+ msgid "Could not delete location parameter"
1522
+ msgstr "Impossibile impostare il parametro del dominio"
1523
+
1518
1524
  #: ../lib/hammer_cli_foreman/media.rb:11
1519
1525
  msgid "Path"
1520
1526
  msgstr "Percorso"
@@ -1689,7 +1695,7 @@ msgstr "Impossibile rimuovere il modello predefinito"
1689
1695
 
1690
1696
  #: ../lib/hammer_cli_foreman/operating_system.rb:178
1691
1697
  msgid "Default template of type %s not found"
1692
- msgstr ""
1698
+ msgstr "Template predefinito di tipo %s non trovato"
1693
1699
 
1694
1700
  #: ../lib/hammer_cli_foreman/organization.rb:37 ../lib/hammer_cli_foreman/references.rb:15
1695
1701
  msgid "Locations"
@@ -1719,6 +1725,25 @@ msgstr "Organizzazione rimossa"
1719
1725
  msgid "Could not delete the organization"
1720
1726
  msgstr "Impossibile rimuovere l'organizzazione"
1721
1727
 
1728
+ #: ../lib/hammer_cli_foreman/organization.rb:87
1729
+ #, fuzzy
1730
+ msgid "Create or update parameter for an organization."
1731
+ msgstr "Crea o aggiorna il parametro per un dominio."
1732
+
1733
+ #: ../lib/hammer_cli_foreman/organization.rb:91
1734
+ #, fuzzy
1735
+ msgid "Could not set organization parameter"
1736
+ msgstr "Impossibile impostare il parametro del dominio"
1737
+
1738
+ #: ../lib/hammer_cli_foreman/organization.rb:98
1739
+ #, fuzzy
1740
+ msgid "Delete parameter for an organization."
1741
+ msgstr "Rimuovi parametro di un dominio."
1742
+
1743
+ #: ../lib/hammer_cli_foreman/organization.rb:101
1744
+ msgid "Could not delete organization parameter"
1745
+ msgstr ""
1746
+
1722
1747
  #: ../lib/hammer_cli_foreman/partition_table.rb:31
1723
1748
  msgid "View partition table content."
1724
1749
  msgstr "Visualizza il contenuto della tabella delle partizioni."
@@ -1833,7 +1858,7 @@ msgstr "Ruoli"
1833
1858
 
1834
1859
  #: ../lib/hammer_cli_foreman/references.rb:139
1835
1860
  msgid "External user groups"
1836
- msgstr ""
1861
+ msgstr "Gruppi utenti esterni"
1837
1862
 
1838
1863
  #: ../lib/hammer_cli_foreman/report.rb:14 ../lib/hammer_cli_foreman/report.rb:35
1839
1864
  msgid "Applied"
@@ -1931,43 +1956,54 @@ msgstr "Impossibile rimuovere il riporto"
1931
1956
  msgid "The server does not support such operation."
1932
1957
  msgstr "Il server non supporta questa operazione."
1933
1958
 
1934
- #: ../lib/hammer_cli_foreman/role.rb:23
1959
+ #: ../lib/hammer_cli_foreman/role.rb:20
1960
+ #, fuzzy
1961
+ msgid "Builtin"
1962
+ msgstr "Compilazione"
1963
+
1964
+ #: ../lib/hammer_cli_foreman/role.rb:24
1965
+ msgid "No"
1966
+ msgstr ""
1967
+
1968
+ #: ../lib/hammer_cli_foreman/role.rb:24
1969
+ msgid "Yes"
1970
+ msgstr ""
1971
+
1972
+ #: ../lib/hammer_cli_foreman/role.rb:36
1935
1973
  msgid "User role id"
1936
1974
  msgstr "ID ruolo utente"
1937
1975
 
1938
- #: ../lib/hammer_cli_foreman/role.rb:47
1976
+ #: ../lib/hammer_cli_foreman/role.rb:60
1939
1977
  msgid "User role [%<name>s] created"
1940
1978
  msgstr "Ruolo utente [%<name>s] creato"
1941
1979
 
1942
- #: ../lib/hammer_cli_foreman/role.rb:48
1980
+ #: ../lib/hammer_cli_foreman/role.rb:61
1943
1981
  msgid "Could not create the user role"
1944
1982
  msgstr "Impossibile creare il ruolo utente"
1945
1983
 
1946
- #: ../lib/hammer_cli_foreman/role.rb:55
1984
+ #: ../lib/hammer_cli_foreman/role.rb:68
1947
1985
  msgid "User role [%<name>s] updated"
1948
1986
  msgstr "Ruolo utente [%<name>s] aggiornato"
1949
1987
 
1950
- #: ../lib/hammer_cli_foreman/role.rb:56
1988
+ #: ../lib/hammer_cli_foreman/role.rb:69
1951
1989
  msgid "Could not update the user role"
1952
1990
  msgstr "Impossibile aggiornare il ruolo utente"
1953
1991
 
1954
- #: ../lib/hammer_cli_foreman/role.rb:63
1992
+ #: ../lib/hammer_cli_foreman/role.rb:76
1955
1993
  msgid "User role [%<name>s] deleted"
1956
1994
  msgstr "Ruolo utente [%<name>s] rimosso"
1957
1995
 
1958
- #: ../lib/hammer_cli_foreman/role.rb:64
1996
+ #: ../lib/hammer_cli_foreman/role.rb:77
1959
1997
  msgid "Could not delete the user roles"
1960
1998
  msgstr "Impossibile rimuovere questi ruoli utente"
1961
1999
 
1962
2000
  #: ../lib/hammer_cli_foreman/settings.rb:28
1963
- #, fuzzy
1964
2001
  msgid "Setting [%{name}] updated to [%{value}]"
1965
- msgstr "Parametro [%{name}] aggiornato a [%{value}]."
2002
+ msgstr ""
1966
2003
 
1967
2004
  #: ../lib/hammer_cli_foreman/settings.rb:29
1968
- #, fuzzy
1969
2005
  msgid "Could not update the setting"
1970
- msgstr "Impossibile aggiornare il dominio"
2006
+ msgstr ""
1971
2007
 
1972
2008
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
1973
2009
  msgid "Default Value"
@@ -2006,9 +2042,8 @@ msgid "Merge overrides"
2006
2042
  msgstr ""
2007
2043
 
2008
2044
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
2009
- #, fuzzy
2010
2045
  msgid "Merge default value"
2011
- msgstr "Valore predefinito"
2046
+ msgstr ""
2012
2047
 
2013
2048
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
2014
2049
  msgid "Avoid duplicates"
@@ -2019,9 +2054,8 @@ msgid "Order"
2019
2054
  msgstr "Ordine"
2020
2055
 
2021
2056
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
2022
- #, fuzzy
2023
2057
  msgid "Values"
2024
- msgstr "Valore"
2058
+ msgstr ""
2025
2059
 
2026
2060
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
2027
2061
  msgid "Match"
@@ -2052,24 +2086,20 @@ msgid "Type of the validator."
2052
2086
  msgstr "Tipo di convalidatore."
2053
2087
 
2054
2088
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
2055
- #, fuzzy
2056
2089
  msgid "Override value created"
2057
- msgstr "Valori override"
2090
+ msgstr ""
2058
2091
 
2059
2092
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133 ../lib/hammer_cli_foreman/smart_variable.rb:123
2060
- #, fuzzy
2061
2093
  msgid "Could not create the override_value"
2062
- msgstr "Impossibile creare il ruolo utente"
2094
+ msgstr ""
2063
2095
 
2064
2096
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
2065
- #, fuzzy
2066
2097
  msgid "Override value deleted"
2067
- msgstr "Valori override"
2098
+ msgstr ""
2068
2099
 
2069
2100
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:153 ../lib/hammer_cli_foreman/smart_variable.rb:136
2070
- #, fuzzy
2071
2101
  msgid "Could not delete the override value"
2072
- msgstr "Impossibile rimuovere il sistema operativo"
2102
+ msgstr ""
2073
2103
 
2074
2104
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2075
2105
  msgid "URL"
@@ -2128,32 +2158,28 @@ msgid "Smart variable [%{variable}] created"
2128
2158
  msgstr ""
2129
2159
 
2130
2160
  #: ../lib/hammer_cli_foreman/smart_variable.rb:83
2131
- #, fuzzy
2132
2161
  msgid "Could not create the smart variable"
2133
- msgstr "Impossibile creare la tabellla delle partizioni"
2162
+ msgstr ""
2134
2163
 
2135
2164
  #: ../lib/hammer_cli_foreman/smart_variable.rb:87 ../lib/hammer_cli_foreman/smart_variable.rb:101
2136
- #, fuzzy
2137
2165
  msgid "Type of the variable."
2138
- msgstr "Tipo di convalidatore."
2166
+ msgstr ""
2139
2167
 
2140
2168
  #: ../lib/hammer_cli_foreman/smart_variable.rb:96
2141
2169
  msgid "Smart variable [%{variable}] updated"
2142
2170
  msgstr ""
2143
2171
 
2144
2172
  #: ../lib/hammer_cli_foreman/smart_variable.rb:97
2145
- #, fuzzy
2146
2173
  msgid "Could not update the smart variable"
2147
- msgstr "Impossibile aggiornare la tabellla delle partizioni"
2174
+ msgstr ""
2148
2175
 
2149
2176
  #: ../lib/hammer_cli_foreman/smart_variable.rb:111
2150
2177
  msgid "Smart variable [%{variable}] deleted"
2151
2178
  msgstr ""
2152
2179
 
2153
2180
  #: ../lib/hammer_cli_foreman/smart_variable.rb:112
2154
- #, fuzzy
2155
2181
  msgid "Could not delete the smart variable"
2156
- msgstr "Impossibile rimuovere la tabellla delle partizioni"
2182
+ msgstr ""
2157
2183
 
2158
2184
  #: ../lib/hammer_cli_foreman/subnet.rb:13
2159
2185
  msgid "Mask"
@@ -2183,6 +2209,10 @@ msgstr "TFTP"
2183
2209
  msgid "DHCP"
2184
2210
  msgstr "DHCP"
2185
2211
 
2212
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2213
+ msgid "IPAM"
2214
+ msgstr ""
2215
+
2186
2216
  #: ../lib/hammer_cli_foreman/subnet.rb:30
2187
2217
  msgid "VLAN ID"
2188
2218
  msgstr "VLAN ID"
@@ -2296,14 +2326,12 @@ msgid "Last login"
2296
2326
  msgstr "Ultima registrazione"
2297
2327
 
2298
2328
  #: ../lib/hammer_cli_foreman/user.rb:33
2299
- #, fuzzy
2300
2329
  msgid "Default organization"
2301
- msgstr "Manipolazione organizzazioni."
2330
+ msgstr ""
2302
2331
 
2303
2332
  #: ../lib/hammer_cli_foreman/user.rb:34
2304
- #, fuzzy
2305
2333
  msgid "Default location"
2306
- msgstr "Manipolazione posizioni."
2334
+ msgstr ""
2307
2335
 
2308
2336
  #: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
2309
2337
  msgid "default"
@@ -2357,62 +2385,6 @@ msgstr "Gruppo utenti [%<name>s] rimosso"
2357
2385
  msgid "Could not delete the user group"
2358
2386
  msgstr "Impossibile cancellare il gruppo di utenti"
2359
2387
 
2360
- #: lib/hammer_cli_foreman/host.rb:171
2361
- #~ msgid "Disk"
2362
- #~ msgstr "Disco"
2363
-
2364
- #: lib/hammer_cli_foreman/host.rb:189
2365
- #~ msgid "Puppet Proxy Id"
2366
- #~ msgstr "ID Proxy del Puppet"
2367
-
2368
- #: lib/hammer_cli_foreman/host.rb:198
2369
- #~ msgid "BMC Network Interfaces"
2370
- #~ msgstr "Interfacce di rete BMC"
2371
-
2372
- #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
2373
- #~ msgid "Domain Id"
2374
- #~ msgstr "ID del dominio"
2375
-
2376
- #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
2377
- #~ msgid "Domain Name"
2378
- #~ msgstr "Nome del dominio"
2379
-
2380
- #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
2381
- #~ msgid "Subnet Id"
2382
- #~ msgstr "ID della sottorete"
2383
-
2384
- #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
2385
- #~ msgid "Subnet Name"
2386
- #~ msgstr "Nome sottorete"
2387
-
2388
- #: lib/hammer_cli_foreman/host.rb:207
2389
- #~ msgid "BMC Username"
2390
- #~ msgstr "Nome utente BMC"
2391
-
2392
- #: lib/hammer_cli_foreman/host.rb:208
2393
- #~ msgid "BMC Password"
2394
- #~ msgstr "Password BMC"
2395
-
2396
- #: lib/hammer_cli_foreman/host.rb:211
2397
- #~ msgid "Managed Network Interfaces"
2398
- #~ msgstr "Interfacce di rete gestite"
2399
-
2400
- #: lib/hammer_cli_foreman/commands.rb:288
2401
- #~ msgid "List next page? (%s): "
2402
- #~ msgstr "Elenca pagina successiva? (%s): "
2403
-
2404
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
2405
- #~ msgid "Count"
2406
- #~ msgstr "Conteggio"
2407
-
2408
- #: lib/hammer_cli_foreman/user.rb:47
2409
- #~ msgid "User created"
2410
- #~ msgstr "Utente creato"
2411
-
2412
- #: lib/hammer_cli_foreman/user.rb:55
2413
- #~ msgid "User updated"
2414
- #~ msgstr "Utente aggiornato"
2415
-
2416
- #: lib/hammer_cli_foreman/user.rb:63
2417
- #~ msgid "User deleted"
2418
- #~ msgstr "Utente rimosso"
2388
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:201
2389
+ #~ msgid "%s found more than once"
2390
+ #~ msgstr "%s trovato più di una volta"