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
@@ -6,133 +6,131 @@
6
6
  # Dominic Cleal <dcleal@redhat.com>, 2014
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: hammer-cli-foreman 0.3.0\n"
9
+ "Project-Id-Version: hammer-cli-foreman 0.4.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-09-21 16:50+0200\n"
12
- "PO-Revision-Date: 2015-03-22 03:37+0000\n"
13
- "Last-Translator: Lukáš Zapletal\n"
14
- "Language-Team: Korean (http://www.transifex.com/projects/p/foreman/language/ko"
15
- "/)\n"
11
+ "POT-Creation-Date: 2015-12-11 04:48+0000\n"
12
+ "PO-Revision-Date: 2015-10-08 11:29+0000\n"
13
+ "Last-Translator: mbacovsky <martin.bacovsky@gmail.com>\n"
14
+ "Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
16
15
  "MIME-Version: 1.0\n"
17
16
  "Content-Type: text/plain; charset=UTF-8\n"
18
17
  "Content-Transfer-Encoding: 8bit\n"
19
18
  "Language: ko\n"
20
19
  "Plural-Forms: nplurals=1; plural=0;\n"
21
20
 
22
- #: ../lib/hammer_cli_foreman.rb:30
21
+ #: ../lib/hammer_cli_foreman.rb:32
23
22
  msgid "Foreman connection login/logout."
24
23
  msgstr "Foreman 연결 로그인/로그아웃."
25
24
 
26
- #: ../lib/hammer_cli_foreman.rb:34
25
+ #: ../lib/hammer_cli_foreman.rb:36
27
26
  msgid "Manipulate architectures."
28
27
  msgstr "아키텍처를 조정합니다."
29
28
 
30
- #: ../lib/hammer_cli_foreman.rb:38
29
+ #: ../lib/hammer_cli_foreman.rb:40
31
30
  msgid "Manipulate auth sources."
32
- msgstr ""
31
+ msgstr "인증 소스를 조정합니다."
33
32
 
34
- #: ../lib/hammer_cli_foreman.rb:42
33
+ #: ../lib/hammer_cli_foreman.rb:44
35
34
  msgid "Manipulate compute resources."
36
35
  msgstr "컴퓨터 리소스를 조정합니다. "
37
36
 
38
- #: ../lib/hammer_cli_foreman.rb:46
37
+ #: ../lib/hammer_cli_foreman.rb:48
39
38
  msgid "Manipulate domains."
40
39
  msgstr "도메인을 조정합니다. "
41
40
 
42
- #: ../lib/hammer_cli_foreman.rb:50
41
+ #: ../lib/hammer_cli_foreman.rb:52
43
42
  msgid "Manipulate environments."
44
- msgstr ""
43
+ msgstr "환경을 조정합니다."
45
44
 
46
- #: ../lib/hammer_cli_foreman.rb:54
45
+ #: ../lib/hammer_cli_foreman.rb:56
47
46
  msgid "Search facts."
48
- msgstr "정보를 검색합니다. "
47
+ msgstr "팩트를 검색합니다. "
49
48
 
50
- #: ../lib/hammer_cli_foreman.rb:58
49
+ #: ../lib/hammer_cli_foreman.rb:60
51
50
  msgid "Manage permission filters."
52
51
  msgstr "권한 필터를 관리합니다. "
53
52
 
54
- #: ../lib/hammer_cli_foreman.rb:62
53
+ #: ../lib/hammer_cli_foreman.rb:64
55
54
  msgid "Manipulate hosts."
56
- msgstr ""
55
+ msgstr "호스트를 조정합니다."
57
56
 
58
- #: ../lib/hammer_cli_foreman.rb:66
57
+ #: ../lib/hammer_cli_foreman.rb:68
59
58
  msgid "Manipulate hostgroups."
60
59
  msgstr "호스트 그룹을 조정합니다."
61
60
 
62
- #: ../lib/hammer_cli_foreman.rb:70
61
+ #: ../lib/hammer_cli_foreman.rb:72
63
62
  msgid "Manipulate locations."
64
63
  msgstr "위치를 조정합니다. "
65
64
 
66
- #: ../lib/hammer_cli_foreman.rb:74
65
+ #: ../lib/hammer_cli_foreman.rb:76
67
66
  msgid "Manipulate installation media."
68
67
  msgstr "설치 미디어를 조정합니다. "
69
68
 
70
- #: ../lib/hammer_cli_foreman.rb:78
69
+ #: ../lib/hammer_cli_foreman.rb:80
71
70
  msgid "Manipulate hardware models."
72
71
  msgstr "하드웨어 모델을 조정합니다. "
73
72
 
74
- #: ../lib/hammer_cli_foreman.rb:82
73
+ #: ../lib/hammer_cli_foreman.rb:84
75
74
  msgid "Manipulate operating system."
76
- msgstr ""
75
+ msgstr "운영 체제를 조정합니다."
77
76
 
78
- #: ../lib/hammer_cli_foreman.rb:86
77
+ #: ../lib/hammer_cli_foreman.rb:88
79
78
  msgid "Manipulate organizations."
80
79
  msgstr "조직을 조정합니다. "
81
80
 
82
- #: ../lib/hammer_cli_foreman.rb:90
81
+ #: ../lib/hammer_cli_foreman.rb:92
83
82
  msgid "Manipulate partition tables."
84
83
  msgstr "파티션 테이블을 조정합니다. "
85
84
 
86
- #: ../lib/hammer_cli_foreman.rb:94
85
+ #: ../lib/hammer_cli_foreman.rb:96
87
86
  msgid "Search puppet modules."
88
87
  msgstr "puppet 모듈을 검색합니다. "
89
88
 
90
- #: ../lib/hammer_cli_foreman.rb:98
89
+ #: ../lib/hammer_cli_foreman.rb:100
91
90
  msgid "Browse and read reports."
92
91
  msgstr "보고서 검색 및 확인 "
93
92
 
94
- #: ../lib/hammer_cli_foreman.rb:102
93
+ #: ../lib/hammer_cli_foreman.rb:104
95
94
  msgid "Manage user roles."
96
95
  msgstr "사용자 역할을 관리합니다."
97
96
 
98
- #: ../lib/hammer_cli_foreman.rb:106
97
+ #: ../lib/hammer_cli_foreman.rb:108
99
98
  msgid "Manipulate smart class parameters."
100
99
  msgstr "스마트 클래스 매개 변수를 조정합니다. "
101
100
 
102
- #: ../lib/hammer_cli_foreman.rb:110
103
- #, fuzzy
101
+ #: ../lib/hammer_cli_foreman.rb:112
104
102
  msgid "Manipulate smart variables."
105
- msgstr "스마트 프록시를 조정합니다."
103
+ msgstr ""
106
104
 
107
- #: ../lib/hammer_cli_foreman.rb:114
105
+ #: ../lib/hammer_cli_foreman.rb:116
108
106
  msgid "Manipulate smart proxies."
109
107
  msgstr "스마트 프록시를 조정합니다."
110
108
 
111
- #: ../lib/hammer_cli_foreman.rb:118
109
+ #: ../lib/hammer_cli_foreman.rb:120
112
110
  msgid "Change server settings."
113
111
  msgstr ""
114
112
 
115
- #: ../lib/hammer_cli_foreman.rb:122
113
+ #: ../lib/hammer_cli_foreman.rb:124
116
114
  msgid "Manipulate subnets."
117
115
  msgstr "서브넷을 조정합니다."
118
116
 
119
- #: ../lib/hammer_cli_foreman.rb:126
117
+ #: ../lib/hammer_cli_foreman.rb:128
120
118
  msgid "Manipulate config templates."
121
119
  msgstr "설정 템플릿을 조정합니다. "
122
120
 
123
- #: ../lib/hammer_cli_foreman.rb:130
121
+ #: ../lib/hammer_cli_foreman.rb:132
124
122
  msgid "Manipulate users."
125
123
  msgstr "사용자를 조정합니다. "
126
124
 
127
- #: ../lib/hammer_cli_foreman.rb:134
125
+ #: ../lib/hammer_cli_foreman.rb:136
128
126
  msgid "Manage user groups."
129
127
  msgstr "사용자 그룹을 관리합니다."
