hammer_cli_foreman 0.6.2 → 0.7.0

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