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
@@ -5,133 +5,132 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: hammer-cli-foreman 0.3.0\n"
8
+ "Project-Id-Version: hammer-cli-foreman 0.4.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2015-09-21 16:50+0200\n"
11
- "PO-Revision-Date: 2015-03-22 03:37+0000\n"
12
- "Last-Translator: Lukáš Zapletal\n"
13
- "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/foreman/l"
14
- "anguage/zh_TW/)\n"
10
+ "POT-Creation-Date: 2015-12-11 04:48+0000\n"
11
+ "PO-Revision-Date: 2015-10-08 11:28+0000\n"
12
+ "Last-Translator: mbacovsky <martin.bacovsky@gmail.com>\n"
13
+ "Language-Team: Chinese (Taiwan) (http://www.transifex.com/foreman/foreman/lang"
14
+ "uage/zh_TW/)\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
17
  "Content-Transfer-Encoding: 8bit\n"
18
18
  "Language: zh_TW\n"
19
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
20
 
21
- #: ../lib/hammer_cli_foreman.rb:30
21
+ #: ../lib/hammer_cli_foreman.rb:32
22
22
  msgid "Foreman connection login/logout."
23
23
  msgstr "Foreman 連線登錄/登出。"
24
24
 
25
- #: ../lib/hammer_cli_foreman.rb:34
25
+ #: ../lib/hammer_cli_foreman.rb:36
26
26
  msgid "Manipulate architectures."
27
27
  msgstr "操作架構。"
28
28
 
29
- #: ../lib/hammer_cli_foreman.rb:38
29
+ #: ../lib/hammer_cli_foreman.rb:40
30
30
  msgid "Manipulate auth sources."
31
- msgstr ""
31
+ msgstr "操作 auth 來源。"
32
32
 
33
- #: ../lib/hammer_cli_foreman.rb:42
33
+ #: ../lib/hammer_cli_foreman.rb:44
34
34
  msgid "Manipulate compute resources."
35
35
  msgstr "操作運算資源。"
36
36
 
37
- #: ../lib/hammer_cli_foreman.rb:46
37
+ #: ../lib/hammer_cli_foreman.rb:48
38
38
  msgid "Manipulate domains."
39
39
  msgstr "操作網域。"
40
40
 
41
- #: ../lib/hammer_cli_foreman.rb:50
41
+ #: ../lib/hammer_cli_foreman.rb:52
42
42
  msgid "Manipulate environments."
43
- msgstr ""
43
+ msgstr "操作環境"
44
44
 
45
- #: ../lib/hammer_cli_foreman.rb:54
45
+ #: ../lib/hammer_cli_foreman.rb:56
46
46
  msgid "Search facts."
47
47
  msgstr "搜尋詳情。"
48
48
 
49
- #: ../lib/hammer_cli_foreman.rb:58
49
+ #: ../lib/hammer_cli_foreman.rb:60
50
50
  msgid "Manage permission filters."
51
51
  msgstr "管理權限篩選器。"
52
52
 
53
- #: ../lib/hammer_cli_foreman.rb:62
53
+ #: ../lib/hammer_cli_foreman.rb:64
54
54
  msgid "Manipulate hosts."
55
- msgstr ""
55
+ msgstr "操作主機。"
56
56
 
57
- #: ../lib/hammer_cli_foreman.rb:66
57
+ #: ../lib/hammer_cli_foreman.rb:68
58
58
  msgid "Manipulate hostgroups."
59
59
  msgstr "操作主機群組。"
60
60
 
61
- #: ../lib/hammer_cli_foreman.rb:70
61
+ #: ../lib/hammer_cli_foreman.rb:72
62
62
  msgid "Manipulate locations."
63
63
  msgstr "操作位置。"
64
64
 
65
- #: ../lib/hammer_cli_foreman.rb:74
65
+ #: ../lib/hammer_cli_foreman.rb:76
66
66
  msgid "Manipulate installation media."
67
67
  msgstr "操作安裝媒介。"
68
68
 
69
- #: ../lib/hammer_cli_foreman.rb:78
69
+ #: ../lib/hammer_cli_foreman.rb:80
70
70
  msgid "Manipulate hardware models."
71
71
  msgstr "操作硬體型號。"
72
72
 
73
- #: ../lib/hammer_cli_foreman.rb:82
73
+ #: ../lib/hammer_cli_foreman.rb:84
74
74
  msgid "Manipulate operating system."
75
- msgstr ""
75
+ msgstr "操作作業系統。"
76
76
 
77
- #: ../lib/hammer_cli_foreman.rb:86
77
+ #: ../lib/hammer_cli_foreman.rb:88
78
78
  msgid "Manipulate organizations."
79
79
  msgstr "操作組織。"
80
80
 
81
- #: ../lib/hammer_cli_foreman.rb:90
81
+ #: ../lib/hammer_cli_foreman.rb:92
82
82
  msgid "Manipulate partition tables."
83
83
  msgstr "操作分割表。"
84
84
 
85
- #: ../lib/hammer_cli_foreman.rb:94
85
+ #: ../lib/hammer_cli_foreman.rb:96
86
86
  msgid "Search puppet modules."
87
87
  msgstr "搜尋 puppet 模組。"
88
88
 
89
- #: ../lib/hammer_cli_foreman.rb:98
89
+ #: ../lib/hammer_cli_foreman.rb:100
90
90
  msgid "Browse and read reports."
91
91
  msgstr "瀏覽和閱讀報告。"
92
92
 
93
- #: ../lib/hammer_cli_foreman.rb:102
93
+ #: ../lib/hammer_cli_foreman.rb:104
94
94
  msgid "Manage user roles."
95
95
  msgstr "管理使用者角色。"
96
96
 
97
- #: ../lib/hammer_cli_foreman.rb:106
97
+ #: ../lib/hammer_cli_foreman.rb:108
98
98
  msgid "Manipulate smart class parameters."
99
99
  msgstr "操作智慧類別的參數。"
100
100
 
101
- #: ../lib/hammer_cli_foreman.rb:110
102
- #, fuzzy
101
+ #: ../lib/hammer_cli_foreman.rb:112
103
102
  msgid "Manipulate smart variables."
104
- msgstr "操作智慧協定。"
103
+ msgstr ""
105
104
 
106
- #: ../lib/hammer_cli_foreman.rb:114
105
+ #: ../lib/hammer_cli_foreman.rb:116
107
106
  msgid "Manipulate smart proxies."
108
107
  msgstr "操作智慧協定。"
109
108
 
110
- #: ../lib/hammer_cli_foreman.rb:118
109
+ #: ../lib/hammer_cli_foreman.rb:120
111
110
  msgid "Change server settings."
112
111
  msgstr ""
113
112
 
114
- #: ../lib/hammer_cli_foreman.rb:122
113
+ #: ../lib/hammer_cli_foreman.rb:124
115
114
  msgid "Manipulate subnets."
116
115
  msgstr "操作子網路。"
117
116
 
118
- #: ../lib/hammer_cli_foreman.rb:126
117
+ #: ../lib/hammer_cli_foreman.rb:128
119
118
  msgid "Manipulate config templates."
120
119
  msgstr "操作配置範本。"
121
120
 
122
- #: ../lib/hammer_cli_foreman.rb:130
121
+ #: ../lib/hammer_cli_foreman.rb:132
123
122
  msgid "Manipulate users."
124
123
  msgstr "操作使用者。"
125
124
 
126
- #: ../lib/hammer_cli_foreman.rb:134
125
+ #: ../lib/hammer_cli_foreman.rb:136
127
126
  msgid "Manage user groups."
128
127
  msgstr "管理使用者群組。"
129
128
 
130
- #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:200 ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
129
+ #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:170 ../lib/hammer_cli_foreman/host.rb:207 ../lib/hammer_cli_foreman/host.rb:238 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
131
130
  msgid "Id"
