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
@@ -5,137 +5,138 @@
5
5
  # Translators:
6
6
  # Dominic Cleal <dcleal@redhat.com>, 2014
7
7
  # elobato <elobatocs@gmail.com>, 2014
8
+ # elobato <elobatocs@gmail.com>, 2014
8
9
  # francis <hackgo@gmail.com>, 2014
10
+ # Sergio Ocón <sergio.ocon@redhat.com>, 2014-2015
9
11
  # Sergio Ocón <sergio.ocon@redhat.com>, 2014
10
12
  msgid ""
11
13
  msgstr ""
12
- "Project-Id-Version: hammer-cli-foreman 0.3.0\n"
14
+ "Project-Id-Version: hammer-cli-foreman 0.4.0\n"
13
15
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2015-09-21 16:50+0200\n"
15
- "PO-Revision-Date: 2015-03-22 03:37+0000\n"
16
- "Last-Translator: francis <hackgo@gmail.com>\n"
17
- "Language-Team: Spanish (http://www.transifex.com/projects/p/foreman/language/e"
18
- "s/)\n"
16
+ "POT-Creation-Date: 2015-12-11 04:48+0000\n"
17
+ "PO-Revision-Date: 2015-10-13 10:27+0000\n"
18
+ "Last-Translator: Sergio Ocón <sergio.ocon@redhat.com>\n"
19
+ "Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
20
+ "\n"
19
21
  "MIME-Version: 1.0\n"
20
22
  "Content-Type: text/plain; charset=UTF-8\n"
21
23
  "Content-Transfer-Encoding: 8bit\n"
22
24
  "Language: es\n"
23
25
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24
26
 
25
- #: ../lib/hammer_cli_foreman.rb:30
27
+ #: ../lib/hammer_cli_foreman.rb:32
26
28
  msgid "Foreman connection login/logout."
27
- msgstr "Login/logout de la conexión a Foreman"
29
+ msgstr "Ingresar/Salir de la conexión de Foreman"
28
30
 
29
- #: ../lib/hammer_cli_foreman.rb:34
31
+ #: ../lib/hammer_cli_foreman.rb:36
30
32
  msgid "Manipulate architectures."
31
33
  msgstr "Manipular arquitecturas."
32
34
 
33
- #: ../lib/hammer_cli_foreman.rb:38
35
+ #: ../lib/hammer_cli_foreman.rb:40
34
36
  msgid "Manipulate auth sources."
35
37
  msgstr "Manipular las fuentes de autenticación."
36
38
 
37
- #: ../lib/hammer_cli_foreman.rb:42
39
+ #: ../lib/hammer_cli_foreman.rb:44
38
40
  msgid "Manipulate compute resources."
39
- msgstr "Manipular recursos de computación."
41
+ msgstr "Manipular recursos de cómputo."
40
42
 
41
- #: ../lib/hammer_cli_foreman.rb:46
43
+ #: ../lib/hammer_cli_foreman.rb:48
42
44
  msgid "Manipulate domains."
43
45
  msgstr "Manipular dominios."
44
46
 
45
- #: ../lib/hammer_cli_foreman.rb:50
47
+ #: ../lib/hammer_cli_foreman.rb:52
46
48
  msgid "Manipulate environments."
47
49
  msgstr "Manipular entornos."
48
50
 
49
- #: ../lib/hammer_cli_foreman.rb:54
51
+ #: ../lib/hammer_cli_foreman.rb:56
50
52
  msgid "Search facts."
51
53
  msgstr "Buscar datos."
52
54
 
53
- #: ../lib/hammer_cli_foreman.rb:58
55
+ #: ../lib/hammer_cli_foreman.rb:60
54
56
  msgid "Manage permission filters."
55
- msgstr "Gestionar filtros de permisos."
57
+ msgstr "Administrar filtros de permisos."
56
58
 
57
- #: ../lib/hammer_cli_foreman.rb:62
59
+ #: ../lib/hammer_cli_foreman.rb:64
58
60
  msgid "Manipulate hosts."
59
61
  msgstr "Manipular hosts."
60
62
 
61
- #: ../lib/hammer_cli_foreman.rb:66
63
+ #: ../lib/hammer_cli_foreman.rb:68
62
64
  msgid "Manipulate hostgroups."
63
65
  msgstr "Manipular grupos de hosts."
64
66
 
65
- #: ../lib/hammer_cli_foreman.rb:70
67
+ #: ../lib/hammer_cli_foreman.rb:72
66
68
  msgid "Manipulate locations."
67
69
  msgstr "Manipular ubicaciones."
68
70
 
69
- #: ../lib/hammer_cli_foreman.rb:74
71
+ #: ../lib/hammer_cli_foreman.rb:76
70
72
  msgid "Manipulate installation media."
71
73
  msgstr "Manipular el medio de instalación."
72
74
 
73
- #: ../lib/hammer_cli_foreman.rb:78
75
+ #: ../lib/hammer_cli_foreman.rb:80
74
76
  msgid "Manipulate hardware models."
75
77
  msgstr "Manipular modelos de hardware."
76
78
 
77
- #: ../lib/hammer_cli_foreman.rb:82
79
+ #: ../lib/hammer_cli_foreman.rb:84
78
80
  msgid "Manipulate operating system."
79
81
  msgstr "Manipular sistemas operativos"
80
82
 
81
- #: ../lib/hammer_cli_foreman.rb:86
83
+ #: ../lib/hammer_cli_foreman.rb:88
82
84
  msgid "Manipulate organizations."
83
85
  msgstr "Manipular organizaciones."
84
86
 
85
- #: ../lib/hammer_cli_foreman.rb:90
87
+ #: ../lib/hammer_cli_foreman.rb:92
86
88
  msgid "Manipulate partition tables."
87
- msgstr "Manipular las tablas de particiones."
89
+ msgstr "Manipular tablas de particiones."
88
90
 
89
- #: ../lib/hammer_cli_foreman.rb:94
91
+ #: ../lib/hammer_cli_foreman.rb:96
90
92
  msgid "Search puppet modules."
91
- msgstr "Buscar módulos puppet."
93
+ msgstr "Buscar módulos Puppet."
92
94
 
93
- #: ../lib/hammer_cli_foreman.rb:98
95
+ #: ../lib/hammer_cli_foreman.rb:100
94
96
  msgid "Browse and read reports."
95
- msgstr "Buscar y leer informes"
97
+ msgstr "Buscar y leer informes."
96
98
 
97
- #: ../lib/hammer_cli_foreman.rb:102
99
+ #: ../lib/hammer_cli_foreman.rb:104
98
100
  msgid "Manage user roles."
99
- msgstr "Gestionar roles del usuario."
101
+ msgstr "Administrar roles de usuario."
100
102
 
101
- #: ../lib/hammer_cli_foreman.rb:106
103
+ #: ../lib/hammer_cli_foreman.rb:108
102
104
  msgid "Manipulate smart class parameters."
103
- msgstr "Manipular parámetros de smart class."
105
+ msgstr "Manipular parámetros de clase inteligente."
104
106
 
105
- #: ../lib/hammer_cli_foreman.rb:110
106
- #, fuzzy
107
+ #: ../lib/hammer_cli_foreman.rb:112
107
108
  msgid "Manipulate smart variables."
108
- msgstr "Manipular smart proxies."
109
+ msgstr "Manipular variables inteligentes."
109
110
 
110
- #: ../lib/hammer_cli_foreman.rb:114
111
+ #: ../lib/hammer_cli_foreman.rb:116
111
112
  msgid "Manipulate smart proxies."
112
- msgstr "Manipular smart proxies."
113
+ msgstr "Manipular proxis inteligentes."
113
114
 
114
- #: ../lib/hammer_cli_foreman.rb:118
115
+ #: ../lib/hammer_cli_foreman.rb:120
115
116
  msgid "Change server settings."
116
- msgstr ""
117
+ msgstr "Cambiar configuración del servidor."
117
118
 
118
- #: ../lib/hammer_cli_foreman.rb:122
119
+ #: ../lib/hammer_cli_foreman.rb:124
119
120
  msgid "Manipulate subnets."
120
121
  msgstr "Manipular subredes."
121
122
 
122
- #: ../lib/hammer_cli_foreman.rb:126
123
+ #: ../lib/hammer_cli_foreman.rb:128
123
124
  msgid "Manipulate config templates."
124
125
  msgstr "Manipular plantillas de configuración"
125
126
 
126
- #: ../lib/hammer_cli_foreman.rb:130
127
+ #: ../lib/hammer_cli_foreman.rb:132
127
128
  msgid "Manipulate users."
128
129
  msgstr "Manipular usuarios."
129
130
 
130
- #: ../lib/hammer_cli_foreman.rb:134
131
+ #: ../lib/hammer_cli_foreman.rb:136
131
132
  msgid "Manage user groups."
132
- msgstr "Gestionar grupos de usuarios."
133
+ msgstr "Administrar grupos de usuarios."
133
134
 
134
- #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:200 ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
135
+ #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:170 ../lib/hammer_cli_foreman/host.rb:207 ../lib/hammer_cli_foreman/host.rb:238 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
135
136
  msgid "Id"
136
- msgstr "Id"
137
+ msgstr "ID"
137
138
 
138
- #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:202 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
139
+ #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:171 ../lib/hammer_cli_foreman/host.rb:209 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
139
140
  msgid "Name"
140
141
  msgstr "Nombre"
141
142
 
@@ -169,7 +170,7 @@ msgstr "Asociar un grupo de hosts"
169
170
 
170
171
  #: ../lib/hammer_cli_foreman/associating_commands.rb:46
171
172
  msgid "Disassociate a hostgroup"
172
- msgstr "Desasociar un grupo de hosts"
173
+ msgstr "Disociar un grupo de hosts"
173
174
 
174
175
  #: ../lib/hammer_cli_foreman/associating_commands.rb:55
175
176
  msgid "Associate an environment"
@@ -177,7 +178,7 @@ msgstr "Asociar un entorno"
177
178
 
178
179
  #: ../lib/hammer_cli_foreman/associating_commands.rb:60
179
180
  msgid "Disassociate an environment"
180
- msgstr "Desasociar un entorno"
181
+ msgstr "Disociar un entorno"
181
182
 
182
183
  #: ../lib/hammer_cli_foreman/associating_commands.rb:69
183
184
  msgid "Associate a domain"
@@ -185,7 +186,7 @@ msgstr "Asociar un dominio"
185
186
 
186
187
  #: ../lib/hammer_cli_foreman/associating_commands.rb:74
187
188
  msgid "Disassociate a domain"
188
- msgstr "Desasociar un dominio"
189
+ msgstr "Disociar un dominio"
189
190
 
190
191
  #: ../lib/hammer_cli_foreman/associating_commands.rb:83
191
192
  msgid "Associate a medium"
@@ -193,7 +194,7 @@ msgstr "Asociar un medio"
193
194
 
194
195
  #: ../lib/hammer_cli_foreman/associating_commands.rb:88
195
196
  msgid "Disassociate a medium"
196
- msgstr "Desasociar un medio"
197
+ msgstr "Disociar un medio"
197
198
 
198
199
  #: ../lib/hammer_cli_foreman/associating_commands.rb:97
199
200
  msgid "Associate a subnet"
@@ -201,15 +202,15 @@ msgstr "Asociar una subred"
201
202
 
202
203
  #: ../lib/hammer_cli_foreman/associating_commands.rb:102
203
204
  msgid "Disassociate a subnet"
204
- msgstr "Desasociar una subred"
205
+ msgstr "Disociar una subred"
205
206
 
206
207
  #: ../lib/hammer_cli_foreman/associating_commands.rb:111
207
208
  msgid "Associate a compute resource"
208
- msgstr "Asociar un recurso de computación"
209
+ msgstr "Asociar un recurso de cómputo"
209
210
 
210
211
  #: ../lib/hammer_cli_foreman/associating_commands.rb:116
211
212
  msgid "Disassociate a compute resource"
212
- msgstr "Desasociar un recurso de computación"
213
+ msgstr "Disociar un recurso de cómputo"
213
214
 
214
215
  #: ../lib/hammer_cli_foreman/associating_commands.rb:125
215
216
  msgid "Associate a smart proxy"
@@ -217,35 +218,31 @@ msgstr "Asociar un proxy inteligente"
217
218
 
218
219
  #: ../lib/hammer_cli_foreman/associating_commands.rb:134
219
220
  msgid "Disassociate a smart proxy"
220
- msgstr "Dessociar un proxy inteligente"
221
+ msgstr "Disociar un proxy inteligente"
221
222
 
222
223
  #: ../lib/hammer_cli_foreman/associating_commands.rb:147
223
224
  msgid "Associate an user"
224
225
  msgstr "Asociar un usuario"
225
226
 
