hammer_cli_foreman 0.1.4 → 0.2.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 (85) hide show
  1. checksums.yaml +4 -4
  2. data/config/foreman.yml +16 -0
  3. data/doc/host_create.md +102 -54
  4. data/doc/release_notes.md +20 -0
  5. data/lib/hammer_cli_foreman.rb +8 -0
  6. data/lib/hammer_cli_foreman/commands.rb +33 -9
  7. data/lib/hammer_cli_foreman/compute_resource.rb +13 -2
  8. data/lib/hammer_cli_foreman/domain.rb +24 -1
  9. data/lib/hammer_cli_foreman/environment.rb +1 -2
  10. data/lib/hammer_cli_foreman/host.rb +131 -73
  11. data/lib/hammer_cli_foreman/hostgroup.rb +18 -8
  12. data/lib/hammer_cli_foreman/i18n.rb +2 -6
  13. data/lib/hammer_cli_foreman/id_resolver.rb +41 -6
  14. data/lib/hammer_cli_foreman/interface.rb +165 -0
  15. data/lib/hammer_cli_foreman/output/fields.rb +7 -0
  16. data/lib/hammer_cli_foreman/output/formatters.rb +3 -5
  17. data/lib/hammer_cli_foreman/puppet_class.rb +16 -2
  18. data/lib/hammer_cli_foreman/settings.rb +37 -0
  19. data/lib/hammer_cli_foreman/smart_class_parameter.rb +75 -11
  20. data/lib/hammer_cli_foreman/smart_variable.rb +146 -0
  21. data/lib/hammer_cli_foreman/user.rb +9 -3
  22. data/lib/hammer_cli_foreman/version.rb +1 -1
  23. data/locale/Makefile +9 -17
  24. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/de/hammer-cli-foreman.edit.po +2403 -0
  26. data/locale/de/hammer-cli-foreman.po +302 -355
  27. data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
  28. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  29. data/locale/en/hammer-cli-foreman.edit.po +2260 -0
  30. data/locale/en/hammer-cli-foreman.po +946 -823
  31. data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
  32. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  33. data/locale/en_GB/hammer-cli-foreman.edit.po +2267 -0
  34. data/locale/en_GB/hammer-cli-foreman.po +297 -351
  35. data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
  36. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  37. data/locale/es/hammer-cli-foreman.edit.po +2427 -0
  38. data/locale/es/hammer-cli-foreman.po +301 -354
  39. data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
  40. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  41. data/locale/fr/hammer-cli-foreman.edit.po +2427 -0
  42. data/locale/fr/hammer-cli-foreman.po +299 -353
  43. data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
  44. data/locale/hammer-cli-foreman.pot +1413 -1112
  45. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  46. data/locale/it/hammer-cli-foreman.edit.po +2402 -0
  47. data/locale/it/hammer-cli-foreman.po +299 -353
  48. data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
  49. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/ja/hammer-cli-foreman.edit.po +2401 -0
  51. data/locale/ja/hammer-cli-foreman.po +338 -391
  52. data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
  53. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  54. data/locale/ko/hammer-cli-foreman.edit.po +2401 -0
  55. data/locale/ko/hammer-cli-foreman.po +299 -353
  56. data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
  57. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  58. data/locale/pt_BR/hammer-cli-foreman.edit.po +2417 -0
  59. data/locale/pt_BR/hammer-cli-foreman.po +312 -365
  60. data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
  61. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  62. data/locale/ru/hammer-cli-foreman.edit.po +2401 -0
  63. data/locale/ru/hammer-cli-foreman.po +300 -354
  64. data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
  65. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  66. data/locale/zh_CN/hammer-cli-foreman.edit.po +2400 -0
  67. data/locale/zh_CN/hammer-cli-foreman.po +299 -353
  68. data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
  69. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  70. data/locale/zh_TW/hammer-cli-foreman.edit.po +2400 -0
  71. data/locale/zh_TW/hammer-cli-foreman.po +299 -353
  72. data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
  73. data/test/unit/apipie_resource_mock.rb +7 -0
  74. data/test/unit/commands_test.rb +42 -0
  75. data/test/unit/data/1.7/foreman_api.json +1 -0
  76. data/test/unit/dependency_resolver_test.rb +4 -2
  77. data/test/unit/environment_test.rb +2 -2
  78. data/test/unit/host_test.rb +50 -27
  79. data/test/unit/hostgroup_test.rb +19 -3
  80. data/test/unit/media_test.rb +2 -2
  81. data/test/unit/puppet_class_test.rb +17 -2
  82. data/test/unit/smart_class_parameter_test.rb +26 -2
  83. data/test/unit/smart_variable_test.rb +134 -0
  84. data/test/unit/test_helper.rb +1 -1
  85. metadata +36 -4
@@ -6,10 +6,10 @@
6
6
  # Dominic Cleal <dcleal@redhat.com>, 2014
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: hammer-cli-foreman 0.1.4\n"
9
+ "Project-Id-Version: hammer-cli-foreman 0.2.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2014-09-19 13:34+0200\n"
12
- "PO-Revision-Date: 2014-10-11 10:31+0000\n"
11
+ "POT-Creation-Date: 2014-12-11 13:21+0100\n"
12
+ "PO-Revision-Date: 2015-03-22 03:37+0000\n"
13
13
  "Last-Translator: Lukáš Zapletal\n"
14
14
  "Language-Team: Korean (http://www.transifex.com/projects/p/foreman/language/ko/)\n"
15
15
  "MIME-Version: 1.0\n"
@@ -23,13 +23,10 @@ msgstr ""
23
23
  #: lib/hammer_cli_foreman/organization.rb:13
24
24
  #: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
25
25
  #: lib/hammer_cli_foreman/role.rb:11 lib/hammer_cli_foreman/media.rb:9
26
- #: lib/hammer_cli_foreman/override_value.rb:28
27
26
  #: lib/hammer_cli_foreman/compute_resource.rb:11
28
- #: lib/hammer_cli_foreman/smart_variables.rb:7
29
- #: lib/hammer_cli_foreman/smart_variables.rb:65
30
- #: lib/hammer_cli_foreman/hostgroup.rb:39
31
- #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:124
32
- #: lib/hammer_cli_foreman/host.rb:195 lib/hammer_cli_foreman/host.rb:208
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
33
30
  #: lib/hammer_cli_foreman/operating_system.rb:10
34
31
  #: lib/hammer_cli_foreman/smart_proxy.rb:11
35
32
  #: lib/hammer_cli_foreman/environment.rb:14
@@ -51,7 +48,7 @@ msgstr "ID "
51
48
  msgid "Host"
52
49
  msgstr "호스트 "
53
50
 
54
- #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:177
51
+ #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:181
55
52
  msgid "Last report"
56
53
  msgstr "마지막 보고 "
57
54
 
@@ -161,12 +158,11 @@ msgstr ""
161
158
  #: lib/hammer_cli_foreman/common_parameter.rb:12
162
159
  #: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
163
160
  #: lib/hammer_cli_foreman/role.rb:12 lib/hammer_cli_foreman/media.rb:10
164
- #: lib/hammer_cli_foreman/override_value.rb:29
165
161
  #: lib/hammer_cli_foreman/compute_resource.rb:12
166
- #: lib/hammer_cli_foreman/hostgroup.rb:40
162
+ #: lib/hammer_cli_foreman/hostgroup.rb:47
167
163
  #: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:74
168
- #: lib/hammer_cli_foreman/host.rb:125 lib/hammer_cli_foreman/host.rb:196
169
- #: lib/hammer_cli_foreman/host.rb:209
164
+ #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:200
165
+ #: lib/hammer_cli_foreman/host.rb:213
170
166
  #: lib/hammer_cli_foreman/operating_system.rb:22
171
167
  #: lib/hammer_cli_foreman/smart_proxy.rb:12
172
168
  #: lib/hammer_cli_foreman/environment.rb:15
@@ -244,10 +240,7 @@ msgid "Could not delete the organization"
244
240
  msgstr "조직을 삭제할 수 없습니다 "