132
131
  msgstr "ID"
133
132
 
134
- #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:202 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
133
+ #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:171 ../lib/hammer_cli_foreman/host.rb:209 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
135
134
  msgid "Name"
136
135
  msgstr "名稱"
137
136
 
@@ -220,28 +219,24 @@ msgid "Associate an user"
220
219
  msgstr "為使用者建立相聯性"
221
220
 
222
221
  #: ../lib/hammer_cli_foreman/associating_commands.rb:149
223
- #, fuzzy
224
222
  msgid "The user has been associated"
225
- msgstr "架構的相聯性已建立"
223
+ msgstr ""
226
224
 
227
225
  #: ../lib/hammer_cli_foreman/associating_commands.rb:150
228
- #, fuzzy
229
226
  msgid "Could not associate the user"
230
- msgstr "無法建立使用者"
227
+ msgstr ""
231
228
 
232
229
  #: ../lib/hammer_cli_foreman/associating_commands.rb:155
233
230
  msgid "Disassociate an user"
234
231
  msgstr "解除使用者的相聯性"
235
232
 
236
233
  #: ../lib/hammer_cli_foreman/associating_commands.rb:157
237
- #, fuzzy
238
234
  msgid "The user has been disassociated"
239
- msgstr "架構的相聯性已解除"
235
+ msgstr ""
240
236
 
241
237
  #: ../lib/hammer_cli_foreman/associating_commands.rb:158
242
- #, fuzzy
243
238
  msgid "Could not disassociate the user"
244
- msgstr "無法解除架構的相聯性"
239
+ msgstr ""
245
240
 
246
241
  #: ../lib/hammer_cli_foreman/associating_commands.rb:167
247
242
  msgid "Associate an user group"
@@ -252,9 +247,8 @@ msgid "The user group has been associated"
252
247
  msgstr ""
253
248
 
254
249
  #: ../lib/hammer_cli_foreman/associating_commands.rb:172
255
- #, fuzzy
256
250
  msgid "Could not associate the user group"
257
- msgstr "無法建立使用者群組"
251
+ msgstr ""
258
252
 
259
253
  #: ../lib/hammer_cli_foreman/associating_commands.rb:177
260
254
  msgid "Disassociate an user group"
@@ -265,9 +259,8 @@ msgid "The user group has been disassociated"
265
259
  msgstr ""
266
260
 
267
261
  #: ../lib/hammer_cli_foreman/associating_commands.rb:182
268
- #, fuzzy
269
262
  msgid "Could not disassociate the user group"
270
- msgstr "無法建立使用者群組"
263
+ msgstr ""
271
264
 
272
265
  #: ../lib/hammer_cli_foreman/associating_commands.rb:191
273
266
  msgid "Associate a configuration template"
@@ -406,28 +399,26 @@ msgid ""
406
399
  "You are currently not logged in to any service.\n"
407
400
  "Use the service to set credentials."
408
401
  msgstr ""
409
- "您目前尚未登入任何服務。\n"
410
- "請使用此服務來設定認證。"
411
402
 
412
403
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
413
404
  msgid "Manage LDAP auth sources."
414
- msgstr ""
405
+ msgstr "管理 LDAP auth 來源。"
415
406
 
416
407
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
417
408
  msgid "LDAPS?"
418
- msgstr ""
409
+ msgstr "LDAPS?"
419
410
 
420
411
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
421
412
  msgid "Port"
422
- msgstr ""
413
+ msgstr "連接埠"
423
414
 
424
415
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
425
416
  msgid "Server Type"
426
- msgstr ""
417
+ msgstr "伺服器類型"
427
418
 
428
419
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
429
420
  msgid "Account Username"
430
- msgstr ""
421
+ msgstr "帳號使用者名稱"
431
422
 
432
423
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
433
424
  msgid "Base DN"
@@ -435,81 +426,81 @@ msgstr "Base DN"
435
426
 
436
427
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:29
437
428
  msgid "LDAP filter"
438
- msgstr "LDAP過濾器"
429
+ msgstr "LDAP 篩選器"
439
430
 
440
431
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
441
432
  msgid "Automatically Create Accounts?"
442
- msgstr ""
433
+ msgstr "自動建立帳號?"
443
434
 
444
435
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
445
436
  msgid "Login Name Attribute"
446
- msgstr ""
437
+ msgstr "登錄名稱屬性"
447
438
 
448
439
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
449
440
  msgid "First Name Attribute"
450
- msgstr ""
441
+ msgstr "名字屬性"
451
442
 
452
443
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
453
444
  msgid "Last Name Attribute"
454
- msgstr ""
445
+ msgstr "姓屬性"
455
446
 
456
447
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
457
448
  msgid "Email Address Attribute"
458
- msgstr ""
449
+ msgstr "電子郵件屬性"
459
450
 
460
451
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
461
452
  msgid "Photo Attribute"
462
- msgstr ""
453
+ msgstr "照片屬性"
463
454
 
464
455
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
465
456
  msgid "Auth source created"
466
- msgstr ""
457
+ msgstr "已建立 Auth 來源"
467
458
 
468
459
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
469
460
  msgid "Could not create the Auth Source"
470
- msgstr ""
461
+ msgstr "無法建立 Auth 來源"
471
462
 
472
463
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
473
464
  msgid "Auth source deleted"
474
- msgstr ""
465
+ msgstr "Auth 來源已刪除"
475
466
 
476
467
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
477
468
  msgid "Could not delete the Auth Source"
478
- msgstr ""
469
+ msgstr "無法刪除 Auth 來源"
479
470
 
480
471
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
481
472
  msgid "Auth source updated"
482
- msgstr ""
473
+ msgstr "Auth 來源已更新"
483
474
 
484
475
  #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
485
476
  msgid "Could not update the Auth Source"
486
- msgstr ""
477
+ msgstr "無法更新 Auth 來源"
487
478
 
488
- #: ../lib/hammer_cli_foreman/commands.rb:83
479
+ #: ../lib/hammer_cli_foreman/commands.rb:87
489
480
  msgid "Received data of unknown format"
490
- msgstr "取得了不明格式的資料"
481
+ msgstr "收到了不明格式的資料"
491
482
 
492
- #: ../lib/hammer_cli_foreman/commands.rb:191
483
+ #: ../lib/hammer_cli_foreman/commands.rb:195
493
484
  msgid "Could not find %{resource}. Some search options were missing, please see --help."
494
- msgstr ""
485
+ msgstr "找不到 %{resource}。部分搜尋選項遺失,請查看 --help。"
495
486
 
496
- #: ../lib/hammer_cli_foreman/commands.rb:193
487
+ #: ../lib/hammer_cli_foreman/commands.rb:197
497
488
  msgid "Could not find %{resource}, please set option %{switches}."
498
- msgstr ""
489
+ msgstr "找不到 %{resource},請設置選項 %{switches}。"
499
490
 
500
- #: ../lib/hammer_cli_foreman/commands.rb:195
491
+ #: ../lib/hammer_cli_foreman/commands.rb:199
501
492
  msgid "Could not find %{resource}, please set one of options %{switches}."
502
- msgstr ""
493
+ msgstr "找不到 %{resource},請設置 %{switches} 選項之一。"
503
494
 
504
- #: ../lib/hammer_cli_foreman/commands.rb:517
495
+ #: ../lib/hammer_cli_foreman/commands.rb:521
505
496
  msgid "Associate a resource"
506
- msgstr "將資源相聯"
497
+ msgstr "使資源相聯"
507
498
 
508
- #: ../lib/hammer_cli_foreman/commands.rb:539
499
+ #: ../lib/hammer_cli_foreman/commands.rb:543
509
500
  msgid "Disassociate a resource"
510
501
  msgstr "解除資源的相聯"
511
502
 