226
227
  #: ../lib/hammer_cli_foreman/associating_commands.rb:149
227
- #, fuzzy
228
228
  msgid "The user has been associated"
229
- msgstr "Se ha asociado la arquitectura"
229
+ msgstr "El usuario ha sido asociado"
230
230
 
231
231
  #: ../lib/hammer_cli_foreman/associating_commands.rb:150
232
- #, fuzzy
233
232
  msgid "Could not associate the user"
234
- msgstr "No se pudo crear el usuario"
233
+ msgstr "No se pudo asociar el usuario"
235
234
 
236
235
  #: ../lib/hammer_cli_foreman/associating_commands.rb:155
237
236
  msgid "Disassociate an user"
238
- msgstr "Desasociar un usuario"
237
+ msgstr "Disociar un usuario"
239
238
 
240
239
  #: ../lib/hammer_cli_foreman/associating_commands.rb:157
241
- #, fuzzy
242
240
  msgid "The user has been disassociated"
243
- msgstr "Se ha desasociado la arquitectura"
241
+ msgstr "El usuario se ha desasociado"
244
242
 
245
243
  #: ../lib/hammer_cli_foreman/associating_commands.rb:158
246
- #, fuzzy
247
244
  msgid "Could not disassociate the user"
248
- msgstr "No se pudo desasociar la arquitectura"
245
+ msgstr "No se pudo desasociar el usuario"
249
246
 
250
247
  #: ../lib/hammer_cli_foreman/associating_commands.rb:167
251
248
  msgid "Associate an user group"
@@ -253,25 +250,23 @@ msgstr "Asociar un grupo de usuarios"
253
250
 
254
251
  #: ../lib/hammer_cli_foreman/associating_commands.rb:171
255
252
  msgid "The user group has been associated"
256
- msgstr ""
253
+ msgstr "El grupo de usuario ha sido asociado"
257
254
 
258
255
  #: ../lib/hammer_cli_foreman/associating_commands.rb:172
259
- #, fuzzy
260
256
  msgid "Could not associate the user group"
261
- msgstr "No se pudo crear el grupo de usuarios"
257
+ msgstr "No se pudo asociar el grupo de usuario"
262
258
 
263
259
  #: ../lib/hammer_cli_foreman/associating_commands.rb:177
264
260
  msgid "Disassociate an user group"
265
- msgstr "Desasociar un grupo de usuarios"
261
+ msgstr "Disociar un grupo de usuarios"
266
262
 
267
263
  #: ../lib/hammer_cli_foreman/associating_commands.rb:181
268
264
  msgid "The user group has been disassociated"
269
- msgstr ""
265
+ msgstr "El grupo de usuario se ha desasociado"
270
266
 
271
267
  #: ../lib/hammer_cli_foreman/associating_commands.rb:182
272
- #, fuzzy
273
268
  msgid "Could not disassociate the user group"
274
- msgstr "No se pudo crear el grupo de usuarios"
269
+ msgstr "No se pudo desasociar el grupo de usuario"
275
270
 
276
271
  #: ../lib/hammer_cli_foreman/associating_commands.rb:191
277
272
  msgid "Associate a configuration template"
@@ -279,7 +274,7 @@ msgstr "Asociar una plantilla de configuración"
279
274
 
280
275
  #: ../lib/hammer_cli_foreman/associating_commands.rb:196
281
276
  msgid "Disassociate a configuration template"
282
- msgstr "Desasociar una plantilla de configuración"
277
+ msgstr "Disociar una plantilla de configuración"
283
278
 
284
279
  #: ../lib/hammer_cli_foreman/associating_commands.rb:205
285
280
  msgid "Associate an organization"
@@ -287,7 +282,7 @@ msgstr "Asociar una organización"
287
282
 
288
283
  #: ../lib/hammer_cli_foreman/associating_commands.rb:210
289
284
  msgid "Disassociate an organization"
290
- msgstr "Desasociar una organización"
285
+ msgstr "Disociar una organización"
291
286
 
292
287
  #: ../lib/hammer_cli_foreman/associating_commands.rb:219
293
288
  msgid "Associate an operating system"
@@ -303,15 +298,15 @@ msgstr "No se pudo asociar el sistema operativo"
303
298
 
304
299
  #: ../lib/hammer_cli_foreman/associating_commands.rb:228
305
300
  msgid "Disassociate an operating system"
306
- msgstr "Desasociar un sistema operativo"
301
+ msgstr "Disociar un sistema operativo"
307
302
 
308
303
  #: ../lib/hammer_cli_foreman/associating_commands.rb:230
309
304
  msgid "Operating system has been disassociated"
310
- msgstr "Se ha desasociado el sistema operativo"
305
+ msgstr "Se ha disociado el sistema operativo"
311
306
 
312
307
  #: ../lib/hammer_cli_foreman/associating_commands.rb:231
313
308
  msgid "Could not disassociate the operating system"
314
- msgstr "No se pudo desasociar el sistema operativo"
309
+ msgstr "No se pudo disociar el sistema operativo"
315
310
 
316
311
  #: ../lib/hammer_cli_foreman/associating_commands.rb:240
317
312
  msgid "Associate an architecture"
@@ -327,15 +322,15 @@ msgstr "No se pudo asociar la arquitectura"
327
322
 
328
323
  #: ../lib/hammer_cli_foreman/associating_commands.rb:249
329
324
  msgid "Disassociate an architecture"
330
- msgstr "Desasociar una arquitectura"
325
+ msgstr "Disociar una arquitectura"
331
326
 
332
327
  #: ../lib/hammer_cli_foreman/associating_commands.rb:251
333
328
  msgid "Architecture has been disassociated"
334
- msgstr "Se ha desasociado la arquitectura"
329
+ msgstr "Se ha disociado la arquitectura"
335
330
 
336
331
  #: ../lib/hammer_cli_foreman/associating_commands.rb:252
337
332
  msgid "Could not disassociate the architecture"
338
- msgstr "No se pudo desasociar la arquitectura"
333
+ msgstr "No se pudo disociar la arquitectura"
339
334
 
340
335
  #: ../lib/hammer_cli_foreman/associating_commands.rb:261
341
336
  msgid "Associate a partition table"
@@ -347,31 +342,31 @@ msgstr "Se ha asociado la tabla de particiones"
347
342
 
348
343
  #: ../lib/hammer_cli_foreman/associating_commands.rb:264
349
344
  msgid "Could not associate the partition table"
350
- msgstr "No se ha pudo asociar la tabla de particiones"
345
+ msgstr "No se pudo asociar la tabla de particiones"
351
346
 
352
347
  #: ../lib/hammer_cli_foreman/associating_commands.rb:270
353
348
  msgid "Disassociate a partition table"
354
- msgstr "Desasociar una tabla de particiones"
349
+ msgstr "Disociar una tabla de particiones"
355
350
 
356
351
  #: ../lib/hammer_cli_foreman/associating_commands.rb:272
357
352
  msgid "Partition table has been disassociated"
358
- msgstr "Se ha desasociado la tabla de particiones"
353
+ msgstr "Se ha disociado la tabla de particiones"
359
354
 
360
355
  #: ../lib/hammer_cli_foreman/associating_commands.rb:273
361
356
  msgid "Could not disassociate the partition table"
362
- msgstr "No se ha podido desasociar la tabla de particiones"
357
+ msgstr "No se ha podido disociar la tabla de particiones"
363
358
 
364
359
  #: ../lib/hammer_cli_foreman/associating_commands.rb:282
365
360
  msgid "Assign a user role"
366
- msgstr "Asignar un rol a un usuario"
361
+ msgstr "Asignar un rol de usuario"
367
362
 
368
363
  #: ../lib/hammer_cli_foreman/associating_commands.rb:284
369
364
  msgid "User role has been assigned"
370
- msgstr "Se ha asignado el rol al usuario"
365
+ msgstr "Se ha asignado el rol de usuario"
371
366
 
372
367
  #: ../lib/hammer_cli_foreman/associating_commands.rb:285
373
368
  msgid "Could not assign the user role"
374
- msgstr "No se pudo asignar el rol al usuario"
369
+ msgstr "No se pudo asignar el rol de usuario"
375
370
 
376
371
  #: ../lib/hammer_cli_foreman/associating_commands.rb:291
377
372
  msgid "Remove a user role"
@@ -395,7 +390,7 @@ msgstr "Borrar credenciales"
395
390
 
396
391
  #: ../lib/hammer_cli_foreman/auth.rb:26
397
392
  msgid "Credentials deleted."
398
- msgstr "Se ha borrado las credenciales."
393
+ msgstr "Se han borrado las credenciales."
399
394
 
400
395
  #: ../lib/hammer_cli_foreman/auth.rb:33
401
396
  msgid "Information about current connections"
@@ -403,23 +398,21 @@ msgstr "Información sobre conexiones vigentes"
403
398
 
404
399
  #: ../lib/hammer_cli_foreman/auth.rb:37
405
400
  msgid "You are logged in as '%s'"
406
- msgstr "Está identificado como '%s'"
401
+ msgstr "Ha ingresado como '%s'"
407
402
 
408
403
  #: ../lib/hammer_cli_foreman/auth.rb:39
409
404
  msgid ""
410
405
  "You are currently not logged in to any service.\n"
411
406
  "Use the service to set credentials."
412
407
  msgstr ""
413
- "No está identificado en ningún servicio.\n"
414
- "Use el servicio para establecer las credenciales."
415
408
 
416
409
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
417
410
  msgid "Manage LDAP auth sources."
418
- msgstr "Gestionar fuente de autenticación LDAP"
411
+ msgstr "Administrar fuentes de autenticación LDAP"
419
412
 
420
413
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
421
414
  msgid "LDAPS?"
422
- msgstr "¿LDAPS?"
415
+ msgstr "¿LDAP?"
423
416
 
424
417
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
425
418
  msgid "Port"
@@ -447,73 +440,73 @@ msgstr "¿Crear cuentas automáticamente?"
447
440
 
448
441
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
449
442
  msgid "Login Name Attribute"
450
- msgstr "Atributo Nombre de usuario"
443
+ msgstr "Atributo nombre de usuario"
451
444
 
452
445
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
453
446
  msgid "First Name Attribute"
454
- msgstr "Atributo Nombre propio"
447
+ msgstr "Atributo nombre"
455
448
 
456
449
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
457
450
  msgid "Last Name Attribute"
458
- msgstr "Atributo Apellido"
451
+ msgstr "Atributo apellido"
459
452
 
460
453
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
461
454
  msgid "Email Address Attribute"
462
- msgstr "Atributo E-mail"
455
+ msgstr "Atributo correo-e"
463
456
 
464
457
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
465
458
  msgid "Photo Attribute"
466
- msgstr "Atributo Foto"
459
+ msgstr "Atributo foto"
467
460
 
468
461
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
469
462
  msgid "Auth source created"
470
- msgstr "Se creó la Fuente de autenticación"
463
+ msgstr "Se creó la fuente de autenticación"
471
464
 
472
465
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
473
466
  msgid "Could not create the Auth Source"
474
- msgstr "No se pudo crear la Fuente de autenticación"
467
+ msgstr "No se pudo crear la fuente de autenticación"
475
468
 
476
469
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
477
470
  msgid "Auth source deleted"
478
- msgstr "Se borró la Fuente de autenticación"
471
+ msgstr "Se borró la fuente de autenticación"
479
472
 
480
473
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
481
474
  msgid "Could not delete the Auth Source"
482
- msgstr "No se pudo borrar la Fuente de Autenticación"
475
+ msgstr "No se pudo borrar fuente de autenticación"
483
476
 
484
477
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
485
478
  msgid "Auth source updated"
486
- msgstr "Se actualizó la Fuente de autenticación"
479
+ msgstr "Se actualizó fuente de autenticación"
487
480
 
488
481
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
489
482
  msgid "Could not update the Auth Source"
490
- msgstr "No se pudo actualizar la Fuente de Autenticación"
483
+ msgstr "No se pudo actualizar fuente de autenticación"
491
484
 
492
- #: ../lib/hammer_cli_foreman/commands.rb:83
485
+ #: ../lib/hammer_cli_foreman/commands.rb:87
493
486
  msgid "Received data of unknown format"
494
487
  msgstr "Se ha recibido dato en formato desconocido"
495
488
 
496
- #: ../lib/hammer_cli_foreman/commands.rb:191
489
+ #: ../lib/hammer_cli_foreman/commands.rb:195
497
490
  msgid "Could not find %{resource}. Some search options were missing, please see --help."
498
- msgstr "No se pudo encontrar %{resource}. No se encontraron algunas opciones de búsqueda, por favor vea --help."
491
+ msgstr "No se encontró %{resource}. Faltaron algunas opciones de búsqueda, por favor, consulte --help."
499
492
 