130
128
 
131
- #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:200 ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
129
+ #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:170 ../lib/hammer_cli_foreman/host.rb:207 ../lib/hammer_cli_foreman/host.rb:238 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
132
130
  msgid "Id"
133
131
  msgstr "ID "
134
132
 
135
- #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:202 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
133
+ #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:171 ../lib/hammer_cli_foreman/host.rb:209 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
136
134
  msgid "Name"
137
135
  msgstr "이름 "
138
136
 
@@ -221,28 +219,24 @@ msgid "Associate an user"
221
219
  msgstr "사용자 연결 "
222
220
 
223
221
  #: ../lib/hammer_cli_foreman/associating_commands.rb:149
224
- #, fuzzy
225
222
  msgid "The user has been associated"
226
- msgstr "아키텍처가 연결되었습니다 "
223
+ msgstr ""
227
224
 
228
225
  #: ../lib/hammer_cli_foreman/associating_commands.rb:150
229
- #, fuzzy
230
226
  msgid "Could not associate the user"
231
- msgstr "사용자를 생성할 수 없습니다 "
227
+ msgstr ""
232
228
 
233
229
  #: ../lib/hammer_cli_foreman/associating_commands.rb:155
234
230
  msgid "Disassociate an user"
235
231
  msgstr "사용자 연결 해제 "
236
232
 
237
233
  #: ../lib/hammer_cli_foreman/associating_commands.rb:157
238
- #, fuzzy
239
234
  msgid "The user has been disassociated"
240
- msgstr "아키텍처가 연결 해제되었습니다 "
235
+ msgstr ""
241
236
 
242
237
  #: ../lib/hammer_cli_foreman/associating_commands.rb:158
243
- #, fuzzy
244
238
  msgid "Could not disassociate the user"
245
- msgstr "아키텍처를 연결 해제할 수 없습니다 "
239
+ msgstr ""
246
240
 
247
241
  #: ../lib/hammer_cli_foreman/associating_commands.rb:167
248
242
  msgid "Associate an user group"
@@ -253,9 +247,8 @@ msgid "The user group has been associated"
253
247
  msgstr ""
254
248
 
255
249
  #: ../lib/hammer_cli_foreman/associating_commands.rb:172
256
- #, fuzzy
257
250
  msgid "Could not associate the user group"
258
- msgstr "사용자 그룹을 생성할 수 없습니다 "
251
+ msgstr ""
259
252
 
260
253
  #: ../lib/hammer_cli_foreman/associating_commands.rb:177
261
254
  msgid "Disassociate an user group"
@@ -266,9 +259,8 @@ msgid "The user group has been disassociated"
266
259
  msgstr ""
267
260
 
268
261
  #: ../lib/hammer_cli_foreman/associating_commands.rb:182
269
- #, fuzzy
270
262
  msgid "Could not disassociate the user group"
271
- msgstr "사용자 그룹을 생성할 수 없습니다 "
263
+ msgstr ""
272
264
 
273
265
  #: ../lib/hammer_cli_foreman/associating_commands.rb:191
274
266
  msgid "Associate a configuration template"
@@ -407,28 +399,26 @@ msgid ""
407
399
  "You are currently not logged in to any service.\n"
408
400
  "Use the service to set credentials."
409
401
  msgstr ""
410
- "현재 어떤 서비스에도 로그이되어 있지 않습니다.\n"
411
- "인증 정보를 설정하기 위해 서비스를 사용합니다."
412
402
 
413
403
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
414
404
  msgid "Manage LDAP auth sources."
415
- msgstr ""
405
+ msgstr "LDAP 인증 소스를 관리합니다. "
416
406
 
417
407
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
418
408
  msgid "LDAPS?"
419
- msgstr ""
409
+ msgstr "LDAPS?"
420
410
 
421
411
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
422
412
  msgid "Port"
423
- msgstr ""
413
+ msgstr "포트"
424
414
 
425
415
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
426
416
  msgid "Server Type"
427
- msgstr ""
417
+ msgstr "서버 유형 "
428
418
 
429
419
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
430
420
  msgid "Account Username"
431
- msgstr ""
421
+ msgstr "계정 사용자 이름 "
432
422
 
433
423
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
434
424
  msgid "Base DN"
@@ -440,77 +430,77 @@ msgstr "LDAP 필터 "
440
430
 
441
431
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
442
432
  msgid "Automatically Create Accounts?"
443
- msgstr ""
433
+ msgstr "자동으로 계정을 생성하시겠습니까? "
444
434
 
445
435
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
446
436
  msgid "Login Name Attribute"
447
- msgstr ""
437
+ msgstr "로그인 이름 속성 "
448
438
 
449
439
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
450
440
  msgid "First Name Attribute"
451
- msgstr ""
441
+ msgstr "이름 속성 "
452
442
 
453
443
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
454
444
  msgid "Last Name Attribute"
455
- msgstr ""
445
+ msgstr "성 속성 "
456
446
 
457
447
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
458
448
  msgid "Email Address Attribute"
459
- msgstr ""
449
+ msgstr "이메일 주소 속성 "
460
450
 
461
451
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
462
452
  msgid "Photo Attribute"
463
- msgstr ""
453
+ msgstr "사진 속성 "
464
454
 
465
455
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
466
456
  msgid "Auth source created"
467
- msgstr ""
457
+ msgstr "인증 소스가 생성되었습니다 "
468
458
 
469
459
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
470
460
  msgid "Could not create the Auth Source"
471
- msgstr ""
461
+ msgstr "인증 소스를 생성할 수 없습니다 "
472
462
 
473
463
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
474
464
  msgid "Auth source deleted"
475
- msgstr ""
465
+ msgstr "인증 소스가 삭제되었습니다 "
476
466
 
477
467
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
478
468
  msgid "Could not delete the Auth Source"
479
- msgstr ""
469
+ msgstr "인증 소스를 삭제할 수 없습니다 "
480
470
 
481
471
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
482
472
  msgid "Auth source updated"
483
- msgstr ""
473
+ msgstr "인증 소스가 업데이트되었습니다 "
484
474
 
485
475
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
486
476
  msgid "Could not update the Auth Source"
487
- msgstr ""
477
+ msgstr "인증 소스를 업데이트할 수 없습니다 "
488
478
 
489
- #: ../lib/hammer_cli_foreman/commands.rb:83
479
+ #: ../lib/hammer_cli_foreman/commands.rb:87
490
480
  msgid "Received data of unknown format"
491
481
  msgstr "알 수 없는 형식의 데이터를 수신했습니다 "
492
482
 
493
- #: ../lib/hammer_cli_foreman/commands.rb:191
483
+ #: ../lib/hammer_cli_foreman/commands.rb:195
494
484
  msgid "Could not find %{resource}. Some search options were missing, please see --help."
495
- msgstr ""
485
+ msgstr "%{resource}를 찾을 수 없습니다. 일부 검색 옵션이 누락되어 있습니다. --help를 참조하십시오. "
496
486
 
497
- #: ../lib/hammer_cli_foreman/commands.rb:193
487
+ #: ../lib/hammer_cli_foreman/commands.rb:197
498
488
  msgid "Could not find %{resource}, please set option %{switches}."
499
- msgstr ""
489
+ msgstr "%{resource}를 찾을 수 없습니다. 옵션 %{switches}을 설정하십시오. "
500
490
 
501
- #: ../lib/hammer_cli_foreman/commands.rb:195
491
+ #: ../lib/hammer_cli_foreman/commands.rb:199
502
492
  msgid "Could not find %{resource}, please set one of options %{switches}."
503
- msgstr ""
493
+ msgstr "%{resource}를 찾을 수 없습니다. 옵션 %{switches} 중 하나를 설정하십시오. "
504
494
 
505
- #: ../lib/hammer_cli_foreman/commands.rb:517
495
+ #: ../lib/hammer_cli_foreman/commands.rb:521
506
496
  msgid "Associate a resource"
507
497
  msgstr "리소스 연결 "
508
498
 
509
- #: ../lib/hammer_cli_foreman/commands.rb:539
499
+ #: ../lib/hammer_cli_foreman/commands.rb:543
510
500
  msgid "Disassociate a resource"
