hammer_cli_foreman 0.4.0 → 0.5.0

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