500
- #: ../lib/hammer_cli_foreman/commands.rb:193
493
+ #: ../lib/hammer_cli_foreman/commands.rb:197
501
494
  msgid "Could not find %{resource}, please set option %{switches}."
502
- msgstr "No se pudo encontrar %{resource}, por favor establezca la opción ${switches}"
495
+ msgstr "No se pudo encontrar %{resource}, por favor establezca la opción %{switches}."
503
496
 
504
- #: ../lib/hammer_cli_foreman/commands.rb:195
497
+ #: ../lib/hammer_cli_foreman/commands.rb:199
505
498
  msgid "Could not find %{resource}, please set one of options %{switches}."
506
- msgstr "No se pudo encontrar %{resource}, por favor establezca una de las opciones %{switches}"
499
+ msgstr "No se pudo encontrar %{resource}, por favor establezca una de las opciones %{switches}."
507
500
 
508
- #: ../lib/hammer_cli_foreman/commands.rb:517
501
+ #: ../lib/hammer_cli_foreman/commands.rb:521
509
502
  msgid "Associate a resource"
510
503
  msgstr "Asociar un recurso"
511
504
 
512
- #: ../lib/hammer_cli_foreman/commands.rb:539
505
+ #: ../lib/hammer_cli_foreman/commands.rb:543
513
506
  msgid "Disassociate a resource"
514
- msgstr "Desasociar un recurso"
507
+ msgstr "Disociar un recurso"
515
508
 
516
- #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:327 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
509
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:334 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
517
510
  msgid "Value"
518
511
  msgstr "Valor"
519
512
 
@@ -539,7 +532,7 @@ msgstr "valor del parámetro"
539
532
 
540
533
  #: ../lib/hammer_cli_foreman/common_parameter.rb:53
541
534
  msgid "Global parameter [%{name}] deleted."
542
- msgstr "Se borró el parámetro [%{name}]."
535
+ msgstr "Se borró el parámetro global [%{name}]."
543
536
 
544
537
  #: ../lib/hammer_cli_foreman/common_parameter.rb:54
545
538
  msgid "Could not delete the global parameter [%{name}]"
@@ -553,7 +546,7 @@ msgstr "Manipular parámetros globales."
553
546
  msgid "Provider"
554
547
  msgstr "Proveedor"
555
548
 
556
- #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:201 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
549
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
557
550
  msgid "UUID"
558
551
  msgstr "UUID"
559
552
 
@@ -583,47 +576,51 @@ msgstr "Usuario"
583
576
 
584
577
  #: ../lib/hammer_cli_foreman/compute_resource.rb:73
585
578
  msgid "Compute resource created"
586
- msgstr "Se creó el recurso de computación"
579
+ msgstr "Se creó el recurso de cómputo"
587
580
 
588
581
  #: ../lib/hammer_cli_foreman/compute_resource.rb:74
589
582
  msgid "Could not create the compute resource"
590
- msgstr "No se pudo crear el recurso de computación"
583
+ msgstr "No se pudo crear el recurso de cómputo"
591
584
 
592
585
  #: ../lib/hammer_cli_foreman/compute_resource.rb:85
593
586
  msgid "Compute resource updated"
594
- msgstr "Se actualizó el recurso de computación"
587
+ msgstr "Se actualizó el recurso de cómputo"
595
588
 
596
589
  #: ../lib/hammer_cli_foreman/compute_resource.rb:86
597
590
  msgid "Could not update the compute resource"
598
- msgstr "No se pudo actualizar el recurso de computación"
591
+ msgstr "No se pudo actualizar el recurso de cómputo"
599
592
 
600
593
  #: ../lib/hammer_cli_foreman/compute_resource.rb:93
601
594
  msgid "Compute resource deleted"
602
- msgstr "Se borró el recurso de computación"
595
+ msgstr "Se borró el recurso de cómputo"
603
596
 
604
597
  #: ../lib/hammer_cli_foreman/compute_resource.rb:94
605
598
  msgid "Could not delete the compute resource"
606
- msgstr "No se pudo borrar el recurso de computación"
599
+ msgstr "No se pudo borrar el recurso de cómputo"
607
600
 
608
601
  #: ../lib/hammer_cli_foreman/credentials.rb:26
609
602
  msgid "[Foreman] Username: "
610
- msgstr "[Foreman] Nombre de usuario:"
603
+ msgstr "[Foreman] Nombre de usuario: "
611
604
 
612
605
  #: ../lib/hammer_cli_foreman/credentials.rb:33
613
606
  msgid "[Foreman] Password for %s: "
614
- msgstr "[Foreman] Password para %s:"
607
+ msgstr "[Foreman] Contraseña para %s: "
608
+
609
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
610
+ msgid "Use the default organization and/or location from the server"
611
+ msgstr ""
615
612
 
616
613
  #: ../lib/hammer_cli_foreman/domain.rb:6
617
614
  msgid "ID of DNS proxy to use within this domain"
618
- msgstr ""
615
+ msgstr "ID de proxy DNS a usar dentro de este dominio"
619
616
 
620
617
  #: ../lib/hammer_cli_foreman/domain.rb:7
621
618
  msgid "Name of DNS proxy to use within this domain"
622
- msgstr ""
619
+ msgstr "Nombre de proxy DNS a usar dentro de este dominio"
623
620
 
624
621
  #: ../lib/hammer_cli_foreman/domain.rb:43
625
622
  msgid "DNS Id"
626
- msgstr "Id de DNS"
623
+ msgstr "ID de DNS"
627
624
 
628
625
  #: ../lib/hammer_cli_foreman/domain.rb:57
629
626
  msgid "Domain [%{name}] created"
@@ -663,7 +660,7 @@ msgstr "Parámetro de dominio actualizado"
663
660
 
664
661
  #: ../lib/hammer_cli_foreman/domain.rb:89
665
662
  msgid "New domain parameter created"
666
- msgstr "Se creó un nuevo parámetro de dominio"
663
+ msgstr "Se creó un parámetro de dominio"
667
664
 
668
665
  #: ../lib/hammer_cli_foreman/domain.rb:90
669
666
  msgid "Could not set domain parameter"
@@ -703,7 +700,7 @@ msgstr "No se pudo borrar el entorno"
703
700
 
704
701
  #: ../lib/hammer_cli_foreman/exception_handler.rb:41
705
702
  msgid "Forbidden - server refused to process the request"
706
- msgstr "Prohibido - el servidor se negó a procesar la petición"
703
+ msgstr "Prohibido - el servidor se negó a procesar la solicitud"
707
704
 
708
705
  #: ../lib/hammer_cli_foreman/exception_handler.rb:75
709
706
  msgid "Could not load the API description from the server"
@@ -711,15 +708,15 @@ msgstr "No se pudo cargar la descripción de la API desde el servidor"
711
708
 
712
709
  #: ../lib/hammer_cli_foreman/exception_handler.rb:76
713
710
  msgid "is the server down?"
714
- msgstr "está el servidor apagado?"
711
+ msgstr "¿Está apagado el servidor?"
715
712
 
716
713
  #: ../lib/hammer_cli_foreman/exception_handler.rb:77
717
714
  msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
718
- msgstr "¿se ejecutó '%s' en el servidor al usar la caché apipe? (configuración típica de producción)"
715
+ msgstr "¿Se ejecutó '%s' en el servidor al usar la caché apipe? (configuración típica de producción)"
719
716
 
720
717
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
721
718
  msgid "View and manage user group's external user groups"
722
- msgstr "Ver y gestionar los grupos de usuarios externos de los grupos de usuarios"
719
+ msgstr "Ver y administrar los grupos de usuarios externos de los grupos de usuarios"
723
720
 
724
721
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
725
722
  msgid "Auth source"
@@ -755,11 +752,11 @@ msgstr "No se pudo borrar el grupo de usuario externo"
755
752
 
756
753
  #: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11 ../lib/hammer_cli_foreman/report.rb:31
757
754
  msgid "Host"
758
- msgstr "Equipo"
755
+ msgstr "Host"
759
756
 
760
- #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
757
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
761
758
  msgid "Fact"
762
- msgstr "Dato"
759
+ msgstr "Evento"
763
760
 
764
761
  #: ../lib/hammer_cli_foreman/filter.rb:10
765
762
  msgid "Resource type"
@@ -771,7 +768,7 @@ msgstr "Buscar"
771
768
 
772
769
  #: ../lib/hammer_cli_foreman/filter.rb:12
773
770
  msgid "Unlimited?"
774
- msgstr "¿Sin límite?"
771
+ msgstr "¿Ilimitado?"
775
772
 
776
773
  #: ../lib/hammer_cli_foreman/filter.rb:13
777
774
  msgid "Role"
@@ -781,11 +778,11 @@ msgstr "Rol"
781
778
  msgid "Permissions"
782
779
  msgstr "Permisos"
783
780
 
784
- #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:33
781
+ #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
785
782
  msgid "(Miscellaneous)"
786
- msgstr "(Misceláneo)"
783
+ msgstr "(Varios)"
787
784
 
788
- #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
785
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
789
786
  msgid "none"
790
787
  msgstr "nada"
791
788
 
@@ -819,317 +816,309 @@ msgstr "Recurso"
819
816
 
820
817
  #: ../lib/hammer_cli_foreman/host.rb:15
821
818
  msgid "Login of the owner"
822
- msgstr "Inicio de sesión del propietario"
819
+ msgstr "Autenticación del propietario"
823
820
 
824
821
  #: ../lib/hammer_cli_foreman/host.rb:17
825
822
  msgid "ID of the owner"
826
823
  msgstr "ID del propietario"
827
824
 
828
- #: ../lib/hammer_cli_foreman/host.rb:42
825
+ #: ../lib/hammer_cli_foreman/host.rb:44
829
826
  msgid "Host parameters."
830
- msgstr "Parámetros del host."
827
+ msgstr "Parámetros de host."
831
828
 
832
- #: ../lib/hammer_cli_foreman/host.rb:44
829
+ #: ../lib/hammer_cli_foreman/host.rb:46
833
830
  msgid "Compute resource attributes."
834
- msgstr "Atributos de recursos de computación."
831
+ msgstr "Atributos de recursos de cómputo."
835
832
 
836
- #: ../lib/hammer_cli_foreman/host.rb:46
833
+ #: ../lib/hammer_cli_foreman/host.rb:48
837
834
  msgid "Volume parameters"
838
835
  msgstr "Parámetros de volumen"
839
836
 
840
- #: ../lib/hammer_cli_foreman/host.rb:48
837
+ #: ../lib/hammer_cli_foreman/host.rb:50
841
838
  msgid "Interface parameters."
842
- msgstr "Parámetros del interfaz."
839
+ msgstr "Parámetros de la interfaz."
843
840
 
844
- #: ../lib/hammer_cli_foreman/host.rb:62
841
+ #: ../lib/hammer_cli_foreman/host.rb:64
845
842
  msgid "Enter the root password for the host:"
846
843
  msgstr ""
847
844
 
848
- #: ../lib/hammer_cli_foreman/host.rb:146
845
+ #: ../lib/hammer_cli_foreman/host.rb:153
849
846
  msgid "At least one interface must be set as primary"
850
847
  msgstr ""
851
848
 
852
- #: ../lib/hammer_cli_foreman/host.rb:149
849
+ #: ../lib/hammer_cli_foreman/host.rb:156
853
850
  msgid "At least one interface must be set as provision"
854
851
  msgstr ""
855
852
 
856
- #: ../lib/hammer_cli_foreman/host.rb:165 ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
853
+ #: ../lib/hammer_cli_foreman/host.rb:172 ../lib/hammer_cli_foreman/host.rb:248 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
857
854
  msgid "Operating System"
858
- msgstr "Sistema Operativo"
855
+ msgstr "Sistema operativo"
859
856
 
860
- #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
857
+ #: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
861
858
  msgid "Host Group"
862
- msgstr "Grupo de Equipo"
859
+ msgstr "Grupo de hosts"
863
860
 
864
- #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
861
+ #: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
865
862
  msgid "IP"
866
863
  msgstr "IP"
867
864
 
868
- #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
865
+ #: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
869
866
  msgid "MAC"
870
867
  msgstr "Dirección MAC"
871
868
 
872
- #: ../lib/hammer_cli_foreman/host.rb:178
869
+ #: ../lib/hammer_cli_foreman/host.rb:185
873
870
  msgid "Bare Metal"
874
871
  msgstr ""
875
872
 
876
- #: ../lib/hammer_cli_foreman/host.rb:203
877
- #, fuzzy
873
+ #: ../lib/hammer_cli_foreman/host.rb:210
878
874
  msgid "Organization"
879
- msgstr "Organizaciones"
875
+ msgstr ""
880
876
 