511
501
  msgstr "리소스 연결 해제 "
512
502
 
513
- #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:327 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
503
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:334 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
514
504
  msgid "Value"
515
505
  msgstr "값"
516
506
 
@@ -550,7 +540,7 @@ msgstr "글로벌 매개 변수를 조정합니다. "
550
540
  msgid "Provider"
551
541
  msgstr "공급자 "
552
542
 
553
- #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:201 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
543
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
554
544
  msgid "UUID"
555
545
  msgstr "UUID"
556
546
 
@@ -604,19 +594,23 @@ msgstr "컴퓨터 리소스를 삭제할 수 없습니다 "
604
594
 
605
595
  #: ../lib/hammer_cli_foreman/credentials.rb:26
606
596
  msgid "[Foreman] Username: "
607
- msgstr ""
597
+ msgstr "[Foreman] 사용자 이름: "
608
598
 
609
599
  #: ../lib/hammer_cli_foreman/credentials.rb:33
610
600
  msgid "[Foreman] Password for %s: "
601
+ msgstr "%s의 [Foreman] 암호: "
602
+
603
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
604
+ msgid "Use the default organization and/or location from the server"
611
605
  msgstr ""
612
606
 
613
607
  #: ../lib/hammer_cli_foreman/domain.rb:6
614
608
  msgid "ID of DNS proxy to use within this domain"
615
- msgstr ""
609
+ msgstr "이 도메인에서 사용할 DNS 프록시 ID "
616
610
 
617
611
  #: ../lib/hammer_cli_foreman/domain.rb:7
618
612
  msgid "Name of DNS proxy to use within this domain"
619
- msgstr ""
613
+ msgstr "이 도메인에서 사용할 DNS 프록시 이름 "
620
614
 
621
615
  #: ../lib/hammer_cli_foreman/domain.rb:43
622
616
  msgid "DNS Id"
@@ -704,19 +698,19 @@ msgstr "거부 - 서버가 요청 처리를 거부했습니다 "
704
698
 
705
699
  #: ../lib/hammer_cli_foreman/exception_handler.rb:75
706
700
  msgid "Could not load the API description from the server"
707
- msgstr ""
701
+ msgstr "서버에서 API 설명을 불러올 수 없습니다 "
708
702
 
709
703
  #: ../lib/hammer_cli_foreman/exception_handler.rb:76
710
704
  msgid "is the server down?"
711
- msgstr ""
705
+ msgstr "서버가 중지되어 있습니까?"
712
706
 
713
707
  #: ../lib/hammer_cli_foreman/exception_handler.rb:77
714
708
  msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
715
- msgstr ""
709
+ msgstr "apipie 캐시를 사용할 때 서버에서 '%s'가 실행되었습니까? (일반 제품 설정)"
716
710
 
717
711
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
718
712
  msgid "View and manage user group's external user groups"
719
- msgstr ""
713
+ msgstr "사용자 그룹의 외부 사용자 그룹 표시 및 관리 "
720
714
 
721
715
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
722
716
  msgid "Auth source"
@@ -724,39 +718,39 @@ msgstr "인증 소스 "
724
718
 
725
719
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:39
726
720
  msgid "Refresh external user group"
727
- msgstr ""
721
+ msgstr "외부 사용자 그룹 새로고침 "
728
722
 
729
723
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:57
730
724
  msgid "External user group created"
731
- msgstr ""
725
+ msgstr "외부 사용자 그룹이 생성되었습니다 "
732
726
 
733
727
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:58
734
728
  msgid "Could not create external user group"
735
- msgstr ""
729
+ msgstr "외부 사용자 그룹을 생성할 수 없습니다 "
736
730
 
737
731
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:65
738
732
  msgid "External user group updated"
739
- msgstr ""
733
+ msgstr "외부 사용자 그룹이 업데이트되었습니다 "
740
734
 
741
735
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:66
742
736
  msgid "Could not update external user group"
743
- msgstr ""
737
+ msgstr "외부 사용자 그룹을 업데이트할 수 없습니다 "
744
738
 
745
739
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:73
746
740
  msgid "External user group deleted"
747
- msgstr ""
741
+ msgstr "외부 사용자 그룹이 삭제되었습니다 "
748
742
 
749
743
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:74
750
744
  msgid "Could not delete the external user group"
751
- msgstr ""
745
+ msgstr "외부 사용자 그룹을 삭제할 수 없습니다 "
752
746
 
753
747
  #: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11 ../lib/hammer_cli_foreman/report.rb:31
754
748
  msgid "Host"
755
749
  msgstr "호스트 "
756
750
 
757
- #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
751
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
758
752
  msgid "Fact"
759
- msgstr "정보 "
753
+ msgstr "팩트 "
760
754
 
761
755
  #: ../lib/hammer_cli_foreman/filter.rb:10
762
756
  msgid "Resource type"
@@ -778,11 +772,11 @@ msgstr "역할 "
778
772
  msgid "Permissions"
779
773
  msgstr "권한 "
780
774
 
781
- #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:33
775
+ #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
782
776
  msgid "(Miscellaneous)"
783
777
  msgstr "(기타)"
784
778
 
785
- #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
779
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
786
780
  msgid "none"
787
781
  msgstr "없음 "
788
782
 
@@ -816,340 +810,331 @@ msgstr "리소스 "
816
810
 
817
811
  #: ../lib/hammer_cli_foreman/host.rb:15
818
812
  msgid "Login of the owner"
819
- msgstr ""
813
+ msgstr "소유자 로그인 "
820
814
 
821
815
  #: ../lib/hammer_cli_foreman/host.rb:17
822
816
  msgid "ID of the owner"
823
- msgstr ""
817
+ msgstr "소유자 ID"
824
818
 
825
- #: ../lib/hammer_cli_foreman/host.rb:42
819
+ #: ../lib/hammer_cli_foreman/host.rb:44
826
820
  msgid "Host parameters."
827
821
  msgstr "호스트 매개 변수 "
828
822
 
829
- #: ../lib/hammer_cli_foreman/host.rb:44
823
+ #: ../lib/hammer_cli_foreman/host.rb:46
830
824
  msgid "Compute resource attributes."
831
825
  msgstr "컴퓨터 리소스 속성 "
832
826
 
833
- #: ../lib/hammer_cli_foreman/host.rb:46
827
+ #: ../lib/hammer_cli_foreman/host.rb:48
834
828
  msgid "Volume parameters"
835
829
  msgstr "볼륨 매개 변수 "
836
830
 
837
- #: ../lib/hammer_cli_foreman/host.rb:48
831
+ #: ../lib/hammer_cli_foreman/host.rb:50
838
832
  msgid "Interface parameters."
839
833
  msgstr "인터페이스 매개 변수 "
840
834
 
841
- #: ../lib/hammer_cli_foreman/host.rb:62
835
+ #: ../lib/hammer_cli_foreman/host.rb:64
842
836
  msgid "Enter the root password for the host:"
843
837
  msgstr ""
844
838
 
845
- #: ../lib/hammer_cli_foreman/host.rb:146
839
+ #: ../lib/hammer_cli_foreman/host.rb:153
846
840
  msgid "At least one interface must be set as primary"
847
841
  msgstr ""
848
842
 
849
- #: ../lib/hammer_cli_foreman/host.rb:149
843
+ #: ../lib/hammer_cli_foreman/host.rb:156
850
844
  msgid "At least one interface must be set as provision"
851
845
  msgstr ""
852
846
 
853
- #: ../lib/hammer_cli_foreman/host.rb:165 ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
847
+ #: ../lib/hammer_cli_foreman/host.rb:172 ../lib/hammer_cli_foreman/host.rb:248 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
854
848
  msgid "Operating System"
855
849
  msgstr "운영체제"
856
850
 
857
- #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
851
+ #: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
858
852
  msgid "Host Group"
859
853
  msgstr "호스트 그룹 "
860
854
 
861
- #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
855
+ #: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
862
856
  msgid "IP"
863
857
  msgstr "IP "
864
858
 
865
- #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
859
+ #: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
866
860
  msgid "MAC"
867
861
  msgstr "MAC"
868
862
 
869
- #: ../lib/hammer_cli_foreman/host.rb:178
863
+ #: ../lib/hammer_cli_foreman/host.rb:185
870
864
  msgid "Bare Metal"