512
- #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:327 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
503
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:334 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
513
504
  msgid "Value"
514
505
  msgstr "值"
515
506
 
@@ -549,7 +540,7 @@ msgstr "操作全域參數。"
549
540
  msgid "Provider"
550
541
  msgstr "供應方"
551
542
 
552
- #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:201 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
543
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
553
544
  msgid "UUID"
554
545
  msgstr "UUID"
555
546
 
@@ -603,19 +594,23 @@ msgstr "無法刪除運算資源"
603
594
 
604
595
  #: ../lib/hammer_cli_foreman/credentials.rb:26
605
596
  msgid "[Foreman] Username: "
606
- msgstr ""
597
+ msgstr "[Foreman] 使用者名稱:"
607
598
 
608
599
  #: ../lib/hammer_cli_foreman/credentials.rb:33
609
600
  msgid "[Foreman] Password for %s: "
601
+ msgstr "[Foreman] %s 的密碼:"
602
+
603
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
604
+ msgid "Use the default organization and/or location from the server"
610
605
  msgstr ""
611
606
 
612
607
  #: ../lib/hammer_cli_foreman/domain.rb:6
613
608
  msgid "ID of DNS proxy to use within this domain"
614
- msgstr ""
609
+ msgstr "在此區域中使用的 DNS 協定的 ID"
615
610
 
616
611
  #: ../lib/hammer_cli_foreman/domain.rb:7
617
612
  msgid "Name of DNS proxy to use within this domain"
618
- msgstr ""
613
+ msgstr "在此區域中使用的 DNS 協定的名稱"
619
614
 
620
615
  #: ../lib/hammer_cli_foreman/domain.rb:43
621
616
  msgid "DNS Id"
@@ -703,19 +698,19 @@ msgstr "禁止 - 伺服器拒絕處理請求"
703
698
 
704
699
  #: ../lib/hammer_cli_foreman/exception_handler.rb:75
705
700
  msgid "Could not load the API description from the server"
706
- msgstr ""
701
+ msgstr "無法從伺服器載入 API 描述"
707
702
 
708
703
  #: ../lib/hammer_cli_foreman/exception_handler.rb:76
709
704
  msgid "is the server down?"
710
- msgstr ""
705
+ msgstr "伺服器是否沒有在運作?"
711
706
 
712
707
  #: ../lib/hammer_cli_foreman/exception_handler.rb:77
713
708
  msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
714
- msgstr ""
709
+ msgstr "使用 apipie 快取時 '%s' 是否有在伺服器上運作?(典型的生產設定)"
715
710
 
716
711
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
717
712
  msgid "View and manage user group's external user groups"
718
- msgstr ""
713
+ msgstr "檢視和管理使用者群組的外部使用者群組"
719
714
 
720
715
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
721
716
  msgid "Auth source"
@@ -723,37 +718,37 @@ msgstr "驗證來源"
723
718
 
724
719
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:39
725
720
  msgid "Refresh external user group"
726
- msgstr ""
721
+ msgstr "刷新外部使用者群組"
727
722
 
728
723
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:57
729
724
  msgid "External user group created"
730
- msgstr ""
725
+ msgstr "已建立外部使用者群組"
731
726
 
732
727
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:58
733
728
  msgid "Could not create external user group"
734
- msgstr ""
729
+ msgstr "無法建立外部使用者群組"
735
730
 
736
731
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:65
737
732
  msgid "External user group updated"
738
- msgstr ""
733
+ msgstr "已更新外部使用者群組"
739
734
 
740
735
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:66
741
736
  msgid "Could not update external user group"
742
- msgstr ""
737
+ msgstr "無法更新外部使用者群組"
743
738
 
744
739
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:73
745
740
  msgid "External user group deleted"
746
- msgstr ""
741
+ msgstr "已刪除外部使用者群組"
747
742
 
748
743
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:74
749
744
  msgid "Could not delete the external user group"
750
- msgstr ""
745
+ msgstr "無法刪除外部使用者群組"
751
746
 
752
747
  #: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11 ../lib/hammer_cli_foreman/report.rb:31
753
748
  msgid "Host"
754
749
  msgstr "主機"
755
750
 
756
- #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
751
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
757
752
  msgid "Fact"
758
753
  msgstr "詳情"
759
754
 
@@ -777,11 +772,11 @@ msgstr "角色"
777
772
  msgid "Permissions"
778
773
  msgstr "權限"
779
774
 
780
- #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:33
775
+ #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
781
776
  msgid "(Miscellaneous)"
782
777
  msgstr "(雜項)"
783
778
 
784
- #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
779
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
785
780
  msgid "none"
786
781
  msgstr "無"
787
782
 
@@ -815,340 +810,331 @@ msgstr "資源"
815
810
 
816
811
  #: ../lib/hammer_cli_foreman/host.rb:15
817
812
  msgid "Login of the owner"
818
- msgstr ""
813
+ msgstr "擁有者的登錄帳號"
819
814
 
820
815
  #: ../lib/hammer_cli_foreman/host.rb:17
821
816
  msgid "ID of the owner"
822
- msgstr ""
817
+ msgstr "擁有者的 ID"
823
818
 
824
- #: ../lib/hammer_cli_foreman/host.rb:42
819
+ #: ../lib/hammer_cli_foreman/host.rb:44
825
820
  msgid "Host parameters."
826
821
  msgstr "主機參數。"
827
822
 
828
- #: ../lib/hammer_cli_foreman/host.rb:44
823
+ #: ../lib/hammer_cli_foreman/host.rb:46
829
824
  msgid "Compute resource attributes."
830
825
  msgstr "運算資源屬性。"
831
826
 
832
- #: ../lib/hammer_cli_foreman/host.rb:46
827
+ #: ../lib/hammer_cli_foreman/host.rb:48
833
828
  msgid "Volume parameters"
834
829
  msgstr "卷冊參數"
835
830
 
836
- #: ../lib/hammer_cli_foreman/host.rb:48
831
+ #: ../lib/hammer_cli_foreman/host.rb:50
837
832
  msgid "Interface parameters."
838
833
  msgstr "介面參數。"
839
834
 
840
- #: ../lib/hammer_cli_foreman/host.rb:62
835
+ #: ../lib/hammer_cli_foreman/host.rb:64
841
836
  msgid "Enter the root password for the host:"
842
837
  msgstr ""
843
838
 
844
- #: ../lib/hammer_cli_foreman/host.rb:146
839
+ #: ../lib/hammer_cli_foreman/host.rb:153
845
840
  msgid "At least one interface must be set as primary"
846
841
  msgstr ""
847
842
 
848
- #: ../lib/hammer_cli_foreman/host.rb:149
843
+ #: ../lib/hammer_cli_foreman/host.rb:156
849
844
  msgid "At least one interface must be set as provision"
850
845
  msgstr ""
851
846
 
852
- #: ../lib/hammer_cli_foreman/host.rb:165 ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
847
+ #: ../lib/hammer_cli_foreman/host.rb:172 ../lib/hammer_cli_foreman/host.rb:248 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
853
848
  msgid "Operating System"
854
849
  msgstr "作業系統"
855
850
 
856
- #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
851
+ #: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
857
852
  msgid "Host Group"
858
853
  msgstr "主機群組"
859
854
 
860
- #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
855
+ #: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
861
856
  msgid "IP"
862
857
  msgstr "IP"
863
858
 
864
- #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
859
+ #: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
865
860
  msgid "MAC"
866
861
  msgstr "MAC"
867
862
 
868
- #: ../lib/hammer_cli_foreman/host.rb:178
863
+ #: ../lib/hammer_cli_foreman/host.rb:185
869
864
  msgid "Bare Metal"
870
865
  msgstr ""
871
866
 