881
- #: ../lib/hammer_cli_foreman/host.rb:204
882
- #, fuzzy
877
+ #: ../lib/hammer_cli_foreman/host.rb:211
883
878
  msgid "Location"
884
- msgstr "Lugares"
879
+ msgstr ""
885
880
 
886
- #: ../lib/hammer_cli_foreman/host.rb:206
881
+ #: ../lib/hammer_cli_foreman/host.rb:213
887
882
  msgid "Compute Resource"
888
- msgstr "Recurso de Computación"
883
+ msgstr "Recurso de cómputo"
889
884
 
890
- #: ../lib/hammer_cli_foreman/host.rb:207
891
- #, fuzzy
885
+ #: ../lib/hammer_cli_foreman/host.rb:214
892
886
  msgid "Compute Profile"
893
- msgstr "PerfildeCómputo"
887
+ msgstr ""
894
888
 
895
- #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/hostgroup.rb:61
889
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
896
890
  msgid "Environment"
897
891
  msgstr "Entorno"
898
892
 
899
- #: ../lib/hammer_cli_foreman/host.rb:209
900
- #, fuzzy
893
+ #: ../lib/hammer_cli_foreman/host.rb:216
901
894
  msgid "Puppet CA Id"
902
- msgstr "Id del Proxy Puppet CA"
895
+ msgstr ""
903
896
 
904
- #: ../lib/hammer_cli_foreman/host.rb:210
905
- #, fuzzy
897
+ #: ../lib/hammer_cli_foreman/host.rb:217
906
898
  msgid "Puppet Master Id"
907
- msgstr "ID del Proxy de Puppet Master"
899
+ msgstr ""
908
900
 
909
- #: ../lib/hammer_cli_foreman/host.rb:211
901
+ #: ../lib/hammer_cli_foreman/host.rb:218
910
902
  msgid "Cert name"
911
- msgstr "Nombre del certificado"
903
+ msgstr "Nombre de certificado"
912
904
 
913
- #: ../lib/hammer_cli_foreman/host.rb:212 ../lib/hammer_cli_foreman/interface.rb:51
905
+ #: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
914
906
  msgid "Managed"
915
- msgstr "Gestionado"
907
+ msgstr "Administrado"
916
908
 
917
- #: ../lib/hammer_cli_foreman/host.rb:214
909
+ #: ../lib/hammer_cli_foreman/host.rb:221
918
910
  msgid "Installed at"
919
911
  msgstr "Instalado en"
920
912
 
921
- #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
913
+ #: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
922
914
  msgid "Last report"
923
915
  msgstr "Último informe"
924
916
 
925
- #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
917
+ #: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
926
918
  msgid "Network"
927
919
  msgstr "Red"
928
920
 
929
- #: ../lib/hammer_cli_foreman/host.rb:220 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
921
+ #: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
930
922
  msgid "Subnet"
931
923
  msgstr "Subred"
932
924
 
933
- #: ../lib/hammer_cli_foreman/host.rb:221 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
925
+ #: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
934
926
  msgid "Domain"
935
927
  msgstr "Dominio"
936
928
 
937
- #: ../lib/hammer_cli_foreman/host.rb:222
929
+ #: ../lib/hammer_cli_foreman/host.rb:229
938
930
  msgid "Service provider"
939
931
  msgstr ""
940
932
 
941
- #: ../lib/hammer_cli_foreman/host.rb:223
933
+ #: ../lib/hammer_cli_foreman/host.rb:230
942
934
  msgid "SP Name"
943
935
  msgstr "Nombre de SP"
944
936
 
945
- #: ../lib/hammer_cli_foreman/host.rb:224
937
+ #: ../lib/hammer_cli_foreman/host.rb:231
946
938
  msgid "SP IP"
947
939
  msgstr "IP de SP"
948
940
 
949
- #: ../lib/hammer_cli_foreman/host.rb:225
941
+ #: ../lib/hammer_cli_foreman/host.rb:232
950
942
  msgid "SP MAC"
951
943
  msgstr "MAC de SP"
952
944
 
953
- #: ../lib/hammer_cli_foreman/host.rb:226
945
+ #: ../lib/hammer_cli_foreman/host.rb:233
954
946
  msgid "SP Subnet"
955
947
  msgstr "Subred de SP"
956
948
 
957
- #: ../lib/hammer_cli_foreman/host.rb:230
958
- #, fuzzy
949
+ #: ../lib/hammer_cli_foreman/host.rb:237
959
950
  msgid "Network interfaces"
960
- msgstr "Interfaces de red BMC"
951
+ msgstr ""
961
952
 
962
- #: ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
953
+ #: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
963
954
  msgid "Identifier"
964
955
  msgstr ""
965
956
 
966
- #: ../lib/hammer_cli_foreman/host.rb:233 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
957
+ #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
967
958
  msgid "Type"
968
959
  msgstr "Tipo"
969
960
 
970
- #: ../lib/hammer_cli_foreman/host.rb:234 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
961
+ #: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
971
962
  msgid "MAC address"
972
963
  msgstr ""
973
964
 
974
- #: ../lib/hammer_cli_foreman/host.rb:235 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
965
+ #: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
975
966
  msgid "IP address"
976
967
  msgstr ""
977
968
 
978
- #: ../lib/hammer_cli_foreman/host.rb:236
969
+ #: ../lib/hammer_cli_foreman/host.rb:243
979
970
  msgid "FQDN"
980
971
  msgstr ""
981
972
 
982
- #: ../lib/hammer_cli_foreman/host.rb:239
983
- #, fuzzy
973
+ #: ../lib/hammer_cli_foreman/host.rb:246
984
974
  msgid "Operating system"
985
- msgstr "Sistemas operativos"
975
+ msgstr ""
986
976
 
987
- #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
977
+ #: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
988
978
  msgid "Architecture"
989
979
  msgstr "Arquitectura"
990
980
 
991
- #: ../lib/hammer_cli_foreman/host.rb:244
981
+ #: ../lib/hammer_cli_foreman/host.rb:251
992
982
  msgid "Build"
993
- msgstr "Construir"
983
+ msgstr "Compilar"
994
984
 
995
- #: ../lib/hammer_cli_foreman/host.rb:245 ../lib/hammer_cli_foreman/hostgroup.rb:77
985
+ #: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
996
986
  msgid "Medium"
997
987
  msgstr "Medio"
998
988
 
999
- #: ../lib/hammer_cli_foreman/host.rb:246 ../lib/hammer_cli_foreman/hostgroup.rb:76
989
+ #: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
1000
990
  msgid "Partition Table"
1001
- msgstr "Tabla de Particiones"
991
+ msgstr "Tabla de particiones"
1002
992
 
1003
- #: ../lib/hammer_cli_foreman/host.rb:247
1004
- #, fuzzy
993
+ #: ../lib/hammer_cli_foreman/host.rb:254
1005
994
  msgid "Custom partition table"
1006
- msgstr "Asociar una tabla de particiones"
995
+ msgstr ""
1007
996
 
1008
- #: ../lib/hammer_cli_foreman/host.rb:250
997
+ #: ../lib/hammer_cli_foreman/host.rb:257
1009
998
  msgid "Image"
1010
999
  msgstr "Imagen"
1011
1000
 
1012
- #: ../lib/hammer_cli_foreman/host.rb:251
1001
+ #: ../lib/hammer_cli_foreman/host.rb:258
1013
1002
  msgid "Image file"
1014
1003
  msgstr "Archivo de imagen"
1015
1004
 
1016
- #: ../lib/hammer_cli_foreman/host.rb:252
1005
+ #: ../lib/hammer_cli_foreman/host.rb:259
1017
1006
  msgid "Use image"
1018
1007
  msgstr "Usar imagen"
1019
1008
 
1020
- #: ../lib/hammer_cli_foreman/host.rb:258
1009
+ #: ../lib/hammer_cli_foreman/host.rb:265
1021
1010
  msgid "Additional info"
1022
1011
  msgstr ""
1023
1012
 
1024
- #: ../lib/hammer_cli_foreman/host.rb:259
1013
+ #: ../lib/hammer_cli_foreman/host.rb:266
1025
1014
  msgid "Owner Id"
1026
- msgstr "Id del dueño"
1015
+ msgstr "ID de propietario"
1027
1016
 
1028
- #: ../lib/hammer_cli_foreman/host.rb:260
1017
+ #: ../lib/hammer_cli_foreman/host.rb:267
1029
1018
  msgid "Owner Type"
1030
- msgstr "Tipo de dueño"
1019
+ msgstr "Tipo de propietario"
1031
1020
 
1032
- #: ../lib/hammer_cli_foreman/host.rb:261
1021
+ #: ../lib/hammer_cli_foreman/host.rb:268
1033
1022
  msgid "Enabled"
1034
1023
  msgstr "Habilitado"
1035
1024
 
1036
- #: ../lib/hammer_cli_foreman/host.rb:262 ../lib/hammer_cli_foreman/hostgroup.rb:62
1025
+ #: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
1037
1026
  msgid "Model"
1038
1027
  msgstr "Modelo"
1039
1028
 
1040
- #: ../lib/hammer_cli_foreman/host.rb:263
1029
+ #: ../lib/hammer_cli_foreman/host.rb:270
1041
1030
  msgid "Comment"
1042
1031
  msgstr "Comentario"
1043
1032
 
1044
- #: ../lib/hammer_cli_foreman/host.rb:276
1033
+ #: ../lib/hammer_cli_foreman/host.rb:283
1045
1034
  msgid "Status"
1046
- msgstr "Estado"
1035
+ msgstr "Estatus"
1047
1036
 
1048
- #: ../lib/hammer_cli_foreman/host.rb:277
1037
+ #: ../lib/hammer_cli_foreman/host.rb:284
1049
1038
  msgid "Power"
1050
1039
  msgstr "Energía"
1051
1040
 
1052
- #: ../lib/hammer_cli_foreman/host.rb:313
1041
+ #: ../lib/hammer_cli_foreman/host.rb:320
1053
1042
  msgid "Puppet run triggered"
1054
- msgstr "Se lanzó una ejecución de puppet"
1043
+ msgstr "Se activó una ejecución de Puppet"
1055
1044
 
1056
- #: ../lib/hammer_cli_foreman/host.rb:366
1045
+ #: ../lib/hammer_cli_foreman/host.rb:373
1057
1046
  msgid "Host created"
1058
- msgstr "El host se ha creado"
1047
+ msgstr "Host creado"
1059
1048
 
1060
- #: ../lib/hammer_cli_foreman/host.rb:367
1049
+ #: ../lib/hammer_cli_foreman/host.rb:374
1061
1050
  msgid "Could not create the host"
1062
1051
  msgstr "No se pudo crear el host"
1063
1052
 
1064
- #: ../lib/hammer_cli_foreman/host.rb:388
1053
+ #: ../lib/hammer_cli_foreman/host.rb:395
1065
1054
  msgid "Host updated"
1066
1055
  msgstr "Se actualizó el host"
1067
1056
 
1068
- #: ../lib/hammer_cli_foreman/host.rb:389
1057
+ #: ../lib/hammer_cli_foreman/host.rb:396
1069
1058
  msgid "Could not update the host"
1070
1059
  msgstr "No se pudo actualizar el host"
1071
1060
 
1072
- #: ../lib/hammer_cli_foreman/host.rb:396
1061
+ #: ../lib/hammer_cli_foreman/host.rb:403
1073
1062
  msgid "Host deleted"
1074
1063
  msgstr "Host borrado"
1075
1064
 
1076
- #: ../lib/hammer_cli_foreman/host.rb:397
1065
+ #: ../lib/hammer_cli_foreman/host.rb:404
1077
1066
  msgid "Could not delete the host"
1078
1067
  msgstr "No se pudo borrar el host"
1079
1068
 
1080
- #: ../lib/hammer_cli_foreman/host.rb:404
1069
+ #: ../lib/hammer_cli_foreman/host.rb:411
1081
1070
  msgid "Create or update parameter for a host."
1082
- msgstr "Crear o actualizar un parámetro de un host."
1071
+ msgstr "Crear o actualizar parámetro de un host."
1083
1072
 
1084
- #: ../lib/hammer_cli_foreman/host.rb:406
1073
+ #: ../lib/hammer_cli_foreman/host.rb:413
1085
1074
  msgid "Host parameter updated"
1086
- msgstr "Se actualizó el parámetro del host"
1075
+ msgstr "Se actualizó el parámetro de host"
1087
1076
 
1088
- #: ../lib/hammer_cli_foreman/host.rb:407
1077
+ #: ../lib/hammer_cli_foreman/host.rb:414
1089
1078
  msgid "New host parameter created"
1090
- msgstr "Nuevo parámetro de host creado"
1079
+ msgstr "Se ha creado parámetro de host"
1091
1080
 