245
241
 
246
242
  #: lib/hammer_cli_foreman/common_parameter.rb:13
247
- #: lib/hammer_cli_foreman/fact.rb:14
248
- #: lib/hammer_cli_foreman/smart_variables.rb:64
249
- #: lib/hammer_cli_foreman/smart_variables.rb:67
250
- #: lib/hammer_cli_foreman/host.rb:282
243
+ #: lib/hammer_cli_foreman/fact.rb:14 lib/hammer_cli_foreman/host.rb:286
251
244
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:65
252
245
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
253
246
  msgid "Value"
@@ -400,41 +393,41 @@ msgstr "하드웨어 모델을 업데이트할 수 없습니다 "
400
393
  msgid "User role id"
401
394
  msgstr "사용자 역할 ID"
402
395
 
403
- #: lib/hammer_cli_foreman/role.rb:36 lib/hammer_cli_foreman/filter.rb:18
396
+ #: lib/hammer_cli_foreman/role.rb:33 lib/hammer_cli_foreman/filter.rb:18
404
397
  #: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
405
398
  msgid "(Miscellaneous)"
406
399
  msgstr "(기타)"
407
400
 
408
- #: lib/hammer_cli_foreman/role.rb:37 lib/hammer_cli_foreman/filter.rb:19
401
+ #: lib/hammer_cli_foreman/role.rb:34 lib/hammer_cli_foreman/filter.rb:19
409
402
  #: lib/hammer_cli_foreman/filter.rb:35
410
403
  msgid "none"
411
404
  msgstr "없음 "
412
405
 
413
- #: lib/hammer_cli_foreman/role.rb:50
406
+ #: lib/hammer_cli_foreman/role.rb:47
414
407
  msgid "User role [%<name>s] created"
415
408
  msgstr "사용자 역할 [%<name>s]이(가) 생성되었습니다 "
416
409
 
417
- #: lib/hammer_cli_foreman/role.rb:51
410
+ #: lib/hammer_cli_foreman/role.rb:48
418
411
  msgid "Could not create the user role"
419
412
  msgstr "사용자 역할을 생성할 수 없습니다 "
420
413
 
421
- #: lib/hammer_cli_foreman/role.rb:58
414
+ #: lib/hammer_cli_foreman/role.rb:55
422
415
  msgid "User role [%<name>s] updated"
423
416
  msgstr "사용자 역할 [%<name>s]이(가) 업데이트되었습니다 "
424
417
 
425
- #: lib/hammer_cli_foreman/role.rb:59
418
+ #: lib/hammer_cli_foreman/role.rb:56
426
419
  msgid "Could not update the user role"
427
420
  msgstr "사용자 역할을 업데이트할 수 없습니다 "
428
421
 
429
- #: lib/hammer_cli_foreman/role.rb:66
422
+ #: lib/hammer_cli_foreman/role.rb:63
430
423
  msgid "User role [%<name>s] deleted"
431
424
  msgstr "사용자 역할 [%<name>s]이(가) 삭제되었습니다 "
432
425
 
433
- #: lib/hammer_cli_foreman/role.rb:67
426
+ #: lib/hammer_cli_foreman/role.rb:64
434
427
  msgid "Could not delete the user roles"
435
428
  msgstr "사용자 역할을 삭제할 수 없습니다 "
436
429
 
437
- #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:281
430
+ #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:285
438
431
  msgid "Fact"
439
432
  msgstr "정보 "
440
433
 
@@ -471,64 +464,6 @@ msgstr "설치 미디어가 삭제되었습니다 "
471
464
  msgid "Could not delete the installation media"
472
465
  msgstr "설치 미디어를 삭제할 수 없습니다 "
473
466
 
474
- #: lib/hammer_cli_foreman/override_value.rb:7
475
- msgid "View and manage override values"
476
- msgstr ""
477
-
478
- #: lib/hammer_cli_foreman/override_value.rb:30
479
- #: lib/hammer_cli_foreman/hostgroup.rb:42 lib/hammer_cli_foreman/host.rb:126
480
- #: lib/hammer_cli_foreman/image.rb:31
481
- msgid "Operating System"
482
- msgstr "운영체제"
483
-
484
- #: lib/hammer_cli_foreman/override_value.rb:31
485
- #: lib/hammer_cli_foreman/image.rb:32
486
- msgid "Username"
487
- msgstr "사용자 이름 "
488
-
489
- #: lib/hammer_cli_foreman/override_value.rb:32
490
- #: lib/hammer_cli_foreman/compute_resource.rb:23
491
- #: lib/hammer_cli_foreman/compute_resource.rb:29
492
- #: lib/hammer_cli_foreman/host.rb:157 lib/hammer_cli_foreman/image.rb:33
493
- #: lib/hammer_cli_foreman/image.rb:71
494
- msgid "UUID"
495
- msgstr "UUID"
496
-
497
- #: lib/hammer_cli_foreman/override_value.rb:44
498
- #: lib/hammer_cli_foreman/hostgroup.rb:58 lib/hammer_cli_foreman/host.rb:188
499
- #: lib/hammer_cli_foreman/image.rb:45
500
- msgid "Architecture"
501
- msgstr "아키텍처 "
502
-
503
- #: lib/hammer_cli_foreman/override_value.rb:45
504
- #: lib/hammer_cli_foreman/image.rb:46
505
- msgid "IAM role"
506
- msgstr "IAM 역할 "
507
-
508
- #: lib/hammer_cli_foreman/override_value.rb:55
509
- msgid "OverrideValue created"
510
- msgstr ""
511
-
512
- #: lib/hammer_cli_foreman/override_value.rb:56
513
- msgid "Could not create the override_value"
514
- msgstr ""
515
-
516
- #: lib/hammer_cli_foreman/override_value.rb:64
517
- msgid "OverrideValue updated"
518
- msgstr ""
519
-
520
- #: lib/hammer_cli_foreman/override_value.rb:65
521
- msgid "Could not update the override_value"
522
- msgstr ""
523
-
524
- #: lib/hammer_cli_foreman/override_value.rb:73
525
- msgid "OverrideValue deleted"
526
- msgstr ""
527
-
528
- #: lib/hammer_cli_foreman/override_value.rb:74
529
- msgid "Could not delete the override_value"
530
- msgstr ""
531
-
532
467
  #: lib/hammer_cli_foreman/exception_handler.rb:41
533
468
  msgid "Forbidden - server refused to process the request"
534
469
  msgstr "거부 - 서버가 요청 처리를 거부했습니다 "
@@ -551,6 +486,13 @@ msgstr ""
551
486
  msgid "Provider"
552
487
  msgstr "공급자 "
553
488
 
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
493
+ msgid "UUID"
494
+ msgstr "UUID"
495
+
554
496
  #: lib/hammer_cli_foreman/compute_resource.rb:26
555
497
  #: lib/hammer_cli_foreman/compute_resource.rb:36
556
498
  msgid "Region"
@@ -569,7 +511,6 @@ msgid "Url"
569
511
  msgstr "Url"
570
512
 
571
513
  #: lib/hammer_cli_foreman/compute_resource.rb:44
572
- #: lib/hammer_cli_foreman/smart_variables.rb:52
573
514
  #: lib/hammer_cli_foreman/domain.rb:21
574
515
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
575
516
  msgid "Description"
@@ -787,109 +728,6 @@ msgstr "사용자 역할이 삭제되었습니다 "
787
728
  msgid "Could not remove the user role"
788
729
  msgstr "사용자 역할을 삭제할 수 없습니다 "
789
730
 