872
- #: ../lib/hammer_cli_foreman/host.rb:203
873
- #, fuzzy
867
+ #: ../lib/hammer_cli_foreman/host.rb:210
874
868
  msgid "Organization"
875
- msgstr "組織"
869
+ msgstr ""
876
870
 
877
- #: ../lib/hammer_cli_foreman/host.rb:204
878
- #, fuzzy
871
+ #: ../lib/hammer_cli_foreman/host.rb:211
879
872
  msgid "Location"
880
- msgstr "位置"
873
+ msgstr ""
881
874
 
882
- #: ../lib/hammer_cli_foreman/host.rb:206
875
+ #: ../lib/hammer_cli_foreman/host.rb:213
883
876
  msgid "Compute Resource"
884
877
  msgstr "運算資源"
885
878
 
886
- #: ../lib/hammer_cli_foreman/host.rb:207
887
- #, fuzzy
879
+ #: ../lib/hammer_cli_foreman/host.rb:214
888
880
  msgid "Compute Profile"
889
- msgstr "ComputeProfile"
881
+ msgstr ""
890
882
 
891
- #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/hostgroup.rb:61
883
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
892
884
  msgid "Environment"
893
885
  msgstr "環境"
894
886
 
895
- #: ../lib/hammer_cli_foreman/host.rb:209
896
- #, fuzzy
887
+ #: ../lib/hammer_cli_foreman/host.rb:216
897
888
  msgid "Puppet CA Id"
898
- msgstr "Puppet CA 協定 ID"
889
+ msgstr ""
899
890
 
900
- #: ../lib/hammer_cli_foreman/host.rb:210
901
- #, fuzzy
891
+ #: ../lib/hammer_cli_foreman/host.rb:217
902
892
  msgid "Puppet Master Id"
903
- msgstr "Puppet Master 協定 ID"
893
+ msgstr ""
904
894
 
905
- #: ../lib/hammer_cli_foreman/host.rb:211
895
+ #: ../lib/hammer_cli_foreman/host.rb:218
906
896
  msgid "Cert name"
907
897
  msgstr "憑證名稱"
908
898
 
909
- #: ../lib/hammer_cli_foreman/host.rb:212 ../lib/hammer_cli_foreman/interface.rb:51
899
+ #: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
910
900
  msgid "Managed"
911
901
  msgstr "已管理"
912
902
 
913
- #: ../lib/hammer_cli_foreman/host.rb:214
903
+ #: ../lib/hammer_cli_foreman/host.rb:221
914
904
  msgid "Installed at"
915
905
  msgstr "安裝於"
916
906
 
917
- #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
907
+ #: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
918
908
  msgid "Last report"
919
909
  msgstr "最後一份報告"
920
910
 
921
- #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
911
+ #: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
922
912
  msgid "Network"
923
913
  msgstr "網路"
924
914
 
925
- #: ../lib/hammer_cli_foreman/host.rb:220 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
915
+ #: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
926
916
  msgid "Subnet"
927
917
  msgstr "子網路"
928
918
 
929
- #: ../lib/hammer_cli_foreman/host.rb:221 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
919
+ #: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
930
920
  msgid "Domain"
931
921
  msgstr "網域"
932
922
 
933
- #: ../lib/hammer_cli_foreman/host.rb:222
923
+ #: ../lib/hammer_cli_foreman/host.rb:229
934
924
  msgid "Service provider"
935
925
  msgstr ""
936
926
 
937
- #: ../lib/hammer_cli_foreman/host.rb:223
927
+ #: ../lib/hammer_cli_foreman/host.rb:230
938
928
  msgid "SP Name"
939
929
  msgstr "SP 名稱"
940
930
 
941
- #: ../lib/hammer_cli_foreman/host.rb:224
931
+ #: ../lib/hammer_cli_foreman/host.rb:231
942
932
  msgid "SP IP"
943
933
  msgstr "SP IP"
944
934
 
945
- #: ../lib/hammer_cli_foreman/host.rb:225
935
+ #: ../lib/hammer_cli_foreman/host.rb:232
946
936
  msgid "SP MAC"
947
937
  msgstr "SP MAC"
948
938
 
949
- #: ../lib/hammer_cli_foreman/host.rb:226
939
+ #: ../lib/hammer_cli_foreman/host.rb:233
950
940
  msgid "SP Subnet"
951
941
  msgstr "SP 子網路"
952
942
 
953
- #: ../lib/hammer_cli_foreman/host.rb:230
954
- #, fuzzy
943
+ #: ../lib/hammer_cli_foreman/host.rb:237
955
944
  msgid "Network interfaces"
956
- msgstr "BMC 網路介面卡"
945
+ msgstr ""
957
946
 
958
- #: ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
947
+ #: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
959
948
  msgid "Identifier"
960
949
  msgstr ""
961
950
 
962
- #: ../lib/hammer_cli_foreman/host.rb:233 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
951
+ #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
963
952
  msgid "Type"
964
953
  msgstr "類型"
965
954
 
966
- #: ../lib/hammer_cli_foreman/host.rb:234 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
955
+ #: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
967
956
  msgid "MAC address"
968
957
  msgstr ""
969
958
 
970
- #: ../lib/hammer_cli_foreman/host.rb:235 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
959
+ #: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
971
960
  msgid "IP address"
972
961
  msgstr ""
973
962
 
974
- #: ../lib/hammer_cli_foreman/host.rb:236
963
+ #: ../lib/hammer_cli_foreman/host.rb:243
975
964
  msgid "FQDN"
976
965
  msgstr ""
977
966
 
978
- #: ../lib/hammer_cli_foreman/host.rb:239
979
- #, fuzzy
967
+ #: ../lib/hammer_cli_foreman/host.rb:246
980
968
  msgid "Operating system"
981
- msgstr "作業系統"
969
+ msgstr ""
982
970
 
983
- #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
971
+ #: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
984
972
  msgid "Architecture"
985
973
  msgstr "架構"
986
974
 
987
- #: ../lib/hammer_cli_foreman/host.rb:244
975
+ #: ../lib/hammer_cli_foreman/host.rb:251
988
976
  msgid "Build"
989
977
  msgstr "組建"
990
978
 
991
- #: ../lib/hammer_cli_foreman/host.rb:245 ../lib/hammer_cli_foreman/hostgroup.rb:77
979
+ #: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
992
980
  msgid "Medium"
993
981
  msgstr "媒介"
994
982
 
995
- #: ../lib/hammer_cli_foreman/host.rb:246 ../lib/hammer_cli_foreman/hostgroup.rb:76
983
+ #: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
996
984
  msgid "Partition Table"
997
985
  msgstr "分割表"
998
986
 
999
- #: ../lib/hammer_cli_foreman/host.rb:247
1000
- #, fuzzy
987
+ #: ../lib/hammer_cli_foreman/host.rb:254
1001
988
  msgid "Custom partition table"
1002
- msgstr "為分割表建立相聯性"
989
+ msgstr ""
1003
990
 
1004
- #: ../lib/hammer_cli_foreman/host.rb:250
991
+ #: ../lib/hammer_cli_foreman/host.rb:257
1005
992
  msgid "Image"
1006
993
  msgstr "映像檔"
1007
994
 
1008
- #: ../lib/hammer_cli_foreman/host.rb:251
995
+ #: ../lib/hammer_cli_foreman/host.rb:258
1009
996
  msgid "Image file"
1010
997
  msgstr "映像檔"
1011
998
 
1012
- #: ../lib/hammer_cli_foreman/host.rb:252
999
+ #: ../lib/hammer_cli_foreman/host.rb:259
1013
1000
  msgid "Use image"
1014
1001
  msgstr "使用映像檔"
1015
1002
 
1016
- #: ../lib/hammer_cli_foreman/host.rb:258
1003
+ #: ../lib/hammer_cli_foreman/host.rb:265
1017
1004
  msgid "Additional info"