871
865
  msgstr ""
872
866
 
873
- #: ../lib/hammer_cli_foreman/host.rb:203
874
- #, fuzzy
867
+ #: ../lib/hammer_cli_foreman/host.rb:210
875
868
  msgid "Organization"
876
- msgstr "조직 "
869
+ msgstr ""
877
870
 
878
- #: ../lib/hammer_cli_foreman/host.rb:204
879
- #, fuzzy
871
+ #: ../lib/hammer_cli_foreman/host.rb:211
880
872
  msgid "Location"
881
- msgstr "위치 "
873
+ msgstr ""
882
874
 
883
- #: ../lib/hammer_cli_foreman/host.rb:206
875
+ #: ../lib/hammer_cli_foreman/host.rb:213
884
876
  msgid "Compute Resource"
885
877
  msgstr "컴퓨터 리소스 "
886
878
 
887
- #: ../lib/hammer_cli_foreman/host.rb:207
888
- #, fuzzy
879
+ #: ../lib/hammer_cli_foreman/host.rb:214
889
880
  msgid "Compute Profile"
890
- msgstr "컴퓨터 프로파일 "
881
+ msgstr ""
891
882
 
892
- #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/hostgroup.rb:61
883
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
893
884
  msgid "Environment"
894
885
  msgstr "환경 "
895
886
 
896
- #: ../lib/hammer_cli_foreman/host.rb:209
897
- #, fuzzy
887
+ #: ../lib/hammer_cli_foreman/host.rb:216
898
888
  msgid "Puppet CA Id"
899
- msgstr "Puppet CA 프록시 Id"
889
+ msgstr ""
900
890
 
901
- #: ../lib/hammer_cli_foreman/host.rb:210
902
- #, fuzzy
891
+ #: ../lib/hammer_cli_foreman/host.rb:217
903
892
  msgid "Puppet Master Id"
904
- msgstr "Puppet 마스터 프록시 Id"
893
+ msgstr ""
905
894
 
906
- #: ../lib/hammer_cli_foreman/host.rb:211
895
+ #: ../lib/hammer_cli_foreman/host.rb:218
907
896
  msgid "Cert name"
908
897
  msgstr "인증서 이름 "
909
898
 
910
- #: ../lib/hammer_cli_foreman/host.rb:212 ../lib/hammer_cli_foreman/interface.rb:51
899
+ #: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
911
900
  msgid "Managed"
912
901
  msgstr "관리됨 "
913
902
 
914
- #: ../lib/hammer_cli_foreman/host.rb:214
903
+ #: ../lib/hammer_cli_foreman/host.rb:221
915
904
  msgid "Installed at"
916
905
  msgstr "설치됨 "
917
906
 
918
- #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
907
+ #: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
919
908
  msgid "Last report"
920
909
  msgstr "마지막 보고 "
921
910
 
922
- #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
911
+ #: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
923
912
  msgid "Network"
924
913
  msgstr "네트워크"
925
914
 
926
- #: ../lib/hammer_cli_foreman/host.rb:220 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
915
+ #: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
927
916
  msgid "Subnet"
928
917
  msgstr "서브넷"
929
918
 
930
- #: ../lib/hammer_cli_foreman/host.rb:221 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
919
+ #: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
931
920
  msgid "Domain"
932
921
  msgstr "도메인 "
933
922
 
934
- #: ../lib/hammer_cli_foreman/host.rb:222
923
+ #: ../lib/hammer_cli_foreman/host.rb:229
935
924
  msgid "Service provider"
936
925
  msgstr ""
937
926
 
938
- #: ../lib/hammer_cli_foreman/host.rb:223
927
+ #: ../lib/hammer_cli_foreman/host.rb:230
939
928
  msgid "SP Name"
940
929
  msgstr "SP 이름 "
941
930
 
942
- #: ../lib/hammer_cli_foreman/host.rb:224
931
+ #: ../lib/hammer_cli_foreman/host.rb:231
943
932
  msgid "SP IP"
944
933
  msgstr "SP IP"
945
934
 
946
- #: ../lib/hammer_cli_foreman/host.rb:225
935
+ #: ../lib/hammer_cli_foreman/host.rb:232
947
936
  msgid "SP MAC"
948
937
  msgstr "SP MAC"
949
938
 
950
- #: ../lib/hammer_cli_foreman/host.rb:226
939
+ #: ../lib/hammer_cli_foreman/host.rb:233
951
940
  msgid "SP Subnet"
952
941
  msgstr "SP 서브넷 "
953
942
 
954
- #: ../lib/hammer_cli_foreman/host.rb:230
955
- #, fuzzy
943
+ #: ../lib/hammer_cli_foreman/host.rb:237
956
944
  msgid "Network interfaces"
957
- msgstr "BMC 네트워크 인터페이스 "
945
+ msgstr ""
958
946
 
959
- #: ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
947
+ #: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
960
948
  msgid "Identifier"
961
949
  msgstr ""
962
950
 
963
- #: ../lib/hammer_cli_foreman/host.rb:233 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
951
+ #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
964
952
  msgid "Type"
965
953
  msgstr "유형"
966
954
 
967
- #: ../lib/hammer_cli_foreman/host.rb:234 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
955
+ #: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
968
956
  msgid "MAC address"
969
957
  msgstr ""
970
958
 
971
- #: ../lib/hammer_cli_foreman/host.rb:235 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
959
+ #: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
972
960
  msgid "IP address"
973
961
  msgstr ""
974
962
 
975
- #: ../lib/hammer_cli_foreman/host.rb:236
963
+ #: ../lib/hammer_cli_foreman/host.rb:243
976
964
  msgid "FQDN"
977
965
  msgstr ""
978
966
 
979
- #: ../lib/hammer_cli_foreman/host.rb:239
980
- #, fuzzy
967
+ #: ../lib/hammer_cli_foreman/host.rb:246
981
968
  msgid "Operating system"
982
- msgstr "운영 체제 "
969
+ msgstr ""
983
970
 
984
- #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
971
+ #: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
985
972
  msgid "Architecture"
986
973
  msgstr "아키텍처 "
987
974
 
988
- #: ../lib/hammer_cli_foreman/host.rb:244
975
+ #: ../lib/hammer_cli_foreman/host.rb:251
989
976
  msgid "Build"
990
977
  msgstr "빌드 "
991
978
 
992
- #: ../lib/hammer_cli_foreman/host.rb:245 ../lib/hammer_cli_foreman/hostgroup.rb:77
979
+ #: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
993
980
  msgid "Medium"
994
981
  msgstr "미디어 "
995
982
 
996
- #: ../lib/hammer_cli_foreman/host.rb:246 ../lib/hammer_cli_foreman/hostgroup.rb:76
983
+ #: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
997
984
  msgid "Partition Table"
998
985
  msgstr "파티션 테이블 "
999
986
 
1000
- #: ../lib/hammer_cli_foreman/host.rb:247
1001
- #, fuzzy
987
+ #: ../lib/hammer_cli_foreman/host.rb:254
1002
988
  msgid "Custom partition table"
1003
- msgstr "파티션 테이블 연결 "
989
+ msgstr ""
1004
990
 
1005
- #: ../lib/hammer_cli_foreman/host.rb:250
991
+ #: ../lib/hammer_cli_foreman/host.rb:257
1006
992
  msgid "Image"
1007
993
  msgstr "이미지 "
1008
994
 
1009
- #: ../lib/hammer_cli_foreman/host.rb:251
995
+ #: ../lib/hammer_cli_foreman/host.rb:258
1010
996
  msgid "Image file"
1011
997
  msgstr "이미지 파일 "
1012
998
 
1013
- #: ../lib/hammer_cli_foreman/host.rb:252
999
+ #: ../lib/hammer_cli_foreman/host.rb:259
1014
1000
  msgid "Use image"
1015
1001
  msgstr "이미지 사용 "
1016
1002
 
1017
- #: ../lib/hammer_cli_foreman/host.rb:258
1003
+ #: ../lib/hammer_cli_foreman/host.rb:265
1018
1004
  msgid "Additional info"
1019
1005
  msgstr ""
1020
1006
 