1092
- #: ../lib/hammer_cli_foreman/host.rb:408
1081
+ #: ../lib/hammer_cli_foreman/host.rb:415
1093
1082
  msgid "Could not set host parameter"
1094
- msgstr "No se pudo establecer el parámetro del host"
1083
+ msgstr "No se pudo establecer el parámetro de host"
1095
1084
 
1096
- #: ../lib/hammer_cli_foreman/host.rb:420
1085
+ #: ../lib/hammer_cli_foreman/host.rb:427
1097
1086
  msgid "Delete parameter for a host."
1098
- msgstr "Borrar parámetro de host."
1087
+ msgstr "Borrar parámetro de un host."
1099
1088
 
1100
- #: ../lib/hammer_cli_foreman/host.rb:422
1089
+ #: ../lib/hammer_cli_foreman/host.rb:429
1101
1090
  msgid "Host parameter deleted"
1102
1091
  msgstr "Parámetro de host borrado"
1103
1092
 
1104
- #: ../lib/hammer_cli_foreman/host.rb:437
1093
+ #: ../lib/hammer_cli_foreman/host.rb:444
1105
1094
  msgid "Power a host on"
1106
1095
  msgstr "Encender un host"
1107
1096
 
1108
- #: ../lib/hammer_cli_foreman/host.rb:438
1097
+ #: ../lib/hammer_cli_foreman/host.rb:445
1109
1098
  msgid "The host is starting."
1110
1099
  msgstr "El host está arrancando."
1111
1100
 
1112
- #: ../lib/hammer_cli_foreman/host.rb:455
1101
+ #: ../lib/hammer_cli_foreman/host.rb:462
1113
1102
  msgid "Force turning off a host"
1114
- msgstr "Apagado forzoso de un host"
1103
+ msgstr "Forzar apagado de un host"
1115
1104
 
1116
- #: ../lib/hammer_cli_foreman/host.rb:460
1105
+ #: ../lib/hammer_cli_foreman/host.rb:467
1117
1106
  msgid "Power a host off"
1118
1107
  msgstr "Apagar un host"
1119
1108
 
1120
- #: ../lib/hammer_cli_foreman/host.rb:472
1109
+ #: ../lib/hammer_cli_foreman/host.rb:479
1121
1110
  msgid "Power off forced."
1122
1111
  msgstr "Se forzó el apagado"
1123
1112
 
1124
- #: ../lib/hammer_cli_foreman/host.rb:474
1113
+ #: ../lib/hammer_cli_foreman/host.rb:481
1125
1114
  msgid "Powering the host off."
1126
1115
  msgstr "Apagando el host a la fuerza."
1127
1116
 
1128
- #: ../lib/hammer_cli_foreman/host.rb:491
1117
+ #: ../lib/hammer_cli_foreman/host.rb:498
1129
1118
  msgid "Reboot a host"
1130
1119
  msgstr "Reiniciar un host"
1131
1120
 
1132
- #: ../lib/hammer_cli_foreman/host.rb:492
1121
+ #: ../lib/hammer_cli_foreman/host.rb:499
1133
1122
  msgid "Host reboot started."
1134
1123
  msgstr "Reinicio del host en proceso."
1135
1124
 
@@ -1139,20 +1128,19 @@ msgstr "Lista de ID de puppetclasses"
1139
1128
 
1140
1129
  #: ../lib/hammer_cli_foreman/hostgroup.rb:12
1141
1130
  msgid "Name of puppet CA proxy"
1142
- msgstr "Nomre del proxy puppet CA"
1131
+ msgstr "Nombre de proxy Puppet CA"
1143
1132
 
1144
1133
  #: ../lib/hammer_cli_foreman/hostgroup.rb:13
1145
1134
  msgid "Name of puppet proxy"
1146
- msgstr "Nombre del puppet proxy"
1135
+ msgstr "Nombre del proxy de Puppet"
1147
1136
 
1148
1137
  #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1149
1138
  msgid "Name of parent hostgroup"
1150
- msgstr "Nombre del grupo padre"
1139
+ msgstr "Nombre de hostgroup padre"
1151
1140
 
1152
1141
  #: ../lib/hammer_cli_foreman/hostgroup.rb:17
1153
- #, fuzzy
1154
1142
  msgid "Root password"
1155
- msgstr "Password de BMC"
1143
+ msgstr ""
1156
1144
 
1157
1145
  #: ../lib/hammer_cli_foreman/hostgroup.rb:23
1158
1146
  msgid "Enter the root password for the host group:"
@@ -1172,11 +1160,11 @@ msgstr "ID del Proxy de Puppet Master"
1172
1160
 
1173
1161
  #: ../lib/hammer_cli_foreman/hostgroup.rb:80
1174
1162
  msgid "ComputeProfile"
1175
- msgstr "PerfildeCómputo"
1163
+ msgstr "Perfil de cómputo"
1176
1164
 
1177
1165
  #: ../lib/hammer_cli_foreman/hostgroup.rb:84
1178
1166
  msgid "Parent Id"
1179
- msgstr "ID Padre"
1167
+ msgstr "ID de padre"
1180
1168
 
1181
1169
  #: ../lib/hammer_cli_foreman/hostgroup.rb:94
1182
1170
  msgid "Hostgroup created"
@@ -1212,7 +1200,7 @@ msgstr "Parámetro de grupo de hosts actualizado"
1212
1200
 
1213
1201
  #: ../lib/hammer_cli_foreman/hostgroup.rb:140
1214
1202
  msgid "New hostgroup parameter created"
1215
- msgstr "Nuevo parámetro de grupo de hosts creado"
1203
+ msgstr "Se ha creado parámetro de grupo de hosts"
1216
1204
 
1217
1205
  #: ../lib/hammer_cli_foreman/hostgroup.rb:141
1218
1206
  msgid "Could not set hostgroup parameter"
@@ -1228,77 +1216,75 @@ msgstr "Parámetro del grupo de hosts borrado"
1228
1216
 
1229
1217
  #: ../lib/hammer_cli_foreman/id_resolver.rb:36
1230
1218
  msgid "Architecture name"
1231
- msgstr "Nombre de la arquitectura"
1219
+ msgstr "Nombre de arquitectura"
1232
1220
 
1233
1221
  #: ../lib/hammer_cli_foreman/id_resolver.rb:37
1234
1222
  msgid "Compute resource name"
1235
- msgstr "Nombre del recurso de cómputo"
1223
+ msgstr "Nombre de recurso de cómputo"
1236
1224
 
1237
1225
  #: ../lib/hammer_cli_foreman/id_resolver.rb:38
1238
1226
  msgid "Domain name"
1239
- msgstr "Nombre del dominio"
1227
+ msgstr "Nombre de dominio"
1240
1228
 
1241
1229
  #: ../lib/hammer_cli_foreman/id_resolver.rb:39
1242
1230
  msgid "Environment name"
1243
- msgstr "Nombre del entorno"
1231
+ msgstr "Nombre de entorno"
1244
1232
 
1245
1233
  #: ../lib/hammer_cli_foreman/id_resolver.rb:42
1246
1234
  msgid "Host name"
1247
- msgstr "Nombre del host"
1235
+ msgstr "Nombre de host"
1248
1236
 
1249
1237
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1250
- #, fuzzy
1251
1238
  msgid "Hostgroup title"
1252
- msgstr "Nombre del grupo de hosts"
1239
+ msgstr ""
1253
1240
 
1254
1241
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1255
1242
  msgid "Hostgroup name"
1256
- msgstr "Nombre del grupo de hosts"
1243
+ msgstr "Nombre de grupo de hosts"
1257
1244
 
1258
1245
  #: ../lib/hammer_cli_foreman/id_resolver.rb:46
1259
1246
  msgid "Location name"
1260
- msgstr "Nombre de la ubicación"
1247
+ msgstr "Nombre de ubicación"
1261
1248
 
1262
1249
  #: ../lib/hammer_cli_foreman/id_resolver.rb:47
1263
1250
  msgid "Medium name"
1264
- msgstr "Nombre del medio"
1251
+ msgstr "Nombre de medio"
1265
1252
 
1266
1253
  #: ../lib/hammer_cli_foreman/id_resolver.rb:48
1267
1254
  msgid "Model name"
1268
- msgstr "Nombre del modelo"
1255
+ msgstr "Nombre de modelo"
1269
1256
 
1270
1257
  #: ../lib/hammer_cli_foreman/id_resolver.rb:49
1271
1258
  msgid "Organization name"
1272
- msgstr "Nombre de la organización"
1259
+ msgstr "Nombre de organización"
1273
1260
 
1274
1261
  #: ../lib/hammer_cli_foreman/id_resolver.rb:50
1275
1262
  msgid "Operating system title"
1276
- msgstr "Titulo del sistema operativo"
1263
+ msgstr "Título de sistema operativo"
1277
1264
 
1278
1265
  #: ../lib/hammer_cli_foreman/id_resolver.rb:52
1279
1266
  msgid "Partition table name"
1280
- msgstr "Nomre de la tabla de particiones"
1267
+ msgstr "Nombre de tabla de particiones"
1281
1268
 
1282
1269
  #: ../lib/hammer_cli_foreman/id_resolver.rb:53
1283
1270
  msgid "Proxy name"
1284
- msgstr "Nombre del proxy"
1271
+ msgstr "Nombre de proxy"
1285
1272
 
1286
1273
  #: ../lib/hammer_cli_foreman/id_resolver.rb:54
1287
1274
  msgid "Puppet class name"
1288
- msgstr "Nombre de la clase Puppet"
1275
+ msgstr "Nombre de clase Puppet"
1289
1276
 
1290
1277
  #: ../lib/hammer_cli_foreman/id_resolver.rb:55
1291
1278
  msgid "Report name"
1292
- msgstr "Nombre del informe"
1279
+ msgstr "Nombre de informe"
1293
1280
 
1294
1281
  #: ../lib/hammer_cli_foreman/id_resolver.rb:56
1295
1282
  msgid "User role name"
1296
- msgstr "Nombre del rol de usuario"
1283
+ msgstr "Nombre de rol de usuario"
1297
1284
 
1298
1285
  #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1299
- #, fuzzy
1300
1286
  msgid "Setting name"
1301
- msgstr "Nombre del certificado"
1287
+ msgstr ""
1302
1288
 
1303
1289
  #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1304
1290
  msgid "Subnet name"
@@ -1306,20 +1292,19 @@ msgstr "Nombre de subred"
1306
1292
 
1307
1293
  #: ../lib/hammer_cli_foreman/id_resolver.rb:60
1308
1294
  msgid "User's login to search by"
1309
- msgstr "Login de usuario a buscar"
1295
+ msgstr "Nombre de usuario a buscar"
1310
1296
 
1311
1297
  #: ../lib/hammer_cli_foreman/id_resolver.rb:61
1312
1298
  msgid "Common parameter name"
1313
- msgstr "Nombre del parámetro común"
1299
+ msgstr "Nombre de parámetro común"
1314
1300
 
1315
1301
  #: ../lib/hammer_cli_foreman/id_resolver.rb:62
1316
1302
  msgid "Smart class parameter name"
1317
- msgstr "Nombre del parámetro de clase inteligente"
1303
+ msgstr "Nombre de parámetro de clase inteligente"
1318
1304
 
1319
1305
  #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1320
- #, fuzzy
1321
1306
  msgid "Smart variable name"
1322
- msgstr "Variables inteligentes"
1307
+ msgstr ""
1323
1308
 
1324
1309
  #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1325
1310
  msgid "Name to search by"
@@ -1327,15 +1312,16 @@ msgstr "Nombre a buscar"
1327
1312
 
1328
1313
  #: ../lib/hammer_cli_foreman/id_resolver.rb:153
1329
1314
  msgid "one of %s not found"
1330
- msgstr "uno de %s no encontrado"
1315
+ msgstr "No se encuentra uno de %s "
1331
1316
 
1332
1317
  #: ../lib/hammer_cli_foreman/id_resolver.rb:200
1333
1318
  msgid "%s not found"
1334
1319
  msgstr "no se encuentra %s"
1335
1320
 
1336
1321
  #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1337
- msgid "%s found more than once"
1338
- msgstr "se encontró %s más de una vez"
1322
+ #, fuzzy
1323
+ msgid "found more than one %s"
1324
+ msgstr "%s se encontró más de una vez"
1339
1325
 
1340
1326
  #: ../lib/hammer_cli_foreman/id_resolver.rb:212
1341
1327
  msgid "Missing options to search %s"
@@ -1343,7 +1329,7 @@ msgstr "Faltan opciones para buscar %s"
1343
1329
 
1344
1330
  #: ../lib/hammer_cli_foreman/image.rb:8
1345
1331
  msgid "View and manage compute resource's images"