790
- #: lib/hammer_cli_foreman/smart_variables.rb:9
791
- #: lib/hammer_cli_foreman/puppet_class.rb:34
792
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
793
- msgid "Parameter"
794
- msgstr "매개 변수 "
795
-
796
- #: lib/hammer_cli_foreman/smart_variables.rb:10
797
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
798
- msgid "Default Value"
799
- msgstr "기본값 "
800
-
801
- #: lib/hammer_cli_foreman/smart_variables.rb:11
802
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
803
- msgid "Override"
804
- msgstr "덮어쓰기 "
805
-
806
- #: lib/hammer_cli_foreman/smart_variables.rb:32
807
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
808
- msgid "Puppet class"
809
- msgstr "Puppet 클래스 "
810
-
811
- #: lib/hammer_cli_foreman/smart_variables.rb:33
812
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
813
- msgid "Class Id"
814
- msgstr "클래스 Id"
815
-
816
- #: lib/hammer_cli_foreman/smart_variables.rb:53
817
- #: lib/hammer_cli_foreman/smart_variables.rb:57
818
- #: lib/hammer_cli_foreman/template.rb:27
819
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
820
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
821
- msgid "Type"
822
- msgstr "유형"
823
-
824
- #: lib/hammer_cli_foreman/smart_variables.rb:54
825
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
826
- msgid "Required"
827
- msgstr "필수 "
828
-
829
- #: lib/hammer_cli_foreman/smart_variables.rb:56
830
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
831
- msgid "Validator"
832
- msgstr "유효성 검사기 "
833
-
834
- #: lib/hammer_cli_foreman/smart_variables.rb:58
835
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
836
- msgid "Rule"
837
- msgstr "규칙 "
838
-
839
- #: lib/hammer_cli_foreman/smart_variables.rb:60
840
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
841
- msgid "Override values"
842
- msgstr "값 덮어쓰기 "
843
-
844
- #: lib/hammer_cli_foreman/smart_variables.rb:61
845
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
846
- msgid "Order"
847
- msgstr "순서"
848
-
849
- #: lib/hammer_cli_foreman/smart_variables.rb:62
850
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
851
- msgid "Count"
852
- msgstr "수 "
853
-
854
- #: lib/hammer_cli_foreman/smart_variables.rb:66
855
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
856
- msgid "Match"
857
- msgstr "일치 "
858
-
859
- #: lib/hammer_cli_foreman/smart_variables.rb:85
860
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
861
- msgid "Parameter updated"
862
- msgstr "매개 변수가 업데이트되었습니다 "
863
-
864
- #: lib/hammer_cli_foreman/smart_variables.rb:86
865
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
866
- msgid "Could not update the parameter"
867
- msgstr "매개 변수를 업데이트할 수 없습니다 "
868
-
869
- #: lib/hammer_cli_foreman/smart_variables.rb:90
870
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
871
- msgid "Override this parameter."
872
- msgstr "매개 변수를 덮어쓰기합니다."
873
-
874
- #: lib/hammer_cli_foreman/smart_variables.rb:92
875
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
876
- msgid "This parameter is required."
877
- msgstr "매개 변수가 필요합니다. "
878
-
879
- #: lib/hammer_cli_foreman/smart_variables.rb:94
880
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
881
- msgid "Type of the parameter."
882
- msgstr "매개 변수 유형 "
883
-
884
- #: lib/hammer_cli_foreman/smart_variables.rb:97
885
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
886
- msgid "Type of the validator."
887
- msgstr "유효성 검사 유형 "
888
-
889
- #: lib/hammer_cli_foreman/smart_variables.rb:109
890
- msgid "Manipulate smart variables."
891
- msgstr ""
892
-
893
731
  #: lib/hammer_cli_foreman/hostgroup.rb:9
894
732
  msgid "List of puppetclass ids"
895
733
  msgstr ""
@@ -902,98 +740,119 @@ msgstr ""
902
740
  msgid "Name of puppet proxy"
903
741
  msgstr ""
904
742
 
905
- #: lib/hammer_cli_foreman/hostgroup.rb:41
906
- msgid "Label"
907
- msgstr "레이블 "
743
+ #: lib/hammer_cli_foreman/hostgroup.rb:13
744
+ msgid "Name of parent hostgroup"
745
+ msgstr ""
746
+
747
+ #: lib/hammer_cli_foreman/hostgroup.rb:48
748
+ #: lib/hammer_cli_foreman/operating_system.rb:11
749
+ msgid "Title"
750
+ msgstr ""
751
+
752
+ #: lib/hammer_cli_foreman/hostgroup.rb:49 lib/hammer_cli_foreman/host.rb:130
753
+ #: lib/hammer_cli_foreman/image.rb:31
754
+ msgid "Operating System"
755
+ msgstr "운영체제"
908
756
 
909
- #: lib/hammer_cli_foreman/hostgroup.rb:43 lib/hammer_cli_foreman/host.rb:160
757
+ #: lib/hammer_cli_foreman/hostgroup.rb:50 lib/hammer_cli_foreman/host.rb:164
910
758
  msgid "Environment"
911
759
  msgstr "환경 "
912
760
 
913
- #: lib/hammer_cli_foreman/hostgroup.rb:44 lib/hammer_cli_foreman/host.rb:181
761
+ #: lib/hammer_cli_foreman/hostgroup.rb:51 lib/hammer_cli_foreman/host.rb:185
914
762
  msgid "Model"
915
763
  msgstr "모델 "
916
764
 
917
- #: lib/hammer_cli_foreman/hostgroup.rb:45
918
- msgid "Ancestry"
919
- msgstr "상위 "
920
-
921
- #: lib/hammer_cli_foreman/hostgroup.rb:55 lib/hammer_cli_foreman/host.rb:183
765
+ #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:187
922
766
  msgid "Subnet"
923
767
  msgstr "서브넷"
924
768
 
925
- #: lib/hammer_cli_foreman/hostgroup.rb:57 lib/hammer_cli_foreman/host.rb:184
769
+ #: lib/hammer_cli_foreman/hostgroup.rb:63 lib/hammer_cli_foreman/host.rb:188
926
770
  msgid "Domain"
927
771
  msgstr "도메인 "
928
772
 
929
- #: lib/hammer_cli_foreman/hostgroup.rb:59 lib/hammer_cli_foreman/host.rb:187
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 "아키텍처 "
777
+
778
+ #: lib/hammer_cli_foreman/hostgroup.rb:65 lib/hammer_cli_foreman/host.rb:191
930
779
  msgid "Partition Table"
931
780
  msgstr "파티션 테이블 "
932
781
 
933
- #: lib/hammer_cli_foreman/hostgroup.rb:60 lib/hammer_cli_foreman/host.rb:180
782
+ #: lib/hammer_cli_foreman/hostgroup.rb:66 lib/hammer_cli_foreman/host.rb:184
934
783
  msgid "Medium"
935
784
  msgstr "미디어 "
936
785
 
937
- #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:179
786
+ #: lib/hammer_cli_foreman/hostgroup.rb:67 lib/hammer_cli_foreman/host.rb:183
938
787
  msgid "Puppet CA Proxy Id"
939
788
  msgstr "Puppet CA 프록시 Id"
940
789
 
941
- #: lib/hammer_cli_foreman/hostgroup.rb:62
790
+ #: lib/hammer_cli_foreman/hostgroup.rb:68
942
791
  msgid "Puppet Master Proxy Id"
943
792
  msgstr "Puppet 마스터 프록시 Id"
944
793
 
945
- #: lib/hammer_cli_foreman/hostgroup.rb:63
794
+ #: lib/hammer_cli_foreman/hostgroup.rb:69
946
795
  msgid "ComputeProfile"
947
796
  msgstr "컴퓨터 프로파일 "
948
797
 
949
- #: lib/hammer_cli_foreman/hostgroup.rb:76
798
+ #: lib/hammer_cli_foreman/hostgroup.rb:73
799
+ msgid "Parent Id"
800
+ msgstr ""
801
+
802
+ #: lib/hammer_cli_foreman/hostgroup.rb:83
950
803
  msgid "Hostgroup created"
951
804
  msgstr "호스트 그룹이 생성되었습니다 "
952
805
 
953
- #: lib/hammer_cli_foreman/hostgroup.rb:77
806
+ #: lib/hammer_cli_foreman/hostgroup.rb:84
954
807
  msgid "Could not create the hostgroup"