1021
- #: ../lib/hammer_cli_foreman/host.rb:259
1007
+ #: ../lib/hammer_cli_foreman/host.rb:266
1022
1008
  msgid "Owner Id"
1023
1009
  msgstr "소유자 Id"
1024
1010
 
1025
- #: ../lib/hammer_cli_foreman/host.rb:260
1011
+ #: ../lib/hammer_cli_foreman/host.rb:267
1026
1012
  msgid "Owner Type"
1027
1013
  msgstr "소유자 유형 "
1028
1014
 
1029
- #: ../lib/hammer_cli_foreman/host.rb:261
1015
+ #: ../lib/hammer_cli_foreman/host.rb:268
1030
1016
  msgid "Enabled"
1031
1017
  msgstr "활성화됨 "
1032
1018
 
1033
- #: ../lib/hammer_cli_foreman/host.rb:262 ../lib/hammer_cli_foreman/hostgroup.rb:62
1019
+ #: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
1034
1020
  msgid "Model"
1035
1021
  msgstr "모델 "
1036
1022
 
1037
- #: ../lib/hammer_cli_foreman/host.rb:263
1023
+ #: ../lib/hammer_cli_foreman/host.rb:270
1038
1024
  msgid "Comment"
1039
1025
  msgstr "코멘트 "
1040
1026
 
1041
- #: ../lib/hammer_cli_foreman/host.rb:276
1027
+ #: ../lib/hammer_cli_foreman/host.rb:283
1042
1028
  msgid "Status"
1043
1029
  msgstr "상태 "
1044
1030
 
1045
- #: ../lib/hammer_cli_foreman/host.rb:277
1031
+ #: ../lib/hammer_cli_foreman/host.rb:284
1046
1032
  msgid "Power"
1047
1033
  msgstr "전원"
1048
1034
 
1049
- #: ../lib/hammer_cli_foreman/host.rb:313
1035
+ #: ../lib/hammer_cli_foreman/host.rb:320
1050
1036
  msgid "Puppet run triggered"
1051
1037
  msgstr "Puppet run이 실행되었습니다 "
1052
1038
 
1053
- #: ../lib/hammer_cli_foreman/host.rb:366
1039
+ #: ../lib/hammer_cli_foreman/host.rb:373
1054
1040
  msgid "Host created"
1055
1041
  msgstr "호스트가 생성되었습니다 "
1056
1042
 
1057
- #: ../lib/hammer_cli_foreman/host.rb:367
1043
+ #: ../lib/hammer_cli_foreman/host.rb:374
1058
1044
  msgid "Could not create the host"
1059
1045
  msgstr "호스트를 생성할 수 없습니다 "
1060
1046
 
1061
- #: ../lib/hammer_cli_foreman/host.rb:388
1047
+ #: ../lib/hammer_cli_foreman/host.rb:395
1062
1048
  msgid "Host updated"
1063
1049
  msgstr "호스트가 업데이트되었습니다 "
1064
1050
 
1065
- #: ../lib/hammer_cli_foreman/host.rb:389
1051
+ #: ../lib/hammer_cli_foreman/host.rb:396
1066
1052
  msgid "Could not update the host"
1067
1053
  msgstr "호스트를 업데이트할 수 없습니다 "
1068
1054
 
1069
- #: ../lib/hammer_cli_foreman/host.rb:396
1055
+ #: ../lib/hammer_cli_foreman/host.rb:403
1070
1056
  msgid "Host deleted"
1071
1057
  msgstr "호스트가 삭제되었습니다 "
1072
1058
 
1073
- #: ../lib/hammer_cli_foreman/host.rb:397
1059
+ #: ../lib/hammer_cli_foreman/host.rb:404
1074
1060
  msgid "Could not delete the host"
1075
1061
  msgstr "호스트를 삭제할 수 없습니다 "
1076
1062
 
1077
- #: ../lib/hammer_cli_foreman/host.rb:404
1063
+ #: ../lib/hammer_cli_foreman/host.rb:411
1078
1064
  msgid "Create or update parameter for a host."
1079
1065
  msgstr "호스트의 매개 변수를 생성 또는 업데이트합니다. "
1080
1066
 
1081
- #: ../lib/hammer_cli_foreman/host.rb:406
1067
+ #: ../lib/hammer_cli_foreman/host.rb:413
1082
1068
  msgid "Host parameter updated"
1083
1069
  msgstr "호스트 매개 변수가 업데이트되었습니다 "
1084
1070
 
1085
- #: ../lib/hammer_cli_foreman/host.rb:407
1071
+ #: ../lib/hammer_cli_foreman/host.rb:414
1086
1072
  msgid "New host parameter created"
1087
1073
  msgstr "새 호스트 매개 변수가 생성되었습니다 "
1088
1074
 
1089
- #: ../lib/hammer_cli_foreman/host.rb:408
1075
+ #: ../lib/hammer_cli_foreman/host.rb:415
1090
1076
  msgid "Could not set host parameter"
1091
1077
  msgstr "호스트 매개 변수를 설정할 수 없습니다 "
1092
1078
 
1093
- #: ../lib/hammer_cli_foreman/host.rb:420
1079
+ #: ../lib/hammer_cli_foreman/host.rb:427
1094
1080
  msgid "Delete parameter for a host."
1095
1081
  msgstr "호스트의 매개 변수를 삭제합니다. "
1096
1082
 
1097
- #: ../lib/hammer_cli_foreman/host.rb:422
1083
+ #: ../lib/hammer_cli_foreman/host.rb:429
1098
1084
  msgid "Host parameter deleted"
1099
1085
  msgstr "호스트 매개 변수가 삭제되었습니다 "
1100
1086
 
1101
- #: ../lib/hammer_cli_foreman/host.rb:437
1087
+ #: ../lib/hammer_cli_foreman/host.rb:444
1102
1088
  msgid "Power a host on"
1103
1089
  msgstr "호스트 전원 켜기 "
1104
1090
 
1105
- #: ../lib/hammer_cli_foreman/host.rb:438
1091
+ #: ../lib/hammer_cli_foreman/host.rb:445
1106
1092
  msgid "The host is starting."
1107
1093
  msgstr "호스트가 시작되고 있습니다. "
1108
1094
 
1109
- #: ../lib/hammer_cli_foreman/host.rb:455
1095
+ #: ../lib/hammer_cli_foreman/host.rb:462
1110
1096
  msgid "Force turning off a host"
1111
1097
  msgstr "강제로 호스트 전원 끄기 "
1112
1098
 
1113
- #: ../lib/hammer_cli_foreman/host.rb:460
1099
+ #: ../lib/hammer_cli_foreman/host.rb:467
1114
1100
  msgid "Power a host off"
1115
1101
  msgstr "호스트 전원 끄기 "
1116
1102
 
1117
- #: ../lib/hammer_cli_foreman/host.rb:472
1103
+ #: ../lib/hammer_cli_foreman/host.rb:479
1118
1104
  msgid "Power off forced."
1119
1105
  msgstr "강제로 전원을 끕니다. "
1120
1106
 
1121
- #: ../lib/hammer_cli_foreman/host.rb:474
1107
+ #: ../lib/hammer_cli_foreman/host.rb:481
1122
1108
  msgid "Powering the host off."
1123
1109
  msgstr "호스트 전원을 끄고 있습니다. "
1124
1110
 
1125
- #: ../lib/hammer_cli_foreman/host.rb:491
1111
+ #: ../lib/hammer_cli_foreman/host.rb:498
1126
1112
  msgid "Reboot a host"
1127
1113
  msgstr "호스트 재부팅 "
1128
1114
 
1129
- #: ../lib/hammer_cli_foreman/host.rb:492
1115
+ #: ../lib/hammer_cli_foreman/host.rb:499
1130
1116
  msgid "Host reboot started."
1131
1117
  msgstr "호스트 재부팅을 시작했습니다. "
1132
1118
 
1133
1119
  #: ../lib/hammer_cli_foreman/hostgroup.rb:10
1134
1120
  msgid "List of puppetclass ids"
1135
- msgstr ""
1121
+ msgstr "Puppet 클래스 ID 목록"
1136
1122
 
1137
1123
  #: ../lib/hammer_cli_foreman/hostgroup.rb:12
