hammer_cli_foreman 0.4.0 → 0.5.0

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