955
808
  msgstr "호스트 그룹을 생성할 수 없습니다 "
956
809
 
957
- #: lib/hammer_cli_foreman/hostgroup.rb:86
810
+ #: lib/hammer_cli_foreman/hostgroup.rb:93
958
811
  msgid "Hostgroup updated"
959
812
  msgstr "호스트 그룹이 업데이트되었습니다 "
960
813
 
961
- #: lib/hammer_cli_foreman/hostgroup.rb:87
814
+ #: lib/hammer_cli_foreman/hostgroup.rb:94
962
815
  msgid "Could not update the hostgroup"
963
816
  msgstr "호스트 그룹을 업데이트할 수 없습니다 "
964
817
 
965
- #: lib/hammer_cli_foreman/hostgroup.rb:94
818
+ #: lib/hammer_cli_foreman/hostgroup.rb:101
966
819
  msgid "Hostgroup deleted"
967
820
  msgstr "호스트 그룹이 삭제되었습니다 "
968
821
 
969
- #: lib/hammer_cli_foreman/hostgroup.rb:95
822
+ #: lib/hammer_cli_foreman/hostgroup.rb:102
970
823
  msgid "Could not delete the hostgroup"
971
824
  msgstr "호스트 그룹을 삭제할 수 없습니다 "
972
825
 
973
- #: lib/hammer_cli_foreman/hostgroup.rb:122
826
+ #: lib/hammer_cli_foreman/hostgroup.rb:129
974
827
  msgid "Create or update parameter for a hostgroup."
975
828
  msgstr "호스트 그룹의 매개 변수가 생성 또는 업데이트합니다."
976
829
 
977
- #: lib/hammer_cli_foreman/hostgroup.rb:124
830
+ #: lib/hammer_cli_foreman/hostgroup.rb:131
978
831
  msgid "Hostgroup parameter updated"
979
832
  msgstr "호스트 그룹 매개 변수가 업데이트되었습니다 "
980
833
 
981
- #: lib/hammer_cli_foreman/hostgroup.rb:125
834
+ #: lib/hammer_cli_foreman/hostgroup.rb:132
982
835
  msgid "New hostgroup parameter created"
983
836
  msgstr "새 호스트 그룹 매개 변수가 생성되었습니다 "
984
837
 
985
- #: lib/hammer_cli_foreman/hostgroup.rb:126
838
+ #: lib/hammer_cli_foreman/hostgroup.rb:133
986
839
  msgid "Could not set hostgroup parameter"
987
840
  msgstr "호스트 그룹 매개 변수를 설정할 수 없습니다 "
988
841
 
989
- #: lib/hammer_cli_foreman/hostgroup.rb:133
842
+ #: lib/hammer_cli_foreman/hostgroup.rb:140
990
843
  msgid "Delete parameter for a hostgroup."
991
844
  msgstr "호스트 그룹의 매개 변수를 삭제합니다."
992
845
 
993
- #: lib/hammer_cli_foreman/hostgroup.rb:135
846
+ #: lib/hammer_cli_foreman/hostgroup.rb:142
994
847
  msgid "Hostgroup parameter deleted"
995
848
  msgstr "호스트 그룹 매개 변수가 삭제되었습니다 "
996
849
 
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
853
+ msgid "Type"
854
+ msgstr "유형"
855
+
997
856
  #: lib/hammer_cli_foreman/template.rb:71
998
857
  msgid "List available config template kinds."
999
858
  msgstr "사용 가능한 설정 템플릿 종류를 나열합니다. "
@@ -1036,245 +895,267 @@ msgstr "설정 템플릿이 삭제되었습니다 "
1036
895
  msgid "Could not delete the config template"
1037
896
  msgstr "설정 템플릿을 삭제할 수 없습니다 "
1038
897
 
1039
- #: lib/hammer_cli_foreman/host.rb:36
898
+ #: lib/hammer_cli_foreman/host.rb:12
899
+ msgid "Login of the owner"
900
+ msgstr ""
901
+
902
+ #: lib/hammer_cli_foreman/host.rb:14
903
+ msgid "ID of the owner"
904
+ msgstr ""
905
+
906
+ #: lib/hammer_cli_foreman/host.rb:39
1040
907
  msgid "Host parameters."
1041
908
  msgstr "호스트 매개 변수 "
1042
909
 
1043
- #: lib/hammer_cli_foreman/host.rb:38
910
+ #: lib/hammer_cli_foreman/host.rb:41
1044
911
  msgid "Compute resource attributes."
1045
912
  msgstr "컴퓨터 리소스 속성 "
1046
913
 
1047
- #: lib/hammer_cli_foreman/host.rb:40
914
+ #: lib/hammer_cli_foreman/host.rb:43
1048
915
  msgid "Volume parameters"
1049
916
  msgstr "볼륨 매개 변수 "
1050
917
 
1051
- #: lib/hammer_cli_foreman/host.rb:42
918
+ #: lib/hammer_cli_foreman/host.rb:45
1052
919
  msgid "Interface parameters."
1053
920
  msgstr "인터페이스 매개 변수 "
1054
921
 
1055
- #: lib/hammer_cli_foreman/host.rb:127
922
+ #: lib/hammer_cli_foreman/host.rb:131
1056
923
  msgid "Host Group"
1057
924
  msgstr "호스트 그룹 "
1058
925
 
1059
- #: lib/hammer_cli_foreman/host.rb:128 lib/hammer_cli_foreman/host.rb:197
1060
- #: lib/hammer_cli_foreman/host.rb:210
926
+ #: lib/hammer_cli_foreman/host.rb:132 lib/hammer_cli_foreman/host.rb:201
927
+ #: lib/hammer_cli_foreman/host.rb:214
1061
928
  msgid "IP"
1062
929
  msgstr "IP "
1063
930
 
1064
- #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:198
1065
- #: lib/hammer_cli_foreman/host.rb:211
931
+ #: lib/hammer_cli_foreman/host.rb:133 lib/hammer_cli_foreman/host.rb:202
932
+ #: lib/hammer_cli_foreman/host.rb:215
1066
933
  msgid "MAC"
1067
934
  msgstr "MAC"
1068
935
 
1069
- #: lib/hammer_cli_foreman/host.rb:158
936
+ #: lib/hammer_cli_foreman/host.rb:162
1070
937
  msgid "Cert name"
1071
938
  msgstr "인증서 이름 "
1072
939
 
1073
- #: lib/hammer_cli_foreman/host.rb:162
940
+ #: lib/hammer_cli_foreman/host.rb:166
1074
941
  msgid "Managed"
1075
942
  msgstr "관리됨 "
1076
943
 
1077
- #: lib/hammer_cli_foreman/host.rb:163
944
+ #: lib/hammer_cli_foreman/host.rb:167
1078
945
  msgid "Enabled"
1079
946
  msgstr "활성화됨 "
1080
947
 
1081
- #: lib/hammer_cli_foreman/host.rb:164
948
+ #: lib/hammer_cli_foreman/host.rb:168
1082
949
  msgid "Build"
1083
950
  msgstr "빌드 "
1084
951
 
1085
- #: lib/hammer_cli_foreman/host.rb:166
952
+ #: lib/hammer_cli_foreman/host.rb:170
1086
953
  msgid "Use image"
1087
954
  msgstr "이미지 사용 "
1088
955
 
1089
- #: lib/hammer_cli_foreman/host.rb:167
956
+ #: lib/hammer_cli_foreman/host.rb:171
1090
957
  msgid "Disk"
1091
958
  msgstr "디스크"
1092
959
 
1093
- #: lib/hammer_cli_foreman/host.rb:168
960
+ #: lib/hammer_cli_foreman/host.rb:172
1094
961
  msgid "Image file"
1095
962
  msgstr "이미지 파일 "
1096
963
 
1097
- #: lib/hammer_cli_foreman/host.rb:170
964
+ #: lib/hammer_cli_foreman/host.rb:174
1098
965
  msgid "SP Name"
1099
966
  msgstr "SP 이름 "
1100
967
 