1138
1124
  msgid "Name of puppet CA proxy"
1139
- msgstr ""
1125
+ msgstr "Puppet CA 프록시 이름 "
1140
1126
 
1141
1127
  #: ../lib/hammer_cli_foreman/hostgroup.rb:13
1142
1128
  msgid "Name of puppet proxy"
1143
- msgstr ""
1129
+ msgstr "Puppet 프록시 이름 "
1144
1130
 
1145
1131
  #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1146
1132
  msgid "Name of parent hostgroup"
1147
- msgstr ""
1133
+ msgstr "부모 호스트 그룹 이름 "
1148
1134
 
1149
1135
  #: ../lib/hammer_cli_foreman/hostgroup.rb:17
1150
- #, fuzzy
1151
1136
  msgid "Root password"
1152
- msgstr "BMC 암호 "
1137
+ msgstr ""
1153
1138
 
1154
1139
  #: ../lib/hammer_cli_foreman/hostgroup.rb:23
1155
1140
  msgid "Enter the root password for the host group:"
@@ -1157,7 +1142,7 @@ msgstr ""
1157
1142
 
1158
1143
  #: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
1159
1144
  msgid "Title"
1160
- msgstr ""
1145
+ msgstr "직위"
1161
1146
 
1162
1147
  #: ../lib/hammer_cli_foreman/hostgroup.rb:78
1163
1148
  msgid "Puppet CA Proxy Id"
@@ -1173,7 +1158,7 @@ msgstr "컴퓨터 프로파일 "
1173
1158
 
1174
1159
  #: ../lib/hammer_cli_foreman/hostgroup.rb:84
1175
1160
  msgid "Parent Id"
1176
- msgstr ""
1161
+ msgstr "부모 ID"
1177
1162
 
1178
1163
  #: ../lib/hammer_cli_foreman/hostgroup.rb:94
1179
1164
  msgid "Hostgroup created"
@@ -1244,9 +1229,8 @@ msgid "Host name"
1244
1229
  msgstr "호스트 이름 "
1245
1230
 
1246
1231
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1247
- #, fuzzy
1248
1232
  msgid "Hostgroup title"
1249
- msgstr "호스트 그룹 이름 "
1233
+ msgstr ""
1250
1234
 
1251
1235
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1252
1236
  msgid "Hostgroup name"
@@ -1270,7 +1254,7 @@ msgstr "조직 이름 "
1270
1254
 
1271
1255
  #: ../lib/hammer_cli_foreman/id_resolver.rb:50
1272
1256
  msgid "Operating system title"
1273
- msgstr ""
1257
+ msgstr "운영 체제 제목 "
1274
1258
 
1275
1259
  #: ../lib/hammer_cli_foreman/id_resolver.rb:52
1276
1260
  msgid "Partition table name"
@@ -1293,9 +1277,8 @@ msgid "User role name"
1293
1277
  msgstr "사용자 역할 이름 "
1294
1278
 
1295
1279
  #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1296
- #, fuzzy
1297
1280
  msgid "Setting name"
1298
- msgstr "인증서 이름 "
1281
+ msgstr ""
1299
1282
 
1300
1283
  #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1301
1284
  msgid "Subnet name"
@@ -1314,9 +1297,8 @@ msgid "Smart class parameter name"
1314
1297
  msgstr "스마트 클래스 매개 변수 이름 "
1315
1298
 
1316
1299
  #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1317
- #, fuzzy
1318
1300
  msgid "Smart variable name"
1319
- msgstr "스마트 매개 변수 "
1301
+ msgstr ""
1320
1302
 
1321
1303
  #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1322
1304
  msgid "Name to search by"
@@ -1324,14 +1306,15 @@ msgstr "검색할 이름 "
1324
1306
 
1325
1307
  #: ../lib/hammer_cli_foreman/id_resolver.rb:153
1326
1308
  msgid "one of %s not found"
1327
- msgstr ""
1309
+ msgstr "%s 중 하나를 찾을 수 없습니다 "
1328
1310
 
1329
1311
  #: ../lib/hammer_cli_foreman/id_resolver.rb:200
1330
1312
  msgid "%s not found"
1331
1313
  msgstr "%s을(를) 찾을 수 없음 "
1332
1314
 
1333
1315
  #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1334
- msgid "%s found more than once"
1316
+ #, fuzzy
1317
+ msgid "found more than one %s"
1335
1318
  msgstr "%s을(를) 하나 이상 발견했습니다 "
1336
1319
 
1337
1320
  #: ../lib/hammer_cli_foreman/id_resolver.rb:212
@@ -1383,28 +1366,24 @@ msgid "View and manage host's network interfaces"
1383
1366
  msgstr ""
1384
1367
 
1385
1368
  #: ../lib/hammer_cli_foreman/interface.rb:10
1386
- #, fuzzy
1387
1369
  msgid "primary"
1388
- msgstr "1차 DNS"
1370
+ msgstr ""
1389
1371
 
1390
1372
  #: ../lib/hammer_cli_foreman/interface.rb:11
1391
1373
  msgid "provision"
1392
1374
  msgstr ""
1393
1375
 
1394
1376
  #: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
1395
- #, fuzzy
1396
1377
  msgid "DNS name"
1397
- msgstr "인증서 이름 "
1378
+ msgstr ""
1398
1379
 
1399
1380
  #: ../lib/hammer_cli_foreman/interface.rb:52
1400
- #, fuzzy
1401
1381
  msgid "Primary"
1402
- msgstr "1차 DNS"
1382
+ msgstr ""
1403
1383
 
1404
1384
  #: ../lib/hammer_cli_foreman/interface.rb:53
1405
- #, fuzzy
1406
1385
  msgid "Provision"
1407
- msgstr "공급자 "
1386
+ msgstr ""
1408
1387
 
1409
1388
  #: ../lib/hammer_cli_foreman/interface.rb:54
1410
1389
  msgid "Virtual"
@@ -1427,9 +1406,8 @@ msgid "Bond"
1427
1406
  msgstr ""
1428
1407
 
1429
1408
  #: ../lib/hammer_cli_foreman/interface.rb:64
1430
- #, fuzzy
1431
1409
  msgid "Mode"
1432
- msgstr "모델 "
1410
+ msgstr ""
1433
1411
 
1434
1412
  #: ../lib/hammer_cli_foreman/interface.rb:65
1435
1413
  msgid "Attached devices"
@@ -1448,39 +1426,32 @@ msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-base
1448
1426
  msgstr ""
1449
1427
 
1450
1428
  #: ../lib/hammer_cli_foreman/interface.rb:128
1451
- #, fuzzy
1452
1429
  msgid "Interface created"
1453
- msgstr "이미지가 생성되었습니다 "
1430
+ msgstr ""
1454
1431
 
1455
1432
  #: ../lib/hammer_cli_foreman/interface.rb:129
1456
- #, fuzzy
1457
1433
  msgid "Could not create the interface"
1458
- msgstr "이미지를 생성할 수 없습니다 "
1434
+ msgstr ""
1459
1435
 
1460
1436
  #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1461
- #, fuzzy
1462
1437
  msgid "Compute resource specific attributes."
1463
- msgstr "컴퓨터 리소스 속성 "
1438
+ msgstr ""
1464
1439
 
1465
1440
  #: ../lib/hammer_cli_foreman/interface.rb:141
1466
- #, fuzzy
1467
1441
  msgid "Interface updated"
1468
- msgstr "이미지가 업데이트되었습니다 "
1442
+ msgstr ""
1469
1443
 
1470
1444
  #: ../lib/hammer_cli_foreman/interface.rb:142
1471
- #, fuzzy
1472
1445
  msgid "Could not update the interface"
1473
- msgstr "이미지를 업데이트할 수 없습니다 "
1446
+ msgstr ""
1474
1447
 
1475
1448
  #: ../lib/hammer_cli_foreman/interface.rb:154
1476
- #, fuzzy
1477
1449
  msgid "Interface deleted"
1478
- msgstr "이미지가 삭제되었습니다 "
1450
+ msgstr ""
1479
1451
 
1480
1452
  #: ../lib/hammer_cli_foreman/interface.rb:155