1018
1005
  msgstr ""
1019
1006
 
1020
- #: ../lib/hammer_cli_foreman/host.rb:259
1007
+ #: ../lib/hammer_cli_foreman/host.rb:266
1021
1008
  msgid "Owner Id"
1022
1009
  msgstr "擁有者 ID"
1023
1010
 
1024
- #: ../lib/hammer_cli_foreman/host.rb:260
1011
+ #: ../lib/hammer_cli_foreman/host.rb:267
1025
1012
  msgid "Owner Type"
1026
1013
  msgstr "擁有者類型"
1027
1014
 
1028
- #: ../lib/hammer_cli_foreman/host.rb:261
1015
+ #: ../lib/hammer_cli_foreman/host.rb:268
1029
1016
  msgid "Enabled"
1030
1017
  msgstr "已啟用"
1031
1018
 
1032
- #: ../lib/hammer_cli_foreman/host.rb:262 ../lib/hammer_cli_foreman/hostgroup.rb:62
1019
+ #: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
1033
1020
  msgid "Model"
1034
1021
  msgstr "型號"
1035
1022
 
1036
- #: ../lib/hammer_cli_foreman/host.rb:263
1023
+ #: ../lib/hammer_cli_foreman/host.rb:270
1037
1024
  msgid "Comment"
1038
1025
  msgstr "備註"
1039
1026
 
1040
- #: ../lib/hammer_cli_foreman/host.rb:276
1027
+ #: ../lib/hammer_cli_foreman/host.rb:283
1041
1028
  msgid "Status"
1042
1029
  msgstr "狀態"
1043
1030
 
1044
- #: ../lib/hammer_cli_foreman/host.rb:277
1031
+ #: ../lib/hammer_cli_foreman/host.rb:284
1045
1032
  msgid "Power"
1046
1033
  msgstr "電源"
1047
1034
 
1048
- #: ../lib/hammer_cli_foreman/host.rb:313
1035
+ #: ../lib/hammer_cli_foreman/host.rb:320
1049
1036
  msgid "Puppet run triggered"
1050
1037
  msgstr "已啟動 Puppet run"
1051
1038
 
1052
- #: ../lib/hammer_cli_foreman/host.rb:366
1039
+ #: ../lib/hammer_cli_foreman/host.rb:373
1053
1040
  msgid "Host created"
1054
1041
  msgstr "已建立主機"
1055
1042
 
1056
- #: ../lib/hammer_cli_foreman/host.rb:367
1043
+ #: ../lib/hammer_cli_foreman/host.rb:374
1057
1044
  msgid "Could not create the host"
1058
1045
  msgstr "無法建立主機"
1059
1046
 
1060
- #: ../lib/hammer_cli_foreman/host.rb:388
1047
+ #: ../lib/hammer_cli_foreman/host.rb:395
1061
1048
  msgid "Host updated"
1062
1049
  msgstr "已更新主機"
1063
1050
 
1064
- #: ../lib/hammer_cli_foreman/host.rb:389
1051
+ #: ../lib/hammer_cli_foreman/host.rb:396
1065
1052
  msgid "Could not update the host"
1066
1053
  msgstr "無法更新主機"
1067
1054
 
1068
- #: ../lib/hammer_cli_foreman/host.rb:396
1055
+ #: ../lib/hammer_cli_foreman/host.rb:403
1069
1056
  msgid "Host deleted"
1070
1057
  msgstr "已刪除主機"
1071
1058
 
1072
- #: ../lib/hammer_cli_foreman/host.rb:397
1059
+ #: ../lib/hammer_cli_foreman/host.rb:404
1073
1060
  msgid "Could not delete the host"
1074
1061
  msgstr "無法刪除主機"
1075
1062
 
1076
- #: ../lib/hammer_cli_foreman/host.rb:404
1063
+ #: ../lib/hammer_cli_foreman/host.rb:411
1077
1064
  msgid "Create or update parameter for a host."
1078
1065
  msgstr "建立或更新主機參數。"
1079
1066
 
1080
- #: ../lib/hammer_cli_foreman/host.rb:406
1067
+ #: ../lib/hammer_cli_foreman/host.rb:413
1081
1068
  msgid "Host parameter updated"
1082
1069
  msgstr "已更新主機參數"
1083
1070
 
1084
- #: ../lib/hammer_cli_foreman/host.rb:407
1071
+ #: ../lib/hammer_cli_foreman/host.rb:414
1085
1072
  msgid "New host parameter created"
1086
1073
  msgstr "已建立新的主機參數"
1087
1074
 
1088
- #: ../lib/hammer_cli_foreman/host.rb:408
1075
+ #: ../lib/hammer_cli_foreman/host.rb:415
1089
1076
  msgid "Could not set host parameter"
1090
1077
  msgstr "無法設置主機參數"
1091
1078
 
1092
- #: ../lib/hammer_cli_foreman/host.rb:420
1079
+ #: ../lib/hammer_cli_foreman/host.rb:427
1093
1080
  msgid "Delete parameter for a host."
1094
1081
  msgstr "刪除主機的參數。"
1095
1082
 
1096
- #: ../lib/hammer_cli_foreman/host.rb:422
1083
+ #: ../lib/hammer_cli_foreman/host.rb:429
1097
1084
  msgid "Host parameter deleted"
1098
1085
  msgstr "已刪除主機參數"
1099
1086
 
1100
- #: ../lib/hammer_cli_foreman/host.rb:437
1087
+ #: ../lib/hammer_cli_foreman/host.rb:444
1101
1088
  msgid "Power a host on"
1102
1089
  msgstr "啟動主機電源"
1103
1090
 
1104
- #: ../lib/hammer_cli_foreman/host.rb:438
1091
+ #: ../lib/hammer_cli_foreman/host.rb:445
1105
1092
  msgid "The host is starting."
1106
1093
  msgstr "主機正在啟動。"
1107
1094
 
1108
- #: ../lib/hammer_cli_foreman/host.rb:455
1095
+ #: ../lib/hammer_cli_foreman/host.rb:462
1109
1096
  msgid "Force turning off a host"
1110
1097
  msgstr "強制關閉主機"
1111
1098
 
1112
- #: ../lib/hammer_cli_foreman/host.rb:460
1099
+ #: ../lib/hammer_cli_foreman/host.rb:467
1113
1100
  msgid "Power a host off"
1114
1101
  msgstr "關閉主機電源"
1115
1102
 
1116
- #: ../lib/hammer_cli_foreman/host.rb:472
1103
+ #: ../lib/hammer_cli_foreman/host.rb:479
1117
1104
  msgid "Power off forced."
1118
1105
  msgstr "強制關閉電源。"
1119
1106
 
1120
- #: ../lib/hammer_cli_foreman/host.rb:474
1107
+ #: ../lib/hammer_cli_foreman/host.rb:481
1121
1108
  msgid "Powering the host off."
1122
1109
  msgstr "關閉主機電源。"
1123
1110
 
1124
- #: ../lib/hammer_cli_foreman/host.rb:491
1111
+ #: ../lib/hammer_cli_foreman/host.rb:498
1125
1112
  msgid "Reboot a host"
1126
1113
  msgstr "重新啟動主機"
1127
1114
 
1128
- #: ../lib/hammer_cli_foreman/host.rb:492
1115
+ #: ../lib/hammer_cli_foreman/host.rb:499
1129
1116
  msgid "Host reboot started."
1130
1117
  msgstr "已開始重新啟動主機。"
1131
1118
 
1132
1119
  #: ../lib/hammer_cli_foreman/hostgroup.rb:10
1133
1120
  msgid "List of puppetclass ids"
1134
- msgstr ""
1121
+ msgstr "puppetclass id 的清單"
1135
1122
 
1136
1123
  #: ../lib/hammer_cli_foreman/hostgroup.rb:12
