hammer_cli_foreman 0.4.0 → 0.5.0

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

Potentially problematic release.


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

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