1346
- msgstr "Ver y gestionar imágenes de recursos de computación"
1332
+ msgstr "Ver y administrar imágenes de recursos de cómputo."
1347
1333
 
1348
1334
  #: ../lib/hammer_cli_foreman/image.rb:32 ../lib/hammer_cli_foreman/interface.rb:59
1349
1335
  msgid "Username"
@@ -1386,28 +1372,24 @@ msgid "View and manage host's network interfaces"
1386
1372
  msgstr ""
1387
1373
 
1388
1374
  #: ../lib/hammer_cli_foreman/interface.rb:10
1389
- #, fuzzy
1390
1375
  msgid "primary"
1391
- msgstr "DNS primario"
1376
+ msgstr ""
1392
1377
 
1393
1378
  #: ../lib/hammer_cli_foreman/interface.rb:11
1394
1379
  msgid "provision"
1395
1380
  msgstr ""
1396
1381
 
1397
1382
  #: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
1398
- #, fuzzy
1399
1383
  msgid "DNS name"
1400
- msgstr "Nombre del certificado"
1384
+ msgstr ""
1401
1385
 
1402
1386
  #: ../lib/hammer_cli_foreman/interface.rb:52
1403
- #, fuzzy
1404
1387
  msgid "Primary"
1405
- msgstr "DNS primario"
1388
+ msgstr "Primary"
1406
1389
 
1407
1390
  #: ../lib/hammer_cli_foreman/interface.rb:53
1408
- #, fuzzy
1409
1391
  msgid "Provision"
1410
- msgstr "Proveedor"
1392
+ msgstr ""
1411
1393
 
1412
1394
  #: ../lib/hammer_cli_foreman/interface.rb:54
1413
1395
  msgid "Virtual"
@@ -1430,9 +1412,8 @@ msgid "Bond"
1430
1412
  msgstr ""
1431
1413
 
1432
1414
  #: ../lib/hammer_cli_foreman/interface.rb:64
1433
- #, fuzzy
1434
1415
  msgid "Mode"
1435
- msgstr "Modelo"
1416
+ msgstr ""
1436
1417
 
1437
1418
  #: ../lib/hammer_cli_foreman/interface.rb:65
1438
1419
  msgid "Attached devices"
@@ -1451,43 +1432,36 @@ msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-base
1451
1432
  msgstr ""
1452
1433
 
1453
1434
  #: ../lib/hammer_cli_foreman/interface.rb:128
1454
- #, fuzzy
1455
1435
  msgid "Interface created"
1456
- msgstr "Se creó la imagen"
1436
+ msgstr ""
1457
1437
 
1458
1438
  #: ../lib/hammer_cli_foreman/interface.rb:129
1459
- #, fuzzy
1460
1439
  msgid "Could not create the interface"
1461
- msgstr "No se pudo crear la imagen"
1440
+ msgstr ""
1462
1441
 
1463
1442
  #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1464
- #, fuzzy
1465
1443
  msgid "Compute resource specific attributes."
1466
- msgstr "Atributos de recursos de computación."
1444
+ msgstr ""
1467
1445
 
1468
1446
  #: ../lib/hammer_cli_foreman/interface.rb:141
1469
- #, fuzzy
1470
1447
  msgid "Interface updated"
1471
- msgstr "Se actualizó la imagen"
1448
+ msgstr ""
1472
1449
 
1473
1450
  #: ../lib/hammer_cli_foreman/interface.rb:142
1474
- #, fuzzy
1475
1451
  msgid "Could not update the interface"
1476
- msgstr "No se pudo actualizar la imagen"
1452
+ msgstr ""
1477
1453
 
1478
1454
  #: ../lib/hammer_cli_foreman/interface.rb:154
1479
- #, fuzzy
1480
1455
  msgid "Interface deleted"
1481
- msgstr "Se borró la imagen"
1456
+ msgstr ""
1482
1457
 
1483
1458
  #: ../lib/hammer_cli_foreman/interface.rb:155
1484
- #, fuzzy
1485
1459
  msgid "Could not delete the interface"
1486
- msgstr "No se pudo borrar la imagen"
1460
+ msgstr ""
1487
1461
 
1488
1462
  #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
1489
1463
  msgid "Location numeric id to search by"
1490
- msgstr "Id. numérico de ubicación para la búsqueda"
1464
+ msgstr "ID numérico de ubicación para la búsqueda"
1491
1465
 
1492
1466
  #: ../lib/hammer_cli_foreman/location.rb:37 ../lib/hammer_cli_foreman/references.rb:18
1493
1467
  msgid "Organizations"
@@ -1499,7 +1473,7 @@ msgstr "Ubicación creada"
1499
1473
 
1500
1474
  #: ../lib/hammer_cli_foreman/location.rb:53
1501
1475
  msgid "Could not create the location"
1502
- msgstr "No se puede crear la ubicación"
1476
+ msgstr "No se pudo crear la ubicación"
1503
1477
 
1504
1478
  #: ../lib/hammer_cli_foreman/location.rb:64
1505
1479
  msgid "Location updated"
@@ -1517,6 +1491,40 @@ msgstr "Se borró la ubicación"
1517
1491
  msgid "Could not delete the location"
1518
1492
  msgstr "No se pudo borrar la ubicación"
1519
1493
 
1494
+ #: ../lib/hammer_cli_foreman/location.rb:86
1495
+ #, fuzzy
1496
+ msgid "Create or update parameter for a location."
1497
+ msgstr "Crear o actualizar parámetro de dominio."
1498
+
1499
+ #: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
1500
+ #, fuzzy
1501
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1502
+ msgstr "Se actualizó el parámetro [%{name}] a [%{value}]."
1503
+
1504
+ #: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
1505
+ msgid "Parameter [%{name}] created with value [%{value}]"
1506
+ msgstr ""
1507
+
1508
+ #: ../lib/hammer_cli_foreman/location.rb:90
1509
+ #, fuzzy
1510
+ msgid "Could not set location parameter"
1511
+ msgstr "No se pudo establecer el parámetro de dominio"
1512
+
1513
+ #: ../lib/hammer_cli_foreman/location.rb:97
1514
+ #, fuzzy
1515
+ msgid "Delete parameter for a location."
1516
+ msgstr "Borrar parámetro de dominio"
1517
+
1518
+ #: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
1519
+ #, fuzzy
1520
+ msgid "Parameter [%{name}] deleted"
1521
+ msgstr "Se borró el parámetro global [%{name}]."
1522
+
1523
+ #: ../lib/hammer_cli_foreman/location.rb:100
1524
+ #, fuzzy
1525
+ msgid "Could not delete location parameter"
1526
+ msgstr "No se pudo establecer el parámetro de dominio"
1527
+
1520
1528
  #: ../lib/hammer_cli_foreman/media.rb:11
1521
1529
  msgid "Path"
1522
1530
  msgstr "Ruta"
@@ -1551,7 +1559,7 @@ msgstr "No se pudo borrar el medio de instalación"
1551
1559
 
1552
1560
  #: ../lib/hammer_cli_foreman/model.rb:12
1553
1561
  msgid "Vendor class"
1554
- msgstr "Clase de Proveedor"
1562
+ msgstr "Clase de proveedor"
1555
1563
 
1556
1564
  #: ../lib/hammer_cli_foreman/model.rb:13
1557
1565
  msgid "HW model"
@@ -1603,11 +1611,11 @@ msgstr "Versión secundaria"
1603
1611
 
1604
1612
  #: ../lib/hammer_cli_foreman/operating_system.rb:25
1605
1613
  msgid "Partition tables"
1606
- msgstr "Tablas de partición"
1614
+ msgstr "Tablas de particiones"
1607
1615
 
1608
1616
  #: ../lib/hammer_cli_foreman/operating_system.rb:28
1609
1617
  msgid "Default templates"
1610
- msgstr "Plantillas por defecto"
1618
+ msgstr "Plantillas predeterminadas"
1611
1619
 
1612
1620
  #: ../lib/hammer_cli_foreman/operating_system.rb:31
1613
1621
  msgid "Architectures"
@@ -1647,7 +1655,7 @@ msgstr "Se actualizó el parámetro del sistema operativo"
1647
1655
 
1648
1656
  #: ../lib/hammer_cli_foreman/operating_system.rb:71
1649
1657
  msgid "New operating system parameter created"
1650
- msgstr "Se creó un nuevo parámetro de sistema operativo"
1658
+ msgstr "Se creó un parámetro de sistema operativo"
1651
1659
 
1652
1660
  #: ../lib/hammer_cli_foreman/operating_system.rb:72
1653
1661
  msgid "Could not set operating system parameter"
@@ -1659,23 +1667,23 @@ msgstr "Borrar parámetro de un sistema operativo."
1659
1667
 
1660
1668
  #: ../lib/hammer_cli_foreman/operating_system.rb:86
1661
1669
  msgid "operating system parameter deleted"
1662
- msgstr "parámetro de sistema operativo borrado"
1670
+ msgstr "Parámetro de sistema operativo ha sido borrado"
1663
1671
 
1664
1672
  #: ../lib/hammer_cli_foreman/operating_system.rb:101 ../lib/hammer_cli_foreman/operating_system.rb:167
1665
1673
  msgid "operatingsystem id"
1666
- msgstr "operatingsystem id"
1674
+ msgstr "ID de sistema operativo"
1667
1675
 
1668
1676
  #: ../lib/hammer_cli_foreman/operating_system.rb:102
1669
1677
  msgid "config template id to be set"
1670
- msgstr "id de plantilla de configuración a establecer"
1678
+ msgstr "ID de plantilla de configuración a establecer"
1671
1679
 
1672
1680
  #: ../lib/hammer_cli_foreman/operating_system.rb:105
1673
1681
  msgid "[%{config_template_name}] was set as default %{template_kind_name} template"
1674
- msgstr "[%{config_template_name}] se estableció como plantilla %{template_kind_name} por defecto"
1682
+ msgstr "[%{config_template_name}] se estableció como plantilla %{template_kind_name} predeterminada"
1675
1683
 
1676
1684
  #: ../lib/hammer_cli_foreman/operating_system.rb:106
1677
1685
  msgid "Could not set the os default template"
1678
- msgstr "No se pudo establecer la plantilla de so por defecto"
1686
+ msgstr "No se pudo establecer la plantilla de SO predeterminada"
1679
1687
 
1680
1688
  #: ../lib/hammer_cli_foreman/operating_system.rb:168
1681
1689
  msgid "Type of the config template"
@@ -1683,31 +1691,31 @@ msgstr "Tipo de la plantilla de configuración"
1683
1691
 
1684
1692
  #: ../lib/hammer_cli_foreman/operating_system.rb:170
1685
1693
  msgid "Default template deleted"
1686
- msgstr "Se borró la plantilla por defecto"
1694
+ msgstr "Ha sido borrada la plantilla predeterminada "
1687
1695
 
1688
1696
  #: ../lib/hammer_cli_foreman/operating_system.rb:171
1689
1697
  msgid "Could not delete the default template"
1690
- msgstr "No se pudo borrar la plantilla por defecto"
1698
+ msgstr "No se pudo borrar la plantilla predeterminada"
1691
1699
 
1692
1700
  #: ../lib/hammer_cli_foreman/operating_system.rb:178
1693
1701
  msgid "Default template of type %s not found"
1694
- msgstr "No se encontró la plantilla por defecto del tipo %s"
1702
+ msgstr "No se encontró la plantilla predeterminada del tipo %s"
1695
1703
 
1696
1704
  #: ../lib/hammer_cli_foreman/organization.rb:37 ../lib/hammer_cli_foreman/references.rb:15
1697
1705
  msgid "Locations"
1698
- msgstr "Lugares"
1706
+ msgstr "Ubicaciones"
1699
1707
 
1700
1708
  #: ../lib/hammer_cli_foreman/organization.rb:53
1701
1709
  msgid "Organization created"
1702
- msgstr "Se creó la organización"
1710
+ msgstr "Se creó organización"
1703
1711
 
1704
1712
  #: ../lib/hammer_cli_foreman/organization.rb:54
1705
1713
  msgid "Could not create the organization"
1706
- msgstr "No se pudo crear la organización"
1714
+ msgstr "No se pudo crear organización"
1707
1715
 
1708
1716
  #: ../lib/hammer_cli_foreman/organization.rb:65
1709
1717
  msgid "Organization updated"
1710
- msgstr "Se actualizó la organización"
1718
+ msgstr "Se actualizó organización"
1711
1719
 
1712
1720
  #: ../lib/hammer_cli_foreman/organization.rb:66
1713
1721
  msgid "Could not update the organization"
@@ -1715,19 +1723,38 @@ msgstr "No se pudo actualizar la organización"
1715
1723
 
1716
1724
  #: ../lib/hammer_cli_foreman/organization.rb:77
1717
1725
  msgid "Organization deleted"