1137
1124
  msgid "Name of puppet CA proxy"
1138
- msgstr ""
1125
+ msgstr "puppet CA 協定的名稱"
1139
1126
 
1140
1127
  #: ../lib/hammer_cli_foreman/hostgroup.rb:13
1141
1128
  msgid "Name of puppet proxy"
1142
- msgstr ""
1129
+ msgstr "puppet 協定的名稱"
1143
1130
 
1144
1131
  #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1145
1132
  msgid "Name of parent hostgroup"
1146
- msgstr ""
1133
+ msgstr "父主機群組的名稱"
1147
1134
 
1148
1135
  #: ../lib/hammer_cli_foreman/hostgroup.rb:17
1149
- #, fuzzy
1150
1136
  msgid "Root password"
1151
- msgstr "BMC 密碼"
1137
+ msgstr ""
1152
1138
 
1153
1139
  #: ../lib/hammer_cli_foreman/hostgroup.rb:23
1154
1140
  msgid "Enter the root password for the host group:"
@@ -1156,7 +1142,7 @@ msgstr ""
1156
1142
 
1157
1143
  #: ../lib/hammer_cli_foreman/hostgroup.rb:59 ../lib/hammer_cli_foreman/operating_system.rb:11
1158
1144
  msgid "Title"
1159
- msgstr ""
1145
+ msgstr "標題"
1160
1146
 
1161
1147
  #: ../lib/hammer_cli_foreman/hostgroup.rb:78
1162
1148
  msgid "Puppet CA Proxy Id"
@@ -1172,7 +1158,7 @@ msgstr "ComputeProfile"
1172
1158
 
1173
1159
  #: ../lib/hammer_cli_foreman/hostgroup.rb:84
1174
1160
  msgid "Parent Id"
1175
- msgstr ""
1161
+ msgstr "父 ID"
1176
1162
 
1177
1163
  #: ../lib/hammer_cli_foreman/hostgroup.rb:94
1178
1164
  msgid "Hostgroup created"
@@ -1243,9 +1229,8 @@ msgid "Host name"
1243
1229
  msgstr "主機名稱"
1244
1230
 
1245
1231
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1246
- #, fuzzy
1247
1232
  msgid "Hostgroup title"
1248
- msgstr "主機群組名稱"
1233
+ msgstr ""
1249
1234
 
1250
1235
  #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1251
1236
  msgid "Hostgroup name"
@@ -1269,7 +1254,7 @@ msgstr "組織名稱"
1269
1254
 
1270
1255
  #: ../lib/hammer_cli_foreman/id_resolver.rb:50
1271
1256
  msgid "Operating system title"
1272
- msgstr ""
1257
+ msgstr "作業系統標題"
1273
1258
 
1274
1259
  #: ../lib/hammer_cli_foreman/id_resolver.rb:52
1275
1260
  msgid "Partition table name"
@@ -1292,9 +1277,8 @@ msgid "User role name"
1292
1277
  msgstr "使用者角色名稱"
1293
1278
 
1294
1279
  #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1295
- #, fuzzy
1296
1280
  msgid "Setting name"
1297
- msgstr "憑證名稱"
1281
+ msgstr ""
1298
1282
 
1299
1283
  #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1300
1284
  msgid "Subnet name"
@@ -1313,9 +1297,8 @@ msgid "Smart class parameter name"
1313
1297
  msgstr "智慧類別參數名稱"
1314
1298
 
1315
1299
  #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1316
- #, fuzzy
1317
1300
  msgid "Smart variable name"
1318
- msgstr "智慧變數"
1301
+ msgstr ""
1319
1302
 
1320
1303
  #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1321
1304
  msgid "Name to search by"
@@ -1323,14 +1306,15 @@ msgstr "欲使用來進行搜尋的名稱"
1323
1306
 
1324
1307
  #: ../lib/hammer_cli_foreman/id_resolver.rb:153
1325
1308
  msgid "one of %s not found"
1326
- msgstr ""
1309
+ msgstr "找不到其中一個 %s"
1327
1310
 
1328
1311
  #: ../lib/hammer_cli_foreman/id_resolver.rb:200
1329
1312
  msgid "%s not found"
1330
1313
  msgstr "找不到 %s"
1331
1314
 
1332
1315
  #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1333
- msgid "%s found more than once"
1316
+ #, fuzzy
1317
+ msgid "found more than one %s"
1334
1318
  msgstr "找到 %s 超過一次"
1335
1319
 
1336
1320
  #: ../lib/hammer_cli_foreman/id_resolver.rb:212
@@ -1382,28 +1366,24 @@ msgid "View and manage host's network interfaces"
1382
1366
  msgstr ""
1383
1367
 
1384
1368
  #: ../lib/hammer_cli_foreman/interface.rb:10
1385
- #, fuzzy
1386
1369
  msgid "primary"
1387
- msgstr "主 DNS"
1370
+ msgstr ""
1388
1371
 
1389
1372
  #: ../lib/hammer_cli_foreman/interface.rb:11
1390
1373
  msgid "provision"
1391
1374
  msgstr ""
1392
1375
 
1393
1376
  #: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
1394
- #, fuzzy
1395
1377
  msgid "DNS name"
1396
- msgstr "憑證名稱"
1378
+ msgstr ""
1397
1379
 
1398
1380
  #: ../lib/hammer_cli_foreman/interface.rb:52
1399
- #, fuzzy
1400
1381
  msgid "Primary"
1401
- msgstr "主 DNS"
1382
+ msgstr ""
1402
1383
 
1403
1384
  #: ../lib/hammer_cli_foreman/interface.rb:53
1404
- #, fuzzy
1405
1385
  msgid "Provision"
1406
- msgstr "供應方"
1386
+ msgstr ""
1407
1387
 
1408
1388
  #: ../lib/hammer_cli_foreman/interface.rb:54
1409
1389
  msgid "Virtual"
@@ -1426,9 +1406,8 @@ msgid "Bond"
1426
1406
  msgstr ""
1427
1407
 
1428
1408
  #: ../lib/hammer_cli_foreman/interface.rb:64
1429
- #, fuzzy
1430
1409
  msgid "Mode"
1431
- msgstr "型號"
1410
+ msgstr ""
1432
1411
 
1433
1412
  #: ../lib/hammer_cli_foreman/interface.rb:65
1434
1413
  msgid "Attached devices"
@@ -1447,39 +1426,32 @@ msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-base
1447
1426
  msgstr ""
1448
1427
 
1449
1428
  #: ../lib/hammer_cli_foreman/interface.rb:128
1450
- #, fuzzy
1451
1429
  msgid "Interface created"
1452
- msgstr "已建立映像檔"
1430
+ msgstr ""
1453
1431
 
1454
1432
  #: ../lib/hammer_cli_foreman/interface.rb:129
1455
- #, fuzzy
1456
1433
  msgid "Could not create the interface"
1457
- msgstr "無法建立映像檔"
1434
+ msgstr ""
1458
1435
 
1459
1436
  #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1460
- #, fuzzy
1461
1437
  msgid "Compute resource specific attributes."
1462
- msgstr "運算資源屬性。"
1438
+ msgstr ""
1463
1439
 
1464
1440
  #: ../lib/hammer_cli_foreman/interface.rb:141
1465
- #, fuzzy
1466
1441
  msgid "Interface updated"
1467
- msgstr "已更新映像檔"
1442
+ msgstr ""
1468
1443
 
1469
1444
  #: ../lib/hammer_cli_foreman/interface.rb:142
1470
- #, fuzzy
1471
1445
  msgid "Could not update the interface"
1472
- msgstr "無法更新映像檔"
1446
+ msgstr ""
1473
1447
 
1474
1448
  #: ../lib/hammer_cli_foreman/interface.rb:154