1101
- #: lib/hammer_cli_foreman/host.rb:171
968
+ #: lib/hammer_cli_foreman/host.rb:175
1102
969
  msgid "SP IP"
1103
970
  msgstr "SP IP"
1104
971
 
1105
- #: lib/hammer_cli_foreman/host.rb:172
972
+ #: lib/hammer_cli_foreman/host.rb:176
1106
973
  msgid "SP MAC"
1107
974
  msgstr "SP MAC"
1108
975
 
1109
- #: lib/hammer_cli_foreman/host.rb:174
976
+ #: lib/hammer_cli_foreman/host.rb:178
1110
977
  msgid "SP Subnet"
1111
978
  msgstr "SP 서브넷 "
1112
979
 
1113
- #: lib/hammer_cli_foreman/host.rb:176
980
+ #: lib/hammer_cli_foreman/host.rb:180
1114
981
  msgid "Installed at"
1115
982
  msgstr "설치됨 "
1116
983
 
1117
- #: lib/hammer_cli_foreman/host.rb:182
984
+ #: lib/hammer_cli_foreman/host.rb:186
1118
985
  msgid "Owner Id"
1119
986
  msgstr "소유자 Id"
1120
987
 
1121
- #: lib/hammer_cli_foreman/host.rb:185
988
+ #: lib/hammer_cli_foreman/host.rb:189
1122
989
  msgid "Puppet Proxy Id"
1123
990
  msgstr "Puppet 프록시 Id"
1124
991
 
1125
- #: lib/hammer_cli_foreman/host.rb:186
992
+ #: lib/hammer_cli_foreman/host.rb:190
1126
993
  msgid "Owner Type"
1127
994
  msgstr "소유자 유형 "
1128
995
 
1129
- #: lib/hammer_cli_foreman/host.rb:189
996
+ #: lib/hammer_cli_foreman/host.rb:193
1130
997
  msgid "Image"
1131
998
  msgstr "이미지 "
1132
999
 
1133
- #: lib/hammer_cli_foreman/host.rb:190
1000
+ #: lib/hammer_cli_foreman/host.rb:194
1134
1001
  msgid "Compute Resource"
1135
1002
  msgstr "컴퓨터 리소스 "
1136
1003
 
1137
- #: lib/hammer_cli_foreman/host.rb:192
1004
+ #: lib/hammer_cli_foreman/host.rb:196
1138
1005
  msgid "Comment"
1139
1006
  msgstr "코멘트 "
1140
1007
 
1141
- #: lib/hammer_cli_foreman/host.rb:194
1008
+ #: lib/hammer_cli_foreman/host.rb:198
1142
1009
  msgid "BMC Network Interfaces"
1143
1010
  msgstr "BMC 네트워크 인터페이스 "
1144
1011
 
1145
- #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
1012
+ #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
1146
1013
  msgid "Domain Id"
1147
1014
  msgstr "도메인 ID "
1148
1015
 
1149
- #: lib/hammer_cli_foreman/host.rb:200 lib/hammer_cli_foreman/host.rb:213
1016
+ #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
1150
1017
  msgid "Domain Name"
1151
1018
  msgstr "도메인 이름 "
1152
1019
 
1153
- #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
1020
+ #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
1154
1021
  msgid "Subnet Id"
1155
1022
  msgstr "서브넷 ID"
1156
1023
 
1157
- #: lib/hammer_cli_foreman/host.rb:202 lib/hammer_cli_foreman/host.rb:215
1024
+ #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
1158
1025
  msgid "Subnet Name"
1159
1026
  msgstr "서브넷 이름 "
1160
1027
 
1161
- #: lib/hammer_cli_foreman/host.rb:203
1028
+ #: lib/hammer_cli_foreman/host.rb:207
1162
1029
  msgid "BMC Username"
1163
1030
  msgstr "BMC 사용자 이름 "
1164
1031
 
1165
- #: lib/hammer_cli_foreman/host.rb:204
1032
+ #: lib/hammer_cli_foreman/host.rb:208
1166
1033
  msgid "BMC Password"
1167
1034
  msgstr "BMC 암호 "
1168
1035
 
1169
- #: lib/hammer_cli_foreman/host.rb:207
1036
+ #: lib/hammer_cli_foreman/host.rb:211
1170
1037
  msgid "Managed Network Interfaces"
1171
1038
  msgstr "관리되는 네트워크 인터페이스 "
1172
1039
 
1173
- #: lib/hammer_cli_foreman/host.rb:231
1040
+ #: lib/hammer_cli_foreman/host.rb:235
1174
1041
  msgid "Status"
1175
1042
  msgstr "상태 "
1176
1043
 
1177
- #: lib/hammer_cli_foreman/host.rb:232
1044
+ #: lib/hammer_cli_foreman/host.rb:236
1178
1045
  msgid "Power"
1179
1046
  msgstr "전원"
1180
1047
 
1181
- #: lib/hammer_cli_foreman/host.rb:268
1048
+ #: lib/hammer_cli_foreman/host.rb:272
1182
1049
  msgid "Puppet run triggered"
1183
1050
  msgstr "Puppet run이 실행되었습니다 "
1184
1051
 
1185
- #: lib/hammer_cli_foreman/host.rb:319
1052
+ #: lib/hammer_cli_foreman/host.rb:323
1186
1053
  msgid "Host created"
1187
1054
  msgstr "호스트가 생성되었습니다 "
1188
1055
 
1189
- #: lib/hammer_cli_foreman/host.rb:320
1056
+ #: lib/hammer_cli_foreman/host.rb:324
1190
1057
  msgid "Could not create the host"
1191
1058
  msgstr "호스트를 생성할 수 없습니다 "
1192
1059
 
1193
- #: lib/hammer_cli_foreman/host.rb:341
1060
+ #: lib/hammer_cli_foreman/host.rb:345
1194
1061
  msgid "Host updated"
1195
1062
  msgstr "호스트가 업데이트되었습니다 "
1196
1063
 
1197
- #: lib/hammer_cli_foreman/host.rb:342
1064
+ #: lib/hammer_cli_foreman/host.rb:346
1198
1065
  msgid "Could not update the host"
1199
1066
  msgstr "호스트를 업데이트할 수 없습니다 "
1200
1067
 
1201
- #: lib/hammer_cli_foreman/host.rb:349
1068
+ #: lib/hammer_cli_foreman/host.rb:353
1202
1069
  msgid "Host deleted"
1203
1070
  msgstr "호스트가 삭제되었습니다 "
1204
1071
 
1205
- #: lib/hammer_cli_foreman/host.rb:350
1072
+ #: lib/hammer_cli_foreman/host.rb:354
1206
1073
  msgid "Could not delete the host"
1207
1074
  msgstr "호스트를 삭제할 수 없습니다 "
1208
1075
 
1209
- #: lib/hammer_cli_foreman/host.rb:357
1076
+ #: lib/hammer_cli_foreman/host.rb:361
1210
1077
  msgid "Create or update parameter for a host."
1211
1078
  msgstr "호스트의 매개 변수를 생성 또는 업데이트합니다. "
1212
1079
 
1213
- #: lib/hammer_cli_foreman/host.rb:359
1080
+ #: lib/hammer_cli_foreman/host.rb:363
1214
1081
  msgid "Host parameter updated"
1215
1082
  msgstr "호스트 매개 변수가 업데이트되었습니다 "
1216
1083
 
1217
- #: lib/hammer_cli_foreman/host.rb:360
1084
+ #: lib/hammer_cli_foreman/host.rb:364
1218
1085
  msgid "New host parameter created"
1219
1086
  msgstr "새 호스트 매개 변수가 생성되었습니다 "
1220
1087
 
1221
- #: lib/hammer_cli_foreman/host.rb:361
1088
+ #: lib/hammer_cli_foreman/host.rb:365
1222
1089
  msgid "Could not set host parameter"
1223
1090
  msgstr "호스트 매개 변수를 설정할 수 없습니다 "
1224
1091
 