1481
- #, fuzzy
1482
1453
  msgid "Could not delete the interface"
1483
- msgstr "이미지를 삭제할 수 없습니다 "
1454
+ msgstr ""
1484
1455
 
1485
1456
  #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
1486
1457
  msgid "Location numeric id to search by"
@@ -1514,6 +1485,40 @@ msgstr "위치가 삭제되었습니다 "
1514
1485
  msgid "Could not delete the location"
1515
1486
  msgstr "위치를 삭제할 수 없습니다 "
1516
1487
 
1488
+ #: ../lib/hammer_cli_foreman/location.rb:86
1489
+ #, fuzzy
1490
+ msgid "Create or update parameter for a location."
1491
+ msgstr "도메인의 매개 변수를 생성 또는 업데이트합니다. "
1492
+
1493
+ #: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
1494
+ #, fuzzy
1495
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1496
+ msgstr "매개 변수 [%{name}] 이(가) [%{value}]로 업데이트되었습니다. "
1497
+
1498
+ #: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
1499
+ msgid "Parameter [%{name}] created with value [%{value}]"
1500
+ msgstr ""
1501
+
1502
+ #: ../lib/hammer_cli_foreman/location.rb:90
1503
+ #, fuzzy
1504
+ msgid "Could not set location parameter"
1505
+ msgstr "도메인 매개 변수를 설정할 수 없습니다 "
1506
+
1507
+ #: ../lib/hammer_cli_foreman/location.rb:97
1508
+ #, fuzzy
1509
+ msgid "Delete parameter for a location."
1510
+ msgstr "도메인의 매개 변수를 삭제합니다. "
1511
+
1512
+ #: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
1513
+ #, fuzzy
1514
+ msgid "Parameter [%{name}] deleted"
1515
+ msgstr "글로벌 매개 변수 [%{name}]이(가) 삭제되었습니다. "
1516
+
1517
+ #: ../lib/hammer_cli_foreman/location.rb:100
1518
+ #, fuzzy
1519
+ msgid "Could not delete location parameter"
1520
+ msgstr "도메인 매개 변수를 설정할 수 없습니다 "
1521
+
1517
1522
  #: ../lib/hammer_cli_foreman/media.rb:11
1518
1523
  msgid "Path"
1519
1524
  msgstr "경로"
@@ -1688,7 +1693,7 @@ msgstr "기본값 템플릿을 삭제할 수 없습니다 "
1688
1693
 
1689
1694
  #: ../lib/hammer_cli_foreman/operating_system.rb:178
1690
1695
  msgid "Default template of type %s not found"
1691
- msgstr ""
1696
+ msgstr "유형 %s의 기본 템플릿을 찾을 수 없습니다 "
1692
1697
 
1693
1698
  #: ../lib/hammer_cli_foreman/organization.rb:37 ../lib/hammer_cli_foreman/references.rb:15
1694
1699
  msgid "Locations"
@@ -1718,6 +1723,25 @@ msgstr "조직이 삭제되었습니다 "
1718
1723
  msgid "Could not delete the organization"
1719
1724
  msgstr "조직을 삭제할 수 없습니다 "
1720
1725
 
1726
+ #: ../lib/hammer_cli_foreman/organization.rb:87
1727
+ #, fuzzy
1728
+ msgid "Create or update parameter for an organization."
1729
+ msgstr "도메인의 매개 변수를 생성 또는 업데이트합니다. "
1730
+
1731
+ #: ../lib/hammer_cli_foreman/organization.rb:91
1732
+ #, fuzzy
1733
+ msgid "Could not set organization parameter"
1734
+ msgstr "도메인 매개 변수를 설정할 수 없습니다 "
1735
+
1736
+ #: ../lib/hammer_cli_foreman/organization.rb:98
1737
+ #, fuzzy
1738
+ msgid "Delete parameter for an organization."
1739
+ msgstr "도메인의 매개 변수를 삭제합니다. "
1740
+
1741
+ #: ../lib/hammer_cli_foreman/organization.rb:101
1742
+ msgid "Could not delete organization parameter"
1743
+ msgstr ""
1744
+
1721
1745
  #: ../lib/hammer_cli_foreman/partition_table.rb:31
1722
1746
  msgid "View partition table content."
1723
1747
  msgstr "파티션 테이블 내용을 표시합니다. "
@@ -1832,7 +1856,7 @@ msgstr "역할 "
1832
1856
 
1833
1857
  #: ../lib/hammer_cli_foreman/references.rb:139
1834
1858
  msgid "External user groups"
1835
- msgstr ""
1859
+ msgstr "외부 사용자 그룹 "
1836
1860
 
1837
1861
  #: ../lib/hammer_cli_foreman/report.rb:14 ../lib/hammer_cli_foreman/report.rb:35
1838
1862
  msgid "Applied"
@@ -1930,43 +1954,54 @@ msgstr "보고서를 삭제할 수 없습니다 "
1930
1954
  msgid "The server does not support such operation."
1931
1955
  msgstr "서버가 이러한 동작을 지원하지 않습니다. "
1932
1956
 
1933
- #: ../lib/hammer_cli_foreman/role.rb:23
1957
+ #: ../lib/hammer_cli_foreman/role.rb:20
1958
+ #, fuzzy
1959
+ msgid "Builtin"
1960
+ msgstr "빌드 "
1961
+
1962
+ #: ../lib/hammer_cli_foreman/role.rb:24
1963
+ msgid "No"
1964
+ msgstr ""
1965
+
1966
+ #: ../lib/hammer_cli_foreman/role.rb:24
1967
+ msgid "Yes"
1968
+ msgstr ""
1969
+
1970
+ #: ../lib/hammer_cli_foreman/role.rb:36
1934
1971
  msgid "User role id"
1935
1972
  msgstr "사용자 역할 ID"
1936
1973
 
1937
- #: ../lib/hammer_cli_foreman/role.rb:47
1974
+ #: ../lib/hammer_cli_foreman/role.rb:60
1938
1975
  msgid "User role [%<name>s] created"
1939
1976
  msgstr "사용자 역할 [%<name>s]이(가) 생성되었습니다 "
1940
1977
 
1941
- #: ../lib/hammer_cli_foreman/role.rb:48
1978
+ #: ../lib/hammer_cli_foreman/role.rb:61
1942
1979
  msgid "Could not create the user role"
1943
1980
  msgstr "사용자 역할을 생성할 수 없습니다 "
1944
1981
 
1945
- #: ../lib/hammer_cli_foreman/role.rb:55
1982
+ #: ../lib/hammer_cli_foreman/role.rb:68
1946
1983
  msgid "User role [%<name>s] updated"
1947
1984
  msgstr "사용자 역할 [%<name>s]이(가) 업데이트되었습니다 "
1948
1985
 
1949
- #: ../lib/hammer_cli_foreman/role.rb:56
1986
+ #: ../lib/hammer_cli_foreman/role.rb:69
1950
1987
  msgid "Could not update the user role"
1951
1988
  msgstr "사용자 역할을 업데이트할 수 없습니다 "
1952
1989
 
1953
- #: ../lib/hammer_cli_foreman/role.rb:63
1990
+ #: ../lib/hammer_cli_foreman/role.rb:76
1954
1991
  msgid "User role [%<name>s] deleted"
1955
1992
  msgstr "사용자 역할 [%<name>s]이(가) 삭제되었습니다 "
1956
1993
 
1957
- #: ../lib/hammer_cli_foreman/role.rb:64
1994
+ #: ../lib/hammer_cli_foreman/role.rb:77
1958
1995
  msgid "Could not delete the user roles"
1959
1996
  msgstr "사용자 역할을 삭제할 수 없습니다 "
1960
1997
 
1961
1998
  #: ../lib/hammer_cli_foreman/settings.rb:28
1962
- #, fuzzy
1963
1999
  msgid "Setting [%{name}] updated to [%{value}]"
1964
- msgstr "매개 변수 [%{name}] 이(가) [%{value}]로 업데이트되었습니다. "
2000
+ msgstr ""
1965
2001
 
1966
2002
  #: ../lib/hammer_cli_foreman/settings.rb:29
1967
- #, fuzzy
1968
2003
  msgid "Could not update the setting"