1475
- #, fuzzy
1476
1449
  msgid "Interface deleted"
1477
- msgstr "已刪除映像檔"
1450
+ msgstr ""
1478
1451
 
1479
1452
  #: ../lib/hammer_cli_foreman/interface.rb:155
1480
- #, fuzzy
1481
1453
  msgid "Could not delete the interface"
1482
- msgstr "無法刪除映像檔"
1454
+ msgstr ""
1483
1455
 
1484
1456
  #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
1485
1457
  msgid "Location numeric id to search by"
@@ -1513,6 +1485,40 @@ msgstr "位置已刪除"
1513
1485
  msgid "Could not delete the location"
1514
1486
  msgstr "無法刪除位置"
1515
1487
 
1488
+ #: ../lib/hammer_cli_foreman/location.rb:86
1489
+ #, fuzzy
1490
+ msgid "Create or update parameter for a location."
1491
+ msgstr "建立或更新網域的參數。"
1492
+
1493
+ #: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
1494
+ #, fuzzy
1495
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1496
+ msgstr "參數 [%{name}] 已更新為 [%{value}]。"
1497
+
1498
+ #: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
1499
+ msgid "Parameter [%{name}] created with value [%{value}]"
1500
+ msgstr ""
1501
+
1502
+ #: ../lib/hammer_cli_foreman/location.rb:90
1503
+ #, fuzzy
1504
+ msgid "Could not set location parameter"
1505
+ msgstr "無法設置網域參數"
1506
+
1507
+ #: ../lib/hammer_cli_foreman/location.rb:97
1508
+ #, fuzzy
1509
+ msgid "Delete parameter for a location."
1510
+ msgstr "刪除網域的參數。"
1511
+
1512
+ #: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
1513
+ #, fuzzy
1514
+ msgid "Parameter [%{name}] deleted"
1515
+ msgstr "已刪除全域參數 [%{name}]。"
1516
+
1517
+ #: ../lib/hammer_cli_foreman/location.rb:100
1518
+ #, fuzzy
1519
+ msgid "Could not delete location parameter"
1520
+ msgstr "無法設置網域參數"
1521
+
1516
1522
  #: ../lib/hammer_cli_foreman/media.rb:11
1517
1523
  msgid "Path"
1518
1524
  msgstr "路徑"
@@ -1687,7 +1693,7 @@ msgstr "無法刪除預設範本"
1687
1693
 
1688
1694
  #: ../lib/hammer_cli_foreman/operating_system.rb:178
1689
1695
  msgid "Default template of type %s not found"
1690
- msgstr ""
1696
+ msgstr "找不到類型為 %s 的預設範本"
1691
1697
 
1692
1698
  #: ../lib/hammer_cli_foreman/organization.rb:37 ../lib/hammer_cli_foreman/references.rb:15
1693
1699
  msgid "Locations"
@@ -1717,6 +1723,25 @@ msgstr "已刪除組織"
1717
1723
  msgid "Could not delete the organization"
1718
1724
  msgstr "無法刪除組織"
1719
1725
 
1726
+ #: ../lib/hammer_cli_foreman/organization.rb:87
1727
+ #, fuzzy
1728
+ msgid "Create or update parameter for an organization."
1729
+ msgstr "建立或更新網域的參數。"
1730
+
1731
+ #: ../lib/hammer_cli_foreman/organization.rb:91
1732
+ #, fuzzy
1733
+ msgid "Could not set organization parameter"
1734
+ msgstr "無法設置網域參數"
1735
+
1736
+ #: ../lib/hammer_cli_foreman/organization.rb:98
1737
+ #, fuzzy
1738
+ msgid "Delete parameter for an organization."
1739
+ msgstr "刪除網域的參數。"
1740
+
1741
+ #: ../lib/hammer_cli_foreman/organization.rb:101
1742
+ msgid "Could not delete organization parameter"
1743
+ msgstr ""
1744
+
1720
1745
  #: ../lib/hammer_cli_foreman/partition_table.rb:31
1721
1746
  msgid "View partition table content."
1722
1747
  msgstr "檢視分割表內容。"
@@ -1831,7 +1856,7 @@ msgstr "角色"
1831
1856
 
1832
1857
  #: ../lib/hammer_cli_foreman/references.rb:139
1833
1858
  msgid "External user groups"
1834
- msgstr ""
1859
+ msgstr "外部使用者群組"
1835
1860
 
1836
1861
  #: ../lib/hammer_cli_foreman/report.rb:14 ../lib/hammer_cli_foreman/report.rb:35
1837
1862
  msgid "Applied"
@@ -1929,43 +1954,54 @@ msgstr "無法刪除報告"
1929
1954
  msgid "The server does not support such operation."
1930
1955
  msgstr "伺服器不支援此類型的操作。"
1931
1956
 
1932
- #: ../lib/hammer_cli_foreman/role.rb:23
1957
+ #: ../lib/hammer_cli_foreman/role.rb:20
1958
+ #, fuzzy
1959
+ msgid "Builtin"
1960
+ msgstr "組建"
1961
+
1962
+ #: ../lib/hammer_cli_foreman/role.rb:24
1963
+ msgid "No"
1964
+ msgstr ""
1965
+
1966
+ #: ../lib/hammer_cli_foreman/role.rb:24
1967
+ msgid "Yes"
1968
+ msgstr ""
1969
+
1970
+ #: ../lib/hammer_cli_foreman/role.rb:36
1933
1971
  msgid "User role id"
1934
1972
  msgstr "使用者角色 ID"
1935
1973
 
1936
- #: ../lib/hammer_cli_foreman/role.rb:47
1974
+ #: ../lib/hammer_cli_foreman/role.rb:60
1937
1975
  msgid "User role [%<name>s] created"
1938
1976
  msgstr "使用者角色 [%<name>s] 已建立"
1939
1977
 
1940
- #: ../lib/hammer_cli_foreman/role.rb:48
1978
+ #: ../lib/hammer_cli_foreman/role.rb:61
1941
1979
  msgid "Could not create the user role"
1942
1980
  msgstr "無法建立使用者角色"
1943
1981
 
1944
- #: ../lib/hammer_cli_foreman/role.rb:55
1982
+ #: ../lib/hammer_cli_foreman/role.rb:68
1945
1983
  msgid "User role [%<name>s] updated"
1946
1984
  msgstr "使用者角色 [%<name>s] 已更新"
1947
1985
 
1948
- #: ../lib/hammer_cli_foreman/role.rb:56
1986
+ #: ../lib/hammer_cli_foreman/role.rb:69
1949
1987
  msgid "Could not update the user role"
1950
1988
  msgstr "無法更新使用者角色"
1951
1989
 
1952
- #: ../lib/hammer_cli_foreman/role.rb:63
1990
+ #: ../lib/hammer_cli_foreman/role.rb:76
1953
1991
  msgid "User role [%<name>s] deleted"
1954
1992
  msgstr "使用者角色 [%<name>s] 已刪除"
1955
1993
 
1956
- #: ../lib/hammer_cli_foreman/role.rb:64
1994
+ #: ../lib/hammer_cli_foreman/role.rb:77
1957
1995
  msgid "Could not delete the user roles"
1958
1996
  msgstr "無法刪除使用者角色"
1959
1997
 
1960
1998
  #: ../lib/hammer_cli_foreman/settings.rb:28
1961
- #, fuzzy
1962
1999
  msgid "Setting [%{name}] updated to [%{value}]"
1963
- msgstr "參數 [%{name}] 已更新為 [%{value}]。"
2000
+ msgstr ""
1964
2001
 
1965
2002
  #: ../lib/hammer_cli_foreman/settings.rb:29
1966
- #, fuzzy
1967
2003
  msgid "Could not update the setting"
1968
- msgstr "無法更新網域"
2004
+ msgstr ""
1969
2005
 