1225
- #: lib/hammer_cli_foreman/host.rb:373
1092
+ #: lib/hammer_cli_foreman/host.rb:377
1226
1093
  msgid "Delete parameter for a host."
1227
1094
  msgstr "호스트의 매개 변수를 삭제합니다. "
1228
1095
 
1229
- #: lib/hammer_cli_foreman/host.rb:375
1096
+ #: lib/hammer_cli_foreman/host.rb:379
1230
1097
  msgid "Host parameter deleted"
1231
1098
  msgstr "호스트 매개 변수가 삭제되었습니다 "
1232
1099
 
1233
- #: lib/hammer_cli_foreman/host.rb:390
1100
+ #: lib/hammer_cli_foreman/host.rb:394
1234
1101
  msgid "Power a host on"
1235
1102
  msgstr "호스트 전원 켜기 "
1236
1103
 
1237
- #: lib/hammer_cli_foreman/host.rb:391
1104
+ #: lib/hammer_cli_foreman/host.rb:395
1238
1105
  msgid "The host is starting."
1239
1106
  msgstr "호스트가 시작되고 있습니다. "
1240
1107
 
1241
- #: lib/hammer_cli_foreman/host.rb:408
1108
+ #: lib/hammer_cli_foreman/host.rb:412
1242
1109
  msgid "Force turning off a host"
1243
1110
  msgstr "강제로 호스트 전원 끄기 "
1244
1111
 
1245
- #: lib/hammer_cli_foreman/host.rb:413
1112
+ #: lib/hammer_cli_foreman/host.rb:417
1246
1113
  msgid "Power a host off"
1247
1114
  msgstr "호스트 전원 끄기 "
1248
1115
 
1249
- #: lib/hammer_cli_foreman/host.rb:425
1116
+ #: lib/hammer_cli_foreman/host.rb:429
1250
1117
  msgid "Power off forced."
1251
1118
  msgstr "강제로 전원을 끕니다. "
1252
1119
 
1253
- #: lib/hammer_cli_foreman/host.rb:427
1120
+ #: lib/hammer_cli_foreman/host.rb:431
1254
1121
  msgid "Powering the host off."
1255
1122
  msgstr "호스트 전원을 끄고 있습니다. "
1256
1123
 
1257
- #: lib/hammer_cli_foreman/host.rb:444
1124
+ #: lib/hammer_cli_foreman/host.rb:448
1258
1125
  msgid "Reboot a host"
1259
1126
  msgstr "호스트 재부팅 "
1260
1127
 
1261
- #: lib/hammer_cli_foreman/host.rb:445
1128
+ #: lib/hammer_cli_foreman/host.rb:449
1262
1129
  msgid "Host reboot started."
1263
1130
  msgstr "호스트 재부팅을 시작했습니다. "
1264
1131
 
1265
- #: lib/hammer_cli_foreman/commands.rb:77
1132
+ #: lib/hammer_cli_foreman/commands.rb:83
1266
1133
  msgid "Received data of unknown format"
1267
1134
  msgstr "알 수 없는 형식의 데이터를 수신했습니다 "
1268
1135
 
1269
- #: lib/hammer_cli_foreman/commands.rb:244
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 ""
1141
+
1142
+ #: lib/hammer_cli_foreman/commands.rb:187
1143
+ msgid "Could not find %{resource}, please set option %{switches}."
1144
+ msgstr ""
1145
+
1146
+ #: lib/hammer_cli_foreman/commands.rb:189
1147
+ msgid "Could not find %{resource}, please set one of options %{switches}."
1148
+ msgstr ""
1149
+
1150
+ #: lib/hammer_cli_foreman/commands.rb:288
1270
1151
  msgid "List next page? (%s): "
1271
1152
  msgstr "다음 페이지 목록을 나열하시겠습니까? (%s): "
1272
1153
 
1273
- #: lib/hammer_cli_foreman/commands.rb:448
1154
+ #: lib/hammer_cli_foreman/commands.rb:492
1274
1155
  msgid "Associate a resource"
1275
1156
  msgstr "리소스 연결 "
1276
1157
 
1277
- #: lib/hammer_cli_foreman/commands.rb:470
1158
+ #: lib/hammer_cli_foreman/commands.rb:514
1278
1159
  msgid "Disassociate a resource"
1279
1160
  msgstr "리소스 연결 해제 "
1280
1161
 
@@ -1355,10 +1236,6 @@ msgstr ""
1355
1236
  msgid "The server does not support such operation."
1356
1237
  msgstr "서버가 이러한 동작을 지원하지 않습니다. "
1357
1238
 
1358
- #: lib/hammer_cli_foreman/operating_system.rb:11
1359
- msgid "Full name"
1360
- msgstr "전체 이름 "
1361
-
1362
1239
  #: lib/hammer_cli_foreman/operating_system.rb:12
1363
1240
  msgid "Release name"
1364
1241
  msgstr "릴리즈 이름 "
@@ -1387,105 +1264,85 @@ msgstr "기본값 템플릿 "
1387
1264
  msgid "Architectures"
1388
1265
  msgstr "아키텍처 "
1389
1266
 
1390
- #: lib/hammer_cli_foreman/operating_system.rb:46
1391
- #: lib/hammer_cli_foreman/operating_system.rb:73
1392
- msgid "set associated architectures"
1393
- msgstr "관련된 아키텍처 설정 "
1394
-
1395
- #: lib/hammer_cli_foreman/operating_system.rb:48
1396
- #: lib/hammer_cli_foreman/operating_system.rb:75
1397
- msgid "set associated templates"
1398
- msgstr "관련된 템플릿 설정 "
1399
-
1400
- #: lib/hammer_cli_foreman/operating_system.rb:50
1401
- #: lib/hammer_cli_foreman/operating_system.rb:77
1402
- msgid "set associated installation media"
1403
- msgstr "관련된 설치 미디어 설정 "
1404
-
1405
- #: lib/hammer_cli_foreman/operating_system.rb:52
1406
- #: lib/hammer_cli_foreman/operating_system.rb:79
1407
- msgid "set associated partition tables"
1408
- msgstr "관련된 파티션 테이블 설정 "
1409
-
1410
- #: lib/hammer_cli_foreman/operating_system.rb:55
1267
+ #: lib/hammer_cli_foreman/operating_system.rb:44
1411
1268
  msgid "Operating system created"
1412
1269
  msgstr "운영 체제가 생성되었습니다 "
1413
1270
 
1414
- #: lib/hammer_cli_foreman/operating_system.rb:56
1271
+ #: lib/hammer_cli_foreman/operating_system.rb:45
1415
1272
  msgid "Could not create the operating system"
1416
1273
  msgstr "운영 체제를 생성할 수 없습니다 "
1417
1274
 
1418
- #: lib/hammer_cli_foreman/operating_system.rb:82
1275
+ #: lib/hammer_cli_foreman/operating_system.rb:52
1419
1276
  msgid "Operating system updated"
1420
1277
  msgstr "운영 체제가 업데이트되었습니다 "
1421
1278
 
1422
- #: lib/hammer_cli_foreman/operating_system.rb:83
1279
+ #: lib/hammer_cli_foreman/operating_system.rb:53
1423
1280
  msgid "Could not update the operating system"
1424
1281
  msgstr "운영 체제를 업데이트할 수 없습니다 "
1425
1282
 
1426
- #: lib/hammer_cli_foreman/operating_system.rb:99
1283
+ #: lib/hammer_cli_foreman/operating_system.rb:60
1427
1284
  msgid "Operating system deleted"
1428
1285
  msgstr "운영 체제가 삭제되었습니다 "
1429
1286
 
1430
- #: lib/hammer_cli_foreman/operating_system.rb:100
1287
+ #: lib/hammer_cli_foreman/operating_system.rb:61
1431
1288
  msgid "Could not delete the operating system"
1432
1289
  msgstr "운영 체제를 삭제할 수 없습니다 "
1433
1290
 
1434
- #: lib/hammer_cli_foreman/operating_system.rb:107
1291
+ #: lib/hammer_cli_foreman/operating_system.rb:68
1435
1292
  msgid "Create or update parameter for an operating system."