1718
- msgstr "Se borró la organización"
1726
+ msgstr "Se borró organización"
1719
1727
 
1720
1728
  #: ../lib/hammer_cli_foreman/organization.rb:78
1721
1729
  msgid "Could not delete the organization"
1722
1730
  msgstr "No se pudo borrar la organización"
1723
1731
 
1732
+ #: ../lib/hammer_cli_foreman/organization.rb:87
1733
+ #, fuzzy
1734
+ msgid "Create or update parameter for an organization."
1735
+ msgstr "Crear o actualizar parámetro de dominio."
1736
+
1737
+ #: ../lib/hammer_cli_foreman/organization.rb:91
1738
+ #, fuzzy
1739
+ msgid "Could not set organization parameter"
1740
+ msgstr "No se pudo establecer el parámetro de dominio"
1741
+
1742
+ #: ../lib/hammer_cli_foreman/organization.rb:98
1743
+ #, fuzzy
1744
+ msgid "Delete parameter for an organization."
1745
+ msgstr "Borrar parámetro de dominio"
1746
+
1747
+ #: ../lib/hammer_cli_foreman/organization.rb:101
1748
+ msgid "Could not delete organization parameter"
1749
+ msgstr ""
1750
+
1724
1751
  #: ../lib/hammer_cli_foreman/partition_table.rb:31
1725
1752
  msgid "View partition table content."
1726
1753
  msgstr "Mostrar contenido de la tabla de particiones."
1727
1754
 
1728
1755
  #: ../lib/hammer_cli_foreman/partition_table.rb:43 ../lib/hammer_cli_foreman/partition_table.rb:54
1729
1756
  msgid "Path to a file that contains the partition layout"
1730
- msgstr "Ruta al fichero que contiene el diseño de particiones"
1757
+ msgstr "Ruta al archivo que contiene el diseño de particiones"
1731
1758
 
1732
1759
  #: ../lib/hammer_cli_foreman/partition_table.rb:46
1733
1760
  msgid "Partition table created"
@@ -1783,15 +1810,15 @@ msgstr "Usuarios"
1783
1810
 
1784
1811
  #: ../lib/hammer_cli_foreman/references.rb:34
1785
1812
  msgid "User groups"
1786
- msgstr "Grupo de usuarios"
1813
+ msgstr "Grupos de usuarios"
1787
1814
 
1788
1815
  #: ../lib/hammer_cli_foreman/references.rb:42
1789
1816
  msgid "Smart proxies"
1790
- msgstr "Proxies inteligentes"
1817
+ msgstr "Proxis inteligentes"
1791
1818
 
1792
1819
  #: ../lib/hammer_cli_foreman/references.rb:50
1793
1820
  msgid "Compute resources"
1794
- msgstr "Recursos de computación"
1821
+ msgstr "Recursos de cómputo"
1795
1822
 
1796
1823
  #: ../lib/hammer_cli_foreman/references.rb:58
1797
1824
  msgid "Installation media"
@@ -1811,7 +1838,7 @@ msgstr "Entornos"
1811
1838
 
1812
1839
  #: ../lib/hammer_cli_foreman/references.rb:90
1813
1840
  msgid "Hostgroups"
1814
- msgstr "Gruposdehosts"
1841
+ msgstr "Grupos de hosts"
1815
1842
 
1816
1843
  #: ../lib/hammer_cli_foreman/references.rb:98
1817
1844
  msgid "Subnets"
@@ -1823,7 +1850,7 @@ msgstr "Parámetros"
1823
1850
 
1824
1851
  #: ../lib/hammer_cli_foreman/references.rb:115
1825
1852
  msgid "Puppetclasses"
1826
- msgstr "ClasesPuppet"
1853
+ msgstr "Puppetclasses"
1827
1854
 
1828
1855
  #: ../lib/hammer_cli_foreman/references.rb:123
1829
1856
  msgid "Operating systems"
@@ -1847,11 +1874,11 @@ msgstr "Reiniciado"
1847
1874
 
1848
1875
  #: ../lib/hammer_cli_foreman/report.rb:16 ../lib/hammer_cli_foreman/report.rb:37
1849
1876
  msgid "Failed"
1850
- msgstr "Errores"
1877
+ msgstr "Falló"
1851
1878
 
1852
1879
  #: ../lib/hammer_cli_foreman/report.rb:17 ../lib/hammer_cli_foreman/report.rb:38
1853
1880
  msgid "Restart Failures"
1854
- msgstr "Reintentar Fallos"
1881
+ msgstr "Reiniciar fallos"
1855
1882
 
1856
1883
  #: ../lib/hammer_cli_foreman/report.rb:18 ../lib/hammer_cli_foreman/report.rb:39
1857
1884
  msgid "Skipped"
@@ -1875,7 +1902,7 @@ msgstr "Métricas del informe"
1875
1902
 
1876
1903
  #: ../lib/hammer_cli_foreman/report.rb:46
1877
1904
  msgid "config_retrieval"
1878
- msgstr "config_recuperación"
1905
+ msgstr "config_retrieval"
1879
1906
 
1880
1907
  #: ../lib/hammer_cli_foreman/report.rb:47
1881
1908
  msgid "exec"
@@ -1915,7 +1942,7 @@ msgstr "total"
1915
1942
 
1916
1943
  #: ../lib/hammer_cli_foreman/report.rb:59
1917
1944
  msgid "Logs"
1918
- msgstr "Logs"
1945
+ msgstr "Registros"
1919
1946
 
1920
1947
  #: ../lib/hammer_cli_foreman/report.rb:65
1921
1948
  msgid "Message"
@@ -1933,51 +1960,62 @@ msgstr "No se pudo borrar el informe"
1933
1960
  msgid "The server does not support such operation."
1934
1961
  msgstr "El servidor no soporta esa operación."
1935
1962
 
1936
- #: ../lib/hammer_cli_foreman/role.rb:23
1963
+ #: ../lib/hammer_cli_foreman/role.rb:20
1964
+ #, fuzzy
1965
+ msgid "Builtin"
1966
+ msgstr "Compilar"
1967
+
1968
+ #: ../lib/hammer_cli_foreman/role.rb:24
1969
+ msgid "No"
1970
+ msgstr ""
1971
+
1972
+ #: ../lib/hammer_cli_foreman/role.rb:24
1973
+ msgid "Yes"
1974
+ msgstr ""
1975
+
1976
+ #: ../lib/hammer_cli_foreman/role.rb:36
1937
1977
  msgid "User role id"
1938
1978
  msgstr "ID de rol de usuario"
1939
1979
 
1940
- #: ../lib/hammer_cli_foreman/role.rb:47
1980
+ #: ../lib/hammer_cli_foreman/role.rb:60
1941
1981
  msgid "User role [%<name>s] created"
1942
1982
  msgstr "Rol de usuario [%<name>s] creado"
1943
1983
 
1944
- #: ../lib/hammer_cli_foreman/role.rb:48
1984
+ #: ../lib/hammer_cli_foreman/role.rb:61
1945
1985
  msgid "Could not create the user role"
1946
1986
  msgstr "No se pudo crear el rol de usuario"
1947
1987
 
1948
- #: ../lib/hammer_cli_foreman/role.rb:55
1988
+ #: ../lib/hammer_cli_foreman/role.rb:68
1949
1989
  msgid "User role [%<name>s] updated"
1950
1990
  msgstr "Rol de usuario [%<name>s] actualizado"
1951
1991
 
1952
- #: ../lib/hammer_cli_foreman/role.rb:56
1992
+ #: ../lib/hammer_cli_foreman/role.rb:69
1953
1993
  msgid "Could not update the user role"
1954
1994
  msgstr "No se pudo actualizar el rol de usuario"
1955
1995
 
1956
- #: ../lib/hammer_cli_foreman/role.rb:63
1996
+ #: ../lib/hammer_cli_foreman/role.rb:76
1957
1997
  msgid "User role [%<name>s] deleted"
1958
1998
  msgstr "Rol de usuario [%<name>s] borrado"
1959
1999
 
1960
- #: ../lib/hammer_cli_foreman/role.rb:64
2000
+ #: ../lib/hammer_cli_foreman/role.rb:77
1961
2001
  msgid "Could not delete the user roles"
1962
- msgstr "No se pudo borrar los roles del usuario"
2002
+ msgstr "No se pudieron borrar los roles del usuario"
1963
2003
 
1964
2004
  #: ../lib/hammer_cli_foreman/settings.rb:28
1965
- #, fuzzy
1966
2005
  msgid "Setting [%{name}] updated to [%{value}]"
1967
- msgstr "Se actualizó el parámetro [%{name}] a [%{value}]."
2006
+ msgstr ""
1968
2007
 
1969
2008
  #: ../lib/hammer_cli_foreman/settings.rb:29
1970
- #, fuzzy
1971
2009
  msgid "Could not update the setting"
1972
- msgstr "No se pudo actualizar el dominio"
2010
+ msgstr ""
1973
2011
 
1974
2012
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
1975
2013
  msgid "Default Value"
1976
- msgstr "Valor por Defecto"
2014
+ msgstr "Valor predeterminado"
1977
2015
 
1978
2016
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:12
1979
2017
  msgid "Override"
1980
- msgstr "Reemplazar"
2018
+ msgstr "Sobrescribir"
1981
2019
 
1982
2020
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:36 ../lib/hammer_cli_foreman/smart_variable.rb:27
1983
2021
  msgid "Puppet class"
@@ -1989,7 +2027,7 @@ msgstr "Id de clase"
1989
2027
 
1990
2028
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:63
1991
2029
  msgid "Required"
1992
- msgstr "Necesario"
2030
+ msgstr "Obligatorio"
1993
2031
 
1994
2032
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:65 ../lib/hammer_cli_foreman/smart_variable.rb:53
1995
2033
  msgid "Validator"
@@ -2001,16 +2039,15 @@ msgstr "Regla"
2001
2039
 
2002
2040
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:69 ../lib/hammer_cli_foreman/smart_variable.rb:57
2003
2041
  msgid "Override values"
2004
- msgstr "Reemplazar valores"
2042
+ msgstr "Sobrescribir valores"
2005
2043
 
2006
2044
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:58
2007
2045
  msgid "Merge overrides"
2008
2046
  msgstr ""
2009
2047
 
2010
2048
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
2011
- #, fuzzy
2012
2049
  msgid "Merge default value"
2013
- msgstr "Valor predeterminado"
2050
+ msgstr ""
2014
2051
 
2015
2052
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
2016
2053
  msgid "Avoid duplicates"
@@ -2021,9 +2058,8 @@ msgid "Order"
2021
2058
  msgstr "Orden"
2022
2059
 
2023
2060
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
2024
- #, fuzzy
2025
2061
  msgid "Values"
2026
- msgstr "Valor"
2062
+ msgstr ""
2027
2063
 
2028
2064
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
2029
2065
  msgid "Match"
@@ -2039,7 +2075,7 @@ msgstr "No se pudo actualizar el parámetro"
2039
2075
 
2040
2076
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:111
2041
2077
  msgid "Override this parameter."
2042
- msgstr "Reemplazar este parámetro."
2078
+ msgstr "Sobrescribir este parámetro."
2043
2079
 
2044
2080
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:113
2045
2081
  msgid "This parameter is required."
@@ -2054,24 +2090,20 @@ msgid "Type of the validator."
2054
2090
  msgstr "Tipo de validador."
2055
2091
 
2056
2092
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
2057
- #, fuzzy
2058
2093
  msgid "Override value created"
2059
- msgstr "Reemplazar valores"
2094
+ msgstr ""
2060
2095
 
2061
2096
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133 ../lib/hammer_cli_foreman/smart_variable.rb:123
2062
- #, fuzzy
2063
2097
  msgid "Could not create the override_value"
2064
- msgstr "No se pudo crear el rol de usuario"
2098
+ msgstr ""
2065
2099
 
2066
2100
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
2067
- #, fuzzy
2068
2101
  msgid "Override value deleted"
2069
- msgstr "Reemplazar valores"
2102
+ msgstr ""
2070
2103
 
2071
2104
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:153 ../lib/hammer_cli_foreman/smart_variable.rb:136
2072
- #, fuzzy
2073
2105
  msgid "Could not delete the override value"
2074
- msgstr "No se pudo borrar el sistema operativo"
2106
+ msgstr ""
2075
2107
 
2076
2108
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2077
2109
  msgid "URL"
@@ -2079,11 +2111,11 @@ msgstr "URL"
2079
2111
 
2080
2112
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
2081
2113
  msgid "Features"
2082
- msgstr "Características"
2114
+ msgstr "Funcionalidades"
2083
2115
 
2084
2116
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:41
2085
2117
  msgid "Smart proxy created"
