hammer_cli_foreman 0.6.2 → 0.7.0

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