1969
- msgstr "도메인을 업데이트할 수 없습니다 "
2004
+ msgstr ""
1970
2005
 
1971
2006
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
1972
2007
  msgid "Default Value"
@@ -2005,9 +2040,8 @@ msgid "Merge overrides"
2005
2040
  msgstr ""
2006
2041
 
2007
2042
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
2008
- #, fuzzy
2009
2043
  msgid "Merge default value"
2010
- msgstr "기본값 "
2044
+ msgstr ""
2011
2045
 
2012
2046
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
2013
2047
  msgid "Avoid duplicates"
@@ -2018,9 +2052,8 @@ msgid "Order"
2018
2052
  msgstr "순서"
2019
2053
 
2020
2054
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
2021
- #, fuzzy
2022
2055
  msgid "Values"
2023
- msgstr ""
2056
+ msgstr ""
2024
2057
 
2025
2058
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
2026
2059
  msgid "Match"
@@ -2051,24 +2084,20 @@ msgid "Type of the validator."
2051
2084
  msgstr "유효성 검사 유형 "
2052
2085
 
2053
2086
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
2054
- #, fuzzy
2055
2087
  msgid "Override value created"
2056
- msgstr "값 덮어쓰기 "
2088
+ msgstr ""
2057
2089
 
2058
2090
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133 ../lib/hammer_cli_foreman/smart_variable.rb:123
2059
- #, fuzzy
2060
2091
  msgid "Could not create the override_value"
2061
- msgstr "사용자 역할을 생성할 수 없습니다 "
2092
+ msgstr ""
2062
2093
 
2063
2094
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
2064
- #, fuzzy
2065
2095
  msgid "Override value deleted"
2066
- msgstr "값 덮어쓰기 "
2096
+ msgstr ""
2067
2097
 
2068
2098
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:153 ../lib/hammer_cli_foreman/smart_variable.rb:136
2069
- #, fuzzy
2070
2099
  msgid "Could not delete the override value"
2071
- msgstr "운영 체제를 삭제할 수 없습니다 "
2100
+ msgstr ""
2072
2101
 
2073
2102
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2074
2103
  msgid "URL"
@@ -2127,32 +2156,28 @@ msgid "Smart variable [%{variable}] created"
2127
2156
  msgstr ""
2128
2157
 
2129
2158
  #: ../lib/hammer_cli_foreman/smart_variable.rb:83
2130
- #, fuzzy
2131
2159
  msgid "Could not create the smart variable"
2132
- msgstr "파티션 테이블을 생성할 수 없습니다 "
2160
+ msgstr ""
2133
2161
 
2134
2162
  #: ../lib/hammer_cli_foreman/smart_variable.rb:87 ../lib/hammer_cli_foreman/smart_variable.rb:101
2135
- #, fuzzy
2136
2163
  msgid "Type of the variable."
2137
- msgstr "유효성 검사 유형 "
2164
+ msgstr ""
2138
2165
 
2139
2166
  #: ../lib/hammer_cli_foreman/smart_variable.rb:96
2140
2167
  msgid "Smart variable [%{variable}] updated"
2141
2168
  msgstr ""
2142
2169
 
2143
2170
  #: ../lib/hammer_cli_foreman/smart_variable.rb:97
2144
- #, fuzzy
2145
2171
  msgid "Could not update the smart variable"
2146
- msgstr "파티션 테이블을 업데이트할 수 없습니다 "
2172
+ msgstr ""
2147
2173
 
2148
2174
  #: ../lib/hammer_cli_foreman/smart_variable.rb:111
2149
2175
  msgid "Smart variable [%{variable}] deleted"
2150
2176
  msgstr ""
2151
2177
 
2152
2178
  #: ../lib/hammer_cli_foreman/smart_variable.rb:112
2153
- #, fuzzy
2154
2179
  msgid "Could not delete the smart variable"
2155
- msgstr "파티션 테이블을 삭제할 수 없습니다 "
2180
+ msgstr ""
2156
2181
 
2157
2182
  #: ../lib/hammer_cli_foreman/subnet.rb:13
2158
2183
  msgid "Mask"
@@ -2182,6 +2207,10 @@ msgstr "TFTP"
2182
2207
  msgid "DHCP"
2183
2208
  msgstr "DHCP"
2184
2209
 
2210
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2211
+ msgid "IPAM"
2212
+ msgstr ""
2213
+
2185
2214
  #: ../lib/hammer_cli_foreman/subnet.rb:30
2186
2215
  msgid "VLAN ID"
2187
2216
  msgstr "VLAN ID"
@@ -2295,14 +2324,12 @@ msgid "Last login"
2295
2324
  msgstr "마지막 로그인"
2296
2325
 
2297
2326
  #: ../lib/hammer_cli_foreman/user.rb:33
2298
- #, fuzzy
2299
2327
  msgid "Default organization"
2300
- msgstr "조직을 조정합니다. "
2328
+ msgstr ""
2301
2329
 
2302
2330
  #: ../lib/hammer_cli_foreman/user.rb:34
2303
- #, fuzzy
2304
2331
  msgid "Default location"
2305
- msgstr "위치를 조정합니다. "
2332
+ msgstr ""
2306
2333
 
2307
2334
  #: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
2308
2335
  msgid "default"
@@ -2356,62 +2383,6 @@ msgstr "사용자 그룹 [%<name>s]이(가) 삭제되었습니다 "
2356
2383
  msgid "Could not delete the user group"
2357
2384
  msgstr "사용자 그룹을 삭제할 수 없습니다 "
2358
2385
 
2359
- #: lib/hammer_cli_foreman/host.rb:171
2360
- #~ msgid "Disk"
2361
- #~ msgstr "디스크"
2362
-
2363
- #: lib/hammer_cli_foreman/host.rb:189
2364
- #~ msgid "Puppet Proxy Id"
2365
- #~ msgstr "Puppet 프록시 Id"
2366
-
2367
- #: lib/hammer_cli_foreman/host.rb:198
2368
- #~ msgid "BMC Network Interfaces"
2369
- #~ msgstr "BMC 네트워크 인터페이스 "
2370
-
2371
- #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
2372
- #~ msgid "Domain Id"
2373
- #~ msgstr "도메인 ID "
2374
-
2375
- #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
2376
- #~ msgid "Domain Name"
2377
- #~ msgstr "도메인 이름 "
2378
-
2379
- #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
2380
- #~ msgid "Subnet Id"
2381
- #~ msgstr "서브넷 ID"
2382
-
2383
- #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
2384
- #~ msgid "Subnet Name"
2385
- #~ msgstr "서브넷 이름 "
2386
-
2387
- #: lib/hammer_cli_foreman/host.rb:207
2388
- #~ msgid "BMC Username"
2389
- #~ msgstr "BMC 사용자 이름 "
2390
-
2391
- #: lib/hammer_cli_foreman/host.rb:208
2392
- #~ msgid "BMC Password"
2393
- #~ msgstr "BMC 암호 "
2394
-
2395
- #: lib/hammer_cli_foreman/host.rb:211
2396
- #~ msgid "Managed Network Interfaces"
2397
- #~ msgstr "관리되는 네트워크 인터페이스 "
2398
-
2399
- #: lib/hammer_cli_foreman/commands.rb:288
2400
- #~ msgid "List next page? (%s): "
2401
- #~ msgstr "다음 페이지 목록을 나열하시겠습니까? (%s): "
2402
-
2403
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
2404
- #~ msgid "Count"
2405
- #~ msgstr "수 "
2406
-
2407
- #: lib/hammer_cli_foreman/user.rb:47
2408
- #~ msgid "User created"
2409
- #~ msgstr "사용자가 생성되었습니다 "
2410
-
2411
- #: lib/hammer_cli_foreman/user.rb:55
2412
- #~ msgid "User updated"
2413
- #~ msgstr "사용자가 업데이트되었습니다 "
2414
-
2415
- #: lib/hammer_cli_foreman/user.rb:63
2416
- #~ msgid "User deleted"
2417
- #~ msgstr "사용자가 삭제되었습니다 "
2386
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:201
2387
+ #~ msgid "%s found more than once"
2388
+ #~ msgstr "%s을(를) 하나 이상 발견했습니다 "