2086
- msgstr "Se creó el smart proxy"
2118
+ msgstr "Se creó proxy inteligente"
2087
2119
 
2088
2120
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:42
2089
2121
  msgid "Could not create the proxy"
@@ -2091,7 +2123,7 @@ msgstr "No se pudo crear el proxy"
2091
2123
 
2092
2124
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:49
2093
2125
  msgid "Smart proxy updated"
2094
- msgstr "Se actualizó el smart proxy"
2126
+ msgstr "Se actualizó el proxy inteligente"
2095
2127
 
2096
2128
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:50
2097
2129
  msgid "Could not update the proxy"
@@ -2099,7 +2131,7 @@ msgstr "No se pudo actualizar el proxy"
2099
2131
 
2100
2132
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:57
2101
2133
  msgid "Smart proxy deleted"
2102
- msgstr "Se borró el smart proxy"
2134
+ msgstr "Se borró el proxy inteligente"
2103
2135
 
2104
2136
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:58
2105
2137
  msgid "Could not delete the proxy"
@@ -2111,7 +2143,7 @@ msgstr "Se importaron las clases Puppet"
2111
2143
 
2112
2144
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:70
2113
2145
  msgid "Import of puppet classes failed"
2114
- msgstr "Fallo en la importación de clases puppet"
2146
+ msgstr "Falló la importación de clases Puppet"
2115
2147
 
2116
2148
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:72
2117
2149
  msgid "Do not run the import"
@@ -2119,43 +2151,39 @@ msgstr "No ejecutar la importación"
2119
2151
 
2120
2152
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:92
2121
2153
  msgid "Smart proxy features were refreshed"
2122
- msgstr "Se actualizaron las capacidades del proxy inteligente"
2154
+ msgstr "Se actualizaron las funcionalidades del proxy inteligente"
2123
2155
 
2124
2156
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:93
2125
2157
  msgid "Refresh of smart proxy features failed"
2126
- msgstr "Error al actualizar las capacidades del proxy inteligente"
2158
+ msgstr "Error al actualizar las funcionalidades del proxy inteligente"
2127
2159
 
2128
2160
  #: ../lib/hammer_cli_foreman/smart_variable.rb:82
2129
2161
  msgid "Smart variable [%{variable}] created"
2130
2162
  msgstr ""
2131
2163
 
2132
2164
  #: ../lib/hammer_cli_foreman/smart_variable.rb:83
2133
- #, fuzzy
2134
2165
  msgid "Could not create the smart variable"
2135
- msgstr "No se pudo crear la tabla de particiones"
2166
+ msgstr ""
2136
2167
 
2137
2168
  #: ../lib/hammer_cli_foreman/smart_variable.rb:87 ../lib/hammer_cli_foreman/smart_variable.rb:101
2138
- #, fuzzy
2139
2169
  msgid "Type of the variable."
2140
- msgstr "Tipo de validador."
2170
+ msgstr ""
2141
2171
 
2142
2172
  #: ../lib/hammer_cli_foreman/smart_variable.rb:96
2143
2173
  msgid "Smart variable [%{variable}] updated"
2144
2174
  msgstr ""
2145
2175
 
2146
2176
  #: ../lib/hammer_cli_foreman/smart_variable.rb:97
2147
- #, fuzzy
2148
2177
  msgid "Could not update the smart variable"
2149
- msgstr "No se pudo actualizar la tabla de particiones"
2178
+ msgstr ""
2150
2179
 
2151
2180
  #: ../lib/hammer_cli_foreman/smart_variable.rb:111
2152
2181
  msgid "Smart variable [%{variable}] deleted"
2153
2182
  msgstr ""
2154
2183
 
2155
2184
  #: ../lib/hammer_cli_foreman/smart_variable.rb:112
2156
- #, fuzzy
2157
2185
  msgid "Could not delete the smart variable"
2158
- msgstr "No se pudo borrar la tabla de particiones"
2186
+ msgstr ""
2159
2187
 
2160
2188
  #: ../lib/hammer_cli_foreman/subnet.rb:13
2161
2189
  msgid "Mask"
@@ -2185,13 +2213,17 @@ msgstr "TFTP"
2185
2213
  msgid "DHCP"
2186
2214
  msgstr "DHCP"
2187
2215
 
2216
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2217
+ msgid "IPAM"
2218
+ msgstr ""
2219
+
2188
2220
  #: ../lib/hammer_cli_foreman/subnet.rb:30
2189
2221
  msgid "VLAN ID"
2190
2222
  msgstr "ID de VLAN"
2191
2223
 
2192
2224
  #: ../lib/hammer_cli_foreman/subnet.rb:31
2193
2225
  msgid "Gateway"
2194
- msgstr "Puerta de Enlace"
2226
+ msgstr "Puerta de enlace"
2195
2227
 
2196
2228
  #: ../lib/hammer_cli_foreman/subnet.rb:32
2197
2229
  msgid "From"
@@ -2203,7 +2235,7 @@ msgstr "A"
2203
2235
 
2204
2236
  #: ../lib/hammer_cli_foreman/subnet.rb:44
2205
2237
  msgid "Subnet created"
2206
- msgstr "Se creó la subred"
2238
+ msgstr "Se creó subred"
2207
2239
 
2208
2240
  #: ../lib/hammer_cli_foreman/subnet.rb:45
2209
2241
  msgid "Could not create the subnet"
@@ -2211,7 +2243,7 @@ msgstr "No se pudo crear la subred"
2211
2243
 
2212
2244
  #: ../lib/hammer_cli_foreman/subnet.rb:53
2213
2245
  msgid "Subnet updated"
2214
- msgstr "Se actualizó la subred"
2246
+ msgstr "Se actualizó subred"
2215
2247
 
2216
2248
  #: ../lib/hammer_cli_foreman/subnet.rb:54
2217
2249
  msgid "Could not update the subnet"
@@ -2227,7 +2259,7 @@ msgstr "No pudo borrarse la subred"
2227
2259
 
2228
2260
  #: ../lib/hammer_cli_foreman/template.rb:71
2229
2261
  msgid "List available config template kinds."
2230
- msgstr "Lista de tipos de plantillas de configuración."
2262
+ msgstr "Listar tipos de plantillas de configuración."
2231
2263
 
2232
2264
  #: ../lib/hammer_cli_foreman/template.rb:90
2233
2265
  msgid "View config template content."
@@ -2267,15 +2299,15 @@ msgstr "No se pudo borrar la plantilla de configuración"
2267
2299
 
2268
2300
  #: ../lib/hammer_cli_foreman/template.rb:150
2269
2301
  msgid "Update the default PXE menu on all configured TFTP servers"
2270
- msgstr ""
2302
+ msgstr "Actualizar el menú por defecto de PXE en todos los servidores TFTP configurados"
2271
2303
 
2272
2304
  #: ../lib/hammer_cli_foreman/user.rb:11
2273
2305
  msgid "Login"
2274
- msgstr "Conectar"
2306
+ msgstr "Registro"
2275
2307
 
2276
2308
  #: ../lib/hammer_cli_foreman/user.rb:13
2277
2309
  msgid "Email"
2278
- msgstr "Email"
2310
+ msgstr "Correo-e"
2279
2311
 
2280
2312
  #: ../lib/hammer_cli_foreman/user.rb:28
2281
2313
  msgid "Admin"
@@ -2287,7 +2319,7 @@ msgstr "Autorizado por"
2287
2319
 
2288
2320
  #: ../lib/hammer_cli_foreman/user.rb:30
2289
2321
  msgid "Locale"
2290
- msgstr ""
2322
+ msgstr "Idioma"
2291
2323
 
2292
2324
  #: ../lib/hammer_cli_foreman/user.rb:31
2293
2325
  msgid "Timezone"
@@ -2295,25 +2327,23 @@ msgstr ""
2295
2327
 
2296
2328
  #: ../lib/hammer_cli_foreman/user.rb:32
2297
2329
  msgid "Last login"
2298
- msgstr "Último login"
2330
+ msgstr "Último inicio de sesión"
2299
2331
 
2300
2332
  #: ../lib/hammer_cli_foreman/user.rb:33
2301
- #, fuzzy
2302
2333
  msgid "Default organization"
2303
- msgstr "Manipular organizaciones."
2334
+ msgstr "Organización por defecto"
2304
2335
 
2305
2336
  #: ../lib/hammer_cli_foreman/user.rb:34
2306
- #, fuzzy
2307
2337
  msgid "Default location"
2308
- msgstr "Manipular ubicaciones."
2338
+ msgstr "Ubicación por defecto"
2309
2339
 
2310
2340
  #: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
2311
2341
  msgid "default"
2312
- msgstr ""
2342
+ msgstr "por defecto"
2313
2343
 
2314
2344
  #: ../lib/hammer_cli_foreman/user.rb:53
2315
2345
  msgid "User [%{login}] created"
2316
- msgstr ""
2346
+ msgstr "Se creó el usuario [%{login}]"
2317
2347
 
2318
2348
  #: ../lib/hammer_cli_foreman/user.rb:54
2319
2349
  msgid "Could not create the user"
@@ -2321,7 +2351,7 @@ msgstr "No se pudo crear el usuario"
2321
2351
 
2322
2352
  #: ../lib/hammer_cli_foreman/user.rb:61
2323
2353
  msgid "User [%{login}] updated"
2324
- msgstr ""
2354
+ msgstr "Se actualizó el usuario [%{login}] "
2325
2355
 
2326
2356
  #: ../lib/hammer_cli_foreman/user.rb:62
2327
2357
  msgid "Could not update the user"
@@ -2329,7 +2359,7 @@ msgstr "No se pudo actualizar el usuario"
2329
2359
 
2330
2360
  #: ../lib/hammer_cli_foreman/user.rb:69
2331
2361
  msgid "User [%{login}] deleted"
2332
- msgstr ""
2362
+ msgstr "Se borró el usuario [%{login}]"
2333
2363
 
2334
2364
  #: ../lib/hammer_cli_foreman/user.rb:70
2335
2365
  msgid "Could not delete the user"
@@ -2359,62 +2389,6 @@ msgstr "Se borró el grupo de usuarios [%<name>s]"
2359
2389
  msgid "Could not delete the user group"
2360
2390
  msgstr "No se pudo borrar el grupo de usuarios"
2361
2391
 
2362
- #: lib/hammer_cli_foreman/host.rb:171
2363
- #~ msgid "Disk"
2364
- #~ msgstr "Disco"
2365
-
2366
- #: lib/hammer_cli_foreman/host.rb:189
2367
- #~ msgid "Puppet Proxy Id"
2368
- #~ msgstr "Id del proxy Puppet"
2369
-
2370
- #: lib/hammer_cli_foreman/host.rb:198
2371
- #~ msgid "BMC Network Interfaces"
2372
- #~ msgstr "Interfaces de red BMC"
2373
-
2374
- #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
2375
- #~ msgid "Domain Id"
2376
- #~ msgstr "Id de Dominio"
2377
-
2378
- #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
2379
- #~ msgid "Domain Name"
2380
- #~ msgstr "Nombre de dominio"
2381
-
2382
- #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
2383
- #~ msgid "Subnet Id"
2384
- #~ msgstr "Id de Subred"
2385
-
2386
- #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
2387
- #~ msgid "Subnet Name"
2388
- #~ msgstr "Nombre de subred"
2389
-
2390
- #: lib/hammer_cli_foreman/host.rb:207
2391
- #~ msgid "BMC Username"
2392
- #~ msgstr "Usuario de BMC"
2393
-
2394
- #: lib/hammer_cli_foreman/host.rb:208
2395
- #~ msgid "BMC Password"
2396
- #~ msgstr "Password de BMC"
2397
-
2398
- #: lib/hammer_cli_foreman/host.rb:211
2399
- #~ msgid "Managed Network Interfaces"
2400
- #~ msgstr "Interfaces de red gestionados"
2401
-
2402
- #: lib/hammer_cli_foreman/commands.rb:288
2403
- #~ msgid "List next page? (%s): "
2404
- #~ msgstr "¿Nueva página de lista? (%s): "
2405
-
2406
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
2407
- #~ msgid "Count"
2408
- #~ msgstr "Cuenta"
2409
-
2410
- #: lib/hammer_cli_foreman/user.rb:47
2411
- #~ msgid "User created"
2412
- #~ msgstr "Se creó el usuario"
2413
-
2414
- #: lib/hammer_cli_foreman/user.rb:55
2415
- #~ msgid "User updated"
2416
- #~ msgstr "Se actualizó el usuario"
2417
-
2418
- #: lib/hammer_cli_foreman/user.rb:63
2419
- #~ msgid "User deleted"
2420
- #~ msgstr "Se borró el usuario"
2392
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:201
2393
+ #~ msgid "%s found more than once"
2394
+ #~ msgstr "%s se encontró más de una vez"