1970
2006
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
1971
2007
  msgid "Default Value"
@@ -2004,9 +2040,8 @@ msgid "Merge overrides"
2004
2040
  msgstr ""
2005
2041
 
2006
2042
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
2007
- #, fuzzy
2008
2043
  msgid "Merge default value"
2009
- msgstr "預設值"
2044
+ msgstr ""
2010
2045
 
2011
2046
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
2012
2047
  msgid "Avoid duplicates"
@@ -2017,9 +2052,8 @@ msgid "Order"
2017
2052
  msgstr "順序"
2018
2053
 
2019
2054
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
2020
- #, fuzzy
2021
2055
  msgid "Values"
2022
- msgstr ""
2056
+ msgstr ""
2023
2057
 
2024
2058
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
2025
2059
  msgid "Match"
@@ -2050,28 +2084,24 @@ msgid "Type of the validator."
2050
2084
  msgstr "驗證程式的類型。"
2051
2085
 
2052
2086
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
2053
- #, fuzzy
2054
2087
  msgid "Override value created"
2055
- msgstr "覆寫規則"
2088
+ msgstr ""
2056
2089
 
2057
2090
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:133 ../lib/hammer_cli_foreman/smart_variable.rb:123
2058
- #, fuzzy
2059
2091
  msgid "Could not create the override_value"
2060
- msgstr "無法建立使用者角色"
2092
+ msgstr ""
2061
2093
 
2062
2094
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
2063
- #, fuzzy
2064
2095
  msgid "Override value deleted"
2065
- msgstr "覆寫規則"
2096
+ msgstr ""
2066
2097
 
2067
2098
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:153 ../lib/hammer_cli_foreman/smart_variable.rb:136
2068
- #, fuzzy
2069
2099
  msgid "Could not delete the override value"
2070
- msgstr "無法刪除作業系統"
2100
+ msgstr ""
2071
2101
 
2072
2102
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2073
2103
  msgid "URL"
2074
- msgstr "URL"
2104
+ msgstr "網址"
2075
2105
 
2076
2106
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
2077
2107
  msgid "Features"
@@ -2126,32 +2156,28 @@ msgid "Smart variable [%{variable}] created"
2126
2156
  msgstr ""
2127
2157
 
2128
2158
  #: ../lib/hammer_cli_foreman/smart_variable.rb:83
2129
- #, fuzzy
2130
2159
  msgid "Could not create the smart variable"
2131
- msgstr "無法建立分割表"
2160
+ msgstr ""
2132
2161
 
2133
2162
  #: ../lib/hammer_cli_foreman/smart_variable.rb:87 ../lib/hammer_cli_foreman/smart_variable.rb:101
2134
- #, fuzzy
2135
2163
  msgid "Type of the variable."
2136
- msgstr "驗證程式的類型。"
2164
+ msgstr ""
2137
2165
 
2138
2166
  #: ../lib/hammer_cli_foreman/smart_variable.rb:96
2139
2167
  msgid "Smart variable [%{variable}] updated"
2140
2168
  msgstr ""
2141
2169
 
2142
2170
  #: ../lib/hammer_cli_foreman/smart_variable.rb:97
2143
- #, fuzzy
2144
2171
  msgid "Could not update the smart variable"
2145
- msgstr "無法更新分割表"
2172
+ msgstr ""
2146
2173
 
2147
2174
  #: ../lib/hammer_cli_foreman/smart_variable.rb:111
2148
2175
  msgid "Smart variable [%{variable}] deleted"
2149
2176
  msgstr ""
2150
2177
 
2151
2178
  #: ../lib/hammer_cli_foreman/smart_variable.rb:112
2152
- #, fuzzy
2153
2179
  msgid "Could not delete the smart variable"
2154
- msgstr "無法刪除分割表"
2180
+ msgstr ""
2155
2181
 
2156
2182
  #: ../lib/hammer_cli_foreman/subnet.rb:13
2157
2183
  msgid "Mask"
@@ -2181,6 +2207,10 @@ msgstr "TFTP"
2181
2207
  msgid "DHCP"
2182
2208
  msgstr "DHCP"
2183
2209
 
2210
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2211
+ msgid "IPAM"
2212
+ msgstr ""
2213
+
2184
2214
  #: ../lib/hammer_cli_foreman/subnet.rb:30
2185
2215
  msgid "VLAN ID"
2186
2216
  msgstr "VLAN ID"
@@ -2294,14 +2324,12 @@ msgid "Last login"
2294
2324
  msgstr "最後登錄"
2295
2325
 
2296
2326
  #: ../lib/hammer_cli_foreman/user.rb:33
2297
- #, fuzzy
2298
2327
  msgid "Default organization"
2299
- msgstr "操作組織。"
2328
+ msgstr ""
2300
2329
 
2301
2330
  #: ../lib/hammer_cli_foreman/user.rb:34
2302
- #, fuzzy
2303
2331
  msgid "Default location"
2304
- msgstr "操作位置。"
2332
+ msgstr ""
2305
2333
 
2306
2334
  #: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
2307
2335
  msgid "default"
@@ -2355,62 +2383,6 @@ msgstr "已刪除使用者群組 [%<name>s]"
2355
2383
  msgid "Could not delete the user group"
2356
2384
  msgstr "無法刪除使用者群組"
2357
2385
 
2358
- #: lib/hammer_cli_foreman/host.rb:171
2359
- #~ msgid "Disk"
2360
- #~ msgstr "磁碟"
2361
-
2362
- #: lib/hammer_cli_foreman/host.rb:189
2363
- #~ msgid "Puppet Proxy Id"
2364
- #~ msgstr "Puppet 協定 ID"
2365
-
2366
- #: lib/hammer_cli_foreman/host.rb:198
2367
- #~ msgid "BMC Network Interfaces"
2368
- #~ msgstr "BMC 網路介面卡"
2369
-
2370
- #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
2371
- #~ msgid "Domain Id"
2372
- #~ msgstr "網域 ID"
2373
-
2374
- #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
2375
- #~ msgid "Domain Name"
2376
- #~ msgstr "網域名稱"
2377
-
2378
- #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
2379
- #~ msgid "Subnet Id"
2380
- #~ msgstr "子網路 ID"
2381
-
2382
- #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
2383
- #~ msgid "Subnet Name"
2384
- #~ msgstr "子網路名稱"
2385
-
2386
- #: lib/hammer_cli_foreman/host.rb:207
2387
- #~ msgid "BMC Username"
2388
- #~ msgstr "BMC 使用者名稱"
2389
-
2390
- #: lib/hammer_cli_foreman/host.rb:208
2391
- #~ msgid "BMC Password"
2392
- #~ msgstr "BMC 密碼"
2393
-
2394
- #: lib/hammer_cli_foreman/host.rb:211
2395
- #~ msgid "Managed Network Interfaces"
2396
- #~ msgstr "已管理的網路介面卡"
2397
-
2398
- #: lib/hammer_cli_foreman/commands.rb:288
2399
- #~ msgid "List next page? (%s): "
2400
- #~ msgstr "列出下一頁?(%s):"
2401
-
2402
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
2403
- #~ msgid "Count"
2404
- #~ msgstr "計數"
2405
-
2406
- #: lib/hammer_cli_foreman/user.rb:47
2407
- #~ msgid "User created"
2408
- #~ msgstr "已建立使用者"
2409
-
2410
- #: lib/hammer_cli_foreman/user.rb:55
2411
- #~ msgid "User updated"
2412
- #~ msgstr "已更新使用者"
2413
-
2414
- #: lib/hammer_cli_foreman/user.rb:63
2415
- #~ msgid "User deleted"
2416
- #~ msgstr "已刪除使用者"
2386
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:201
2387
+ #~ msgid "%s found more than once"
2388
+ #~ msgstr "找到 %s 超過一次"