1436
1293
  msgstr "운영 체제의 매개 변수를 생성 또는 업데이트합니다. "
1437
1294
 
1438
- #: lib/hammer_cli_foreman/operating_system.rb:109
1295
+ #: lib/hammer_cli_foreman/operating_system.rb:70
1439
1296
  msgid "Operating system parameter updated"
1440
1297
  msgstr "운영 체제 매개 변수가 업데이트되었습니다 "
1441
1298
 
1442
- #: lib/hammer_cli_foreman/operating_system.rb:110
1299
+ #: lib/hammer_cli_foreman/operating_system.rb:71
1443
1300
  msgid "New operating system parameter created"
1444
1301
  msgstr "새 운영 체제 매개 변수가 생성되었습니다 "
1445
1302
 
1446
- #: lib/hammer_cli_foreman/operating_system.rb:111
1303
+ #: lib/hammer_cli_foreman/operating_system.rb:72
1447
1304
  msgid "Could not set operating system parameter"
1448
1305
  msgstr "운영 체제 매개 변수를 설정할 수 없습니다 "
1449
1306
 
1450
- #: lib/hammer_cli_foreman/operating_system.rb:123
1307
+ #: lib/hammer_cli_foreman/operating_system.rb:84
1451
1308
  msgid "Delete parameter for an operating system."
1452
1309
  msgstr "운영 체제의 매개변수를 삭제합니다. "
1453
1310
 
1454
- #: lib/hammer_cli_foreman/operating_system.rb:125
1311
+ #: lib/hammer_cli_foreman/operating_system.rb:86
1455
1312
  msgid "operating system parameter deleted"
1456
1313
  msgstr "운영 체제 매개 변수가 삭제되었습니다 "
1457
1314
 
1458
- #: lib/hammer_cli_foreman/operating_system.rb:140
1459
- #: lib/hammer_cli_foreman/operating_system.rb:206
1315
+ #: lib/hammer_cli_foreman/operating_system.rb:101
1316
+ #: lib/hammer_cli_foreman/operating_system.rb:167
1460
1317
  msgid "operatingsystem id"
1461
1318
  msgstr "운영 체제 ID "
1462
1319
 
1463
- #: lib/hammer_cli_foreman/operating_system.rb:141
1320
+ #: lib/hammer_cli_foreman/operating_system.rb:102
1464
1321
  msgid "config template id to be set"
1465
1322
  msgstr "설정할 설정 템플릿 ID "
1466
1323
 
1467
- #: lib/hammer_cli_foreman/operating_system.rb:144
1324
+ #: lib/hammer_cli_foreman/operating_system.rb:105
1468
1325
  msgid ""
1469
1326
  "[%{config_template_name}] was set as default %{template_kind_name} template"
1470
1327
  msgstr "[%{config_template_name}]이(가) 기본값 %{template_kind_name} 템플릿으로 설정되었습니다 "
1471
1328
 
1472
- #: lib/hammer_cli_foreman/operating_system.rb:145
1329
+ #: lib/hammer_cli_foreman/operating_system.rb:106
1473
1330
  msgid "Could not set the os default template"
1474
1331
  msgstr "os 기본값 템플릿을 설정할 수 없습니다 "
1475
1332
 
1476
- #: lib/hammer_cli_foreman/operating_system.rb:207
1333
+ #: lib/hammer_cli_foreman/operating_system.rb:168
1477
1334
  msgid "Type of the config template"
1478
1335
  msgstr "설정 템플릿 유형 "
1479
1336
 
1480
- #: lib/hammer_cli_foreman/operating_system.rb:209
1337
+ #: lib/hammer_cli_foreman/operating_system.rb:170
1481
1338
  msgid "Default template deleted"
1482
1339
  msgstr "기본값 템플릿이 삭제되었습니다 "
1483
1340
 
1484
- #: lib/hammer_cli_foreman/operating_system.rb:210
1341
+ #: lib/hammer_cli_foreman/operating_system.rb:171
1485
1342
  msgid "Could not delete the default template"
1486
1343
  msgstr "기본값 템플릿을 삭제할 수 없습니다 "
1487
1344
 
1488
- #: lib/hammer_cli_foreman/operating_system.rb:217
1345
+ #: lib/hammer_cli_foreman/operating_system.rb:178
1489
1346
  msgid "Default template of type %s not found"
1490
1347
  msgstr ""
1491
1348
 
@@ -1570,6 +1427,11 @@ msgstr "환경을 삭제할 수 없습니다 "
1570
1427
  msgid "Smart variables"
1571
1428
  msgstr "스마트 매개 변수 "
1572
1429
 
1430
+ #: lib/hammer_cli_foreman/puppet_class.rb:34
1431
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
1432
+ msgid "Parameter"
1433
+ msgstr "매개 변수 "
1434
+
1573
1435
  #: lib/hammer_cli_foreman/puppet_class.rb:35
1574
1436
  msgid "Default value"
1575
1437
  msgstr "기본값 "
@@ -1634,6 +1496,74 @@ msgstr "도메인의 매개 변수를 삭제합니다. "
1634
1496
  msgid "Domain parameter deleted"
1635
1497
  msgstr "도메인 매개 변수가 삭제되었습니다 "
1636
1498
 
1499
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
1500
+ msgid "Default Value"
1501
+ msgstr "기본값 "
1502
+
1503
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
1504
+ msgid "Override"
1505
+ msgstr "덮어쓰기 "
1506
+
1507
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
1508
+ msgid "Puppet class"
1509
+ msgstr "Puppet 클래스 "
1510
+
1511
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
1512
+ msgid "Class Id"
1513
+ msgstr "클래스 Id"
1514
+
1515
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
1516
+ msgid "Required"
1517
+ msgstr "필수 "
1518
+
1519
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
1520
+ msgid "Validator"
1521
+ msgstr "유효성 검사기 "
1522
+
1523
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
1524
+ msgid "Rule"
1525
+ msgstr "규칙 "
1526
+
1527
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
1528
+ msgid "Override values"
1529
+ msgstr "값 덮어쓰기 "
1530
+
1531
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
1532
+ msgid "Order"
1533
+ msgstr "순서"
1534
+
1535
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
1536
+ msgid "Count"
1537
+ msgstr "수 "
1538
+
1539
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
1540
+ msgid "Match"
1541
+ msgstr "일치 "
1542
+
1543
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
1544
+ msgid "Parameter updated"
1545
+ msgstr "매개 변수가 업데이트되었습니다 "
1546
+
1547
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
1548
+ msgid "Could not update the parameter"
1549
+ msgstr "매개 변수를 업데이트할 수 없습니다 "
1550
+
1551
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
1552
+ msgid "Override this parameter."
1553
+ msgstr "매개 변수를 덮어쓰기합니다."
1554
+
1555
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
1556
+ msgid "This parameter is required."
1557
+ msgstr "매개 변수가 필요합니다. "
1558
+
1559
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
1560
+ msgid "Type of the parameter."
1561
+ msgstr "매개 변수 유형 "
1562
+
1563
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
1564
+ msgid "Type of the validator."
1565
+ msgstr "유효성 검사 유형 "
1566
+
1637
1567
  #: lib/hammer_cli_foreman/auth.rb:7
1638
1568
  msgid "Set credentials"
1639
1569
  msgstr "인증 정보 설정 "
@@ -1688,6 +1618,14 @@ msgstr "사용자 그룹을 삭제할 수 없습니다 "
1688
1618
  msgid "View and manage compute resource's images"
1689
1619
  msgstr "컴퓨터 리소스의 이미지 보기 및 관리 "
1690
1620
 
1621
+ #: lib/hammer_cli_foreman/image.rb:32
1622
+ msgid "Username"
1623
+ msgstr "사용자 이름 "
1624
+
1625
+ #: lib/hammer_cli_foreman/image.rb:46
1626
+ msgid "IAM role"
1627
+ msgstr "IAM 역할 "
1628
+
1691
1629
  #: lib/hammer_cli_foreman/image.rb:56
1692
1630
  msgid "Show images available for addition"
1693
1631
  msgstr "추가할 수 있는 이미지 표시 "
@@ -1749,103 +1687,111 @@ msgstr "파티션 테이블이 삭제되었습니다 "
1749
1687
  msgid "Could not delete the partition table"
1750
1688
  msgstr "파티션 테이블을 삭제할 수 없습니다 "
1751
1689
 
1752
- #: lib/hammer_cli_foreman/credentials.rb:10
1753
- msgid "[Foreman] username: "
1754
- msgstr "[Foreman] 사용자 이름: "
1690
+ #: lib/hammer_cli_foreman/credentials.rb:26
1691
+ msgid "[Foreman] Username: "
1692
+ msgstr ""
1755
1693
 
1756
- #: lib/hammer_cli_foreman/credentials.rb:15
1757
- msgid "[Foreman] password for %s: "
1758
- msgstr "%s의 [Foreman] 암호: "
1694
+ #: lib/hammer_cli_foreman/credentials.rb:33
1695
+ msgid "[Foreman] Password for %s: "
1696
+ msgstr ""
1759
1697
 
1760
- #: lib/hammer_cli_foreman/id_resolver.rb:32
1698
+ #: lib/hammer_cli_foreman/id_resolver.rb:36
1761
1699
  msgid "Architecture name"
1762
1700
  msgstr "아키텍처 이름 "
1763
1701
 
1764
- #: lib/hammer_cli_foreman/id_resolver.rb:33
1702
+ #: lib/hammer_cli_foreman/id_resolver.rb:37
1765
1703
  msgid "Compute resource name"
1766
1704
  msgstr "컴퓨터 리소스 이름 "
1767
1705
 
1768
- #: lib/hammer_cli_foreman/id_resolver.rb:34
1706
+ #: lib/hammer_cli_foreman/id_resolver.rb:38
1769
1707
  msgid "Domain name"
1770
1708
  msgstr "도메인 이름 "
1771
1709
 
1772
- #: lib/hammer_cli_foreman/id_resolver.rb:35
1710
+ #: lib/hammer_cli_foreman/id_resolver.rb:39
1773
1711
  msgid "Environment name"
1774
1712
  msgstr "환경 이름 "
1775
1713
 
1776
- #: lib/hammer_cli_foreman/id_resolver.rb:38
1714
+ #: lib/hammer_cli_foreman/id_resolver.rb:42
1777
1715
  msgid "Host name"
1778
1716
  msgstr "호스트 이름 "
1779
1717
 
1780
- #: lib/hammer_cli_foreman/id_resolver.rb:39
1718
+ #: lib/hammer_cli_foreman/id_resolver.rb:43
1781
1719
  msgid "Hostgroup name"
1782
1720
  msgstr "호스트 그룹 이름 "
1783
1721
 
1784
- #: lib/hammer_cli_foreman/id_resolver.rb:41
1722
+ #: lib/hammer_cli_foreman/id_resolver.rb:45
1785
1723
  msgid "Location name"
1786
1724
  msgstr "위치 이름 "
1787
1725
 
1788
- #: lib/hammer_cli_foreman/id_resolver.rb:42
1726
+ #: lib/hammer_cli_foreman/id_resolver.rb:46
1789
1727
  msgid "Medium name"
1790
1728
  msgstr "미디어 이름 "
1791
1729
 
1792
- #: lib/hammer_cli_foreman/id_resolver.rb:43
1730
+ #: lib/hammer_cli_foreman/id_resolver.rb:47
1793
1731
  msgid "Model name"
1794
1732
  msgstr "모델 이름 "
1795
1733
 
1796
- #: lib/hammer_cli_foreman/id_resolver.rb:44
1734
+ #: lib/hammer_cli_foreman/id_resolver.rb:48
1797
1735
  msgid "Organization name"
1798
1736
  msgstr "조직 이름 "
1799
1737
 
1800
- #: lib/hammer_cli_foreman/id_resolver.rb:46
1738
+ #: lib/hammer_cli_foreman/id_resolver.rb:49
1739
+ msgid "Operating system title"
1740
+ msgstr ""
1741
+
1742
+ #: lib/hammer_cli_foreman/id_resolver.rb:50
1801
1743
  msgid "Partition table name"
1802
1744
  msgstr "파티션 테이블 이름 "
1803
1745
 
1804
- #: lib/hammer_cli_foreman/id_resolver.rb:47
1746
+ #: lib/hammer_cli_foreman/id_resolver.rb:51
1805
1747
  msgid "Proxy name"
1806
1748
  msgstr "프록시 이름 "
1807
1749
 
1808
- #: lib/hammer_cli_foreman/id_resolver.rb:48
1750
+ #: lib/hammer_cli_foreman/id_resolver.rb:52
1809
1751
  msgid "Puppet class name"
1810
1752
  msgstr "Puppet 클래스 이름 "
1811
1753
 
1812
- #: lib/hammer_cli_foreman/id_resolver.rb:49
1754
+ #: lib/hammer_cli_foreman/id_resolver.rb:53
1813
1755
  msgid "Report name"
1814
1756
  msgstr "보고서 이름 "
1815
1757
 
1816
- #: lib/hammer_cli_foreman/id_resolver.rb:50
1758
+ #: lib/hammer_cli_foreman/id_resolver.rb:54
1817
1759
  msgid "User role name"
1818
1760
  msgstr "사용자 역할 이름 "
1819
1761
 
1820
- #: lib/hammer_cli_foreman/id_resolver.rb:51
1762
+ #: lib/hammer_cli_foreman/id_resolver.rb:55
1821
1763
  msgid "Subnet name"
1822
1764
  msgstr "서브넷 이름 "
1823
1765
 
1824
- #: lib/hammer_cli_foreman/id_resolver.rb:53
1766
+ #: lib/hammer_cli_foreman/id_resolver.rb:57
1825
1767
  msgid "User's login to search by"
1826
1768
  msgstr "검색할 사용자 로그인 "
1827
1769
 
1828
- #: lib/hammer_cli_foreman/id_resolver.rb:54
1770
+ #: lib/hammer_cli_foreman/id_resolver.rb:58
1829
1771
  msgid "Common parameter name"
1830
1772
  msgstr "일반적인 매개 변수 이름 "
1831
1773
 
1832
- #: lib/hammer_cli_foreman/id_resolver.rb:55
1774
+ #: lib/hammer_cli_foreman/id_resolver.rb:59
1833
1775
  msgid "Smart class parameter name"
1834
1776
  msgstr "스마트 클래스 매개 변수 이름 "
1835
1777
 
1836
- #: lib/hammer_cli_foreman/id_resolver.rb:57
1778
+ #: lib/hammer_cli_foreman/id_resolver.rb:61
1837
1779
  msgid "Name to search by"
1838
1780
  msgstr "검색할 이름 "
1839
1781
 
1840
- #: lib/hammer_cli_foreman/id_resolver.rb:140
1782
+ #: lib/hammer_cli_foreman/id_resolver.rb:149
1783
+ msgid "one of %s not found"
1784
+ msgstr ""
1785
+
1786
+ #: lib/hammer_cli_foreman/id_resolver.rb:191
1841
1787
  msgid "%s not found"
1842
1788
  msgstr "%s을(를) 찾을 수 없음 "
1843
1789
 
1844
- #: lib/hammer_cli_foreman/id_resolver.rb:141
1790
+ #: lib/hammer_cli_foreman/id_resolver.rb:192
1845
1791
  msgid "%s found more than once"
1846
1792
  msgstr "%s을(를) 하나 이상 발견했습니다 "
1847
1793
 
1848
- #: lib/hammer_cli_foreman/id_resolver.rb:152
1794
+ #: lib/hammer_cli_foreman/id_resolver.rb:203
1849
1795
  msgid "Missing options to search %s"
1850
1796
  msgstr "%s의 검색에 누락된 옵션 "
1851
1797