foreman_discovery 16.3.5 → 17.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
  3. data/app/controllers/discovered_hosts_controller.rb +24 -35
  4. data/app/controllers/discovery_rules_controller.rb +12 -1
  5. data/app/helpers/discovered_hosts_helper.rb +1 -1
  6. data/app/helpers/discovery_rules_helper.rb +1 -0
  7. data/app/models/discovery_rule.rb +10 -5
  8. data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
  9. data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
  10. data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
  11. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
  12. data/app/views/discovery_rules/clone.erb +3 -0
  13. data/app/views/discovery_rules/index.html.erb +4 -0
  14. data/app/views/discovery_rules/welcome.html.erb +15 -0
  15. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  16. data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
  17. data/config/routes.rb +2 -0
  18. data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
  19. data/lib/foreman_discovery/engine.rb +3 -7
  20. data/lib/foreman_discovery/version.rb +1 -1
  21. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  22. data/locale/ca/foreman_discovery.edit.po +103 -70
  23. data/locale/ca/foreman_discovery.po +36 -9
  24. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  25. data/locale/de/foreman_discovery.edit.po +109 -76
  26. data/locale/de/foreman_discovery.po +45 -18
  27. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  28. data/locale/en/foreman_discovery.edit.po +98 -66
  29. data/locale/en/foreman_discovery.po +31 -4
  30. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  31. data/locale/en_GB/foreman_discovery.edit.po +107 -74
  32. data/locale/en_GB/foreman_discovery.po +36 -9
  33. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  34. data/locale/es/foreman_discovery.edit.po +109 -76
  35. data/locale/es/foreman_discovery.po +70 -41
  36. data/locale/foreman_discovery.pot +142 -97
  37. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  38. data/locale/fr/foreman_discovery.edit.po +151 -118
  39. data/locale/fr/foreman_discovery.po +76 -49
  40. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/gl/foreman_discovery.edit.po +101 -68
  42. data/locale/gl/foreman_discovery.po +32 -5
  43. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  44. data/locale/it/foreman_discovery.edit.po +107 -74
  45. data/locale/it/foreman_discovery.po +44 -17
  46. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  47. data/locale/ja/foreman_discovery.edit.po +136 -103
  48. data/locale/ja/foreman_discovery.po +79 -54
  49. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  50. data/locale/ko/foreman_discovery.edit.po +107 -74
  51. data/locale/ko/foreman_discovery.po +43 -16
  52. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/pt_BR/foreman_discovery.edit.po +109 -76
  54. data/locale/pt_BR/foreman_discovery.po +69 -39
  55. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/ru/foreman_discovery.edit.po +112 -79
  57. data/locale/ru/foreman_discovery.po +43 -16
  58. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  59. data/locale/sv_SE/foreman_discovery.edit.po +101 -68
  60. data/locale/sv_SE/foreman_discovery.po +34 -7
  61. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  62. data/locale/zh_CN/foreman_discovery.edit.po +153 -120
  63. data/locale/zh_CN/foreman_discovery.po +114 -90
  64. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  65. data/locale/zh_TW/foreman_discovery.edit.po +107 -74
  66. data/locale/zh_TW/foreman_discovery.po +43 -16
  67. data/package.json +6 -6
  68. data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
  69. data/test/functional/discovery_rules_controller_test.rb +6 -1
  70. data/test/integration/discovered_hosts_test.rb +53 -5
  71. data/test/test_helper_discovery.rb +5 -0
  72. data/test/unit/discovery_rule_test.rb +24 -2
  73. data/test/unit/fact_to_category_resolver_test.rb +41 -0
  74. data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
  75. data/test/unit/ui_notifications/new_host_test.rb +3 -3
  76. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  77. data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
  78. data/webpack/__mocks__/foremanReact/common/index.js +5 -0
  79. data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
  80. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
  81. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
  82. data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
  83. data/webpack/index.js +9 -8
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
  85. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
  86. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
  87. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
  88. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
  89. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
  90. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
  91. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
  92. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
  93. data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
  94. data/webpack/src/reducers.js +0 -2
  95. metadata +32 -10
@@ -5,10 +5,11 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 16.3.4\n"
8
+ "Project-Id-Version: foreman_discovery 17.1.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2020-10-29 17:16+0000\n"
11
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
10
+ "POT-Creation-Date: 2021-09-20 17:25+0200\n"
11
+ "PO-Revision-Date: 2021-05-03 08:29+0000\n"
12
+ "Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4\n"
12
13
  "Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
13
14
  "MIME-Version: 1.0\n"
14
15
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -112,51 +113,51 @@ msgstr "호스트의 팩트를 업로드하고 필요한 경우 호스트를 생
112
113
  msgid "hash containing facts for the host with minimum set of facts: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in case primary interface is named eth0)"
113
114
  msgstr "최소 세트의 팩트가 있는 호스트의 팩트가 포함된 해시: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, 인터페이스: eth0(기본 인터페이스의 이름이 eth0인 경우의 예)"
114
115
 
115
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
116
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
116
117
  msgid "Execute rules against a discovered host"
117
118
  msgstr "검색된 호스트에 대해 규칙 실행 "
118
119
 
119
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
120
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
120
121
  msgid "Host %{host} was provisioned with rule %{rule}"
121
122
  msgstr "호스트 %{host}은/는 %{rule}으(로) 프로비저닝됩니다 "
122
123
 
123
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
124
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
124
125
  msgid "Unable to provision %{host}: %{errors}"
125
126
  msgstr "%{host}을(를) 프로비저닝할 수 없습니다: %{errors}"
126
127
 
127
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
128
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
128
129
  msgid "No rule found for host %s"
129
130
  msgstr "호스트 %s에 대한 규칙을 찾을 수 없습니다 "
130
131
 
131
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
132
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
132
133
  msgid "Execute rules against all currently discovered hosts"
133
134
  msgstr "현재 검색된 모든 호스트에 대해 규칙 실행 "
134
135
 
135
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
136
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
136
137
  msgid "Errors during auto provisioning: %s"
137
138
  msgstr "자동 프로비저닝 도중 오류 발생: %s"
138
139
 
139
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
140
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
140
141
  msgid "No discovered hosts to provision"
141
142
  msgstr "프로비저닝할 검색된 호스트가 없습니다 "
142
143
 
143
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
144
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
144
145
  msgid "%s discovered hosts were provisioned"
145
146
  msgstr "%s개의 검색된 호스트를 프로비저닝했습니다."
146
147
 
147
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
148
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
148
149
  msgid "Refreshing the facts of a discovered host"
149
150
  msgstr "검색된 호스트의 팩트를 새로고침 중 "
150
151
 
151
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
152
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
152
153
  msgid "Rebooting a discovered host"
153
154
  msgstr "검색된 호스트를 재부팅 중 "
154
155
 
155
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
156
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
156
157
  msgid "Rebooting all discovered hosts"
157
158
  msgstr "검색된 모든 호스트를 재부팅 중"
158
159
 
159
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
160
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
160
161
  msgid "Discovered hosts are rebooting now"
161
162
  msgstr "현재 검색된 호스트를 재부팅하고 있습니다."
162
163
 
@@ -288,58 +289,34 @@ msgstr "호스트 %s의 자동 프로비저닝에 실패했습니다: %s"
288
289
  msgid "Discovered hosts are provisioning now"
289
290
  msgstr "현재 검색된 호스트를 프로비저닝하고 있습니다"
290
291
 
291
- #: ../app/controllers/discovered_hosts_controller.rb:226
292
- msgid "Highlights"
292
+ #: ../app/controllers/discovered_hosts_controller.rb:277
293
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
293
294
  msgstr ""
294
295
 
295
- #: ../app/controllers/discovered_hosts_controller.rb:226
296
- msgid "Storage"
297
- msgstr "스토리지"
298
-
299
- #: ../app/controllers/discovered_hosts_controller.rb:226
300
- msgid "Hardware"
301
- msgstr "하드웨어"
302
-
303
- #: ../app/controllers/discovered_hosts_controller.rb:226
304
- msgid "Network"
305
- msgstr "네트워크"
306
-
307
- #: ../app/controllers/discovered_hosts_controller.rb:226
308
- msgid "Software"
309
- msgstr "소프트웨어"
310
-
311
- #: ../app/controllers/discovered_hosts_controller.rb:226
312
- msgid "IPMI"
313
- msgstr "IPMI"
314
-
315
- #: ../app/controllers/discovered_hosts_controller.rb:226
316
- msgid "Miscellaneous"
317
- msgstr "기타"
296
+ #: ../app/controllers/discovered_hosts_controller.rb:282
297
+ msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
298
+ msgstr ""
318
299
 
319
- #: ../app/controllers/discovered_hosts_controller.rb:304
300
+ #: ../app/controllers/discovered_hosts_controller.rb:296
320
301
  msgid "No hosts were found with that id or name"
321
302
  msgstr "해당 ID 또는 이름의 호스트를 찾을 수 없습니다 "
322
303
 
323
- #: ../app/controllers/discovered_hosts_controller.rb:308
304
+ #: ../app/controllers/discovered_hosts_controller.rb:300
324
305
  msgid "No hosts selected"
325
306
  msgstr "선택된 호스트가 없음 "
326
307
 
327
- #: ../app/controllers/discovered_hosts_controller.rb:314
308
+ #: ../app/controllers/discovered_hosts_controller.rb:306
328
309
  msgid "Something went wrong while selecting hosts - %s"
329
310
  msgstr "호스트를 선택하는 도중 문제가 발생했습니다 - %s"
330
311
 
331
- #: ../app/controllers/discovery_rules_controller.rb:72
312
+ #: ../app/controllers/discovery_rules_controller.rb:79
332
313
  msgid "Rule enabled"
333
314
  msgstr "규칙 비활성화 "
334
315
 
335
- #: ../app/controllers/discovery_rules_controller.rb:72
316
+ #: ../app/controllers/discovery_rules_controller.rb:79
336
317
  msgid "Rule disabled"
337
318
  msgstr "규칙 비활성화 "
338
319
 
339
- #: ../app/helpers/discovered_hosts_helper.rb:10
340
- msgid "%s ago"
341
- msgstr "%s 전 "
342
-
343
320
  #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
344
321
  msgid "Auto Provision"
345
322
  msgstr "자동 프로비저닝 "
@@ -425,6 +402,10 @@ msgid "Enable rule '%s'?"
425
402
  msgstr ""
426
403
 
427
404
  #: ../app/helpers/discovery_rules_helper.rb:33
405
+ msgid "Clone"
406
+ msgstr "복제(Clone)"
407
+
408
+ #: ../app/helpers/discovery_rules_helper.rb:34
428
409
  msgid "Delete rule '%s'?"
429
410
  msgstr ""
430
411
 
@@ -448,13 +429,13 @@ msgstr "문자 또는 ERB로 시작해야 합니다. "
448
429
  msgid "must be present."
449
430
  msgstr ""
450
431
 
451
- #: ../app/models/discovery_rule.rb:52
432
+ #: ../app/models/discovery_rule.rb:57
452
433
  msgid "Host group organization %s must also be associated to the discovery rule"
453
434
  msgid_plural "Host group organizations %s must also be associated to the discovery rule"
454
435
  msgstr[0] ""
455
436
  msgstr[1] ""
456
437
 
457
- #: ../app/models/discovery_rule.rb:56
438
+ #: ../app/models/discovery_rule.rb:61
458
439
  msgid "Host group location %s must also be associated to the discovery rule"
459
440
  msgid_plural "Host group locations %s must also be associated to the discovery rule"
460
441
  msgstr[0] ""
@@ -488,23 +469,23 @@ msgstr ""
488
469
  msgid "Facts could not be imported"
489
470
  msgstr ""
490
471
 
491
- #: ../app/models/host/discovered.rb:146
472
+ #: ../app/models/host/discovered.rb:155
492
473
  msgid "Could not get facts from proxy %{url}: %{error}"
493
474
  msgstr "프록시 %{url}에서 팩트를 가져올 수 없습니다: %{error}"
494
475
 
495
- #: ../app/models/host/discovered.rb:160
476
+ #: ../app/models/host/discovered.rb:173
496
477
  msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
497
478
  msgstr ""
498
479
 
499
- #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
480
+ #: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
500
481
  msgid "Unable to perform %{action} on %{ips}"
501
482
  msgstr ""
502
483
 
503
- #: ../app/models/host/discovered.rb:179
484
+ #: ../app/models/host/discovered.rb:196
504
485
  msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
505
486
  msgstr ""
506
487
 
507
- #: ../app/models/host/discovered.rb:203
488
+ #: ../app/models/host/discovered.rb:220
508
489
  msgid "Invalid hostname: Could not normalize the hostname"
509
490
  msgstr ""
510
491
 
@@ -712,6 +693,14 @@ msgstr ""
712
693
  msgid "Type of name generator"
713
694
  msgstr ""
714
695
 
696
+ #: ../app/models/setting/discovered.rb:40
697
+ msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
698
+ msgstr ""
699
+
700
+ #: ../app/models/setting/discovered.rb:40
701
+ msgid "Prefer IPv6"
702
+ msgstr ""
703
+
715
704
  #: ../app/services/foreman_discovery/fact_parser.rb:4
716
705
  msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
717
706
  msgstr ""
@@ -724,6 +713,34 @@ msgstr ""
724
713
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
725
714
  msgstr ""
726
715
 
716
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
717
+ msgid "Highlights"
718
+ msgstr ""
719
+
720
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
721
+ msgid "Storage"
722
+ msgstr "스토리지"
723
+
724
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
725
+ msgid "Hardware"
726
+ msgstr "하드웨어"
727
+
728
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
729
+ msgid "Network"
730
+ msgstr "네트워크"
731
+
732
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
733
+ msgid "Software"
734
+ msgstr "소프트웨어"
735
+
736
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
737
+ msgid "IPMI"
738
+ msgstr "IPMI"
739
+
740
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
741
+ msgid "Miscellaneous"
742
+ msgstr "기타"
743
+
727
744
  #: ../app/services/foreman_discovery/host_converter.rb:47
728
745
  msgid "IPAM must be configured for subnet '%s'"
729
746
  msgstr ""
@@ -736,6 +753,10 @@ msgstr "이미지 API에서 '%{body}'이(가) 포함된 HTTP/%{code}을(를) 반
736
753
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
737
754
  msgstr "이미지 API 처리 오류: %{msg}(HTTP/%{code}, 본문: %{body})"
738
755
 
756
+ #: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
757
+ msgid "Host %s has been dicovered"
758
+ msgstr ""
759
+
739
760
  #: ../app/views/dashboard/_discovery_widget.html.erb:5
740
761
  msgid "Discovered Host"
741
762
  msgid_plural "Discovered Hosts"
@@ -794,11 +815,11 @@ msgstr "디스크 수"
794
815
  msgid "Disks Size"
795
816
  msgstr ""
796
817
 
797
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
818
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9 ../app/views/discovery_rules/index.html.erb:11
798
819
  msgid "Location"
799
820
  msgstr "위치 "
800
821
 
801
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
822
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10 ../app/views/discovery_rules/index.html.erb:12
802
823
  msgid "Organization"
803
824
  msgstr "조직 "
804
825
 
@@ -810,7 +831,7 @@ msgstr "서브넷 "
810
831
  msgid "Last Facts Upload"
811
832
  msgstr ""
812
833
 
813
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:12
834
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
814
835
  msgid "Actions"
815
836
  msgstr "동작 "
816
837
 
@@ -958,6 +979,10 @@ msgstr ""
958
979
  msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
959
980
  msgstr ""
960
981
 
982
+ #: ../app/views/discovery_rules/clone.erb:1
983
+ msgid "Clone %s"
984
+ msgstr "%s 복제 "
985
+
961
986
  #: ../app/views/discovery_rules/edit.html.erb:1
962
987
  msgid "Edit %s"
963
988
  msgstr "%s 편집 "
@@ -990,7 +1015,7 @@ msgstr "호스트 그룹 "
990
1015
  msgid "Hosts/Limit"
991
1016
  msgstr ""
992
1017
 
993
- #: ../app/views/discovery_rules/index.html.erb:11
1018
+ #: ../app/views/discovery_rules/index.html.erb:13
994
1019
  msgid "DiscoveryRule|Enabled"
995
1020
  msgstr "활성화 "
996
1021
 
@@ -1011,8 +1036,8 @@ msgid "A summary of discovered hosts"
1011
1036
  msgstr ""
1012
1037
 
1013
1038
  #: ../db/seeds.d/80_discovery_ui_notification.rb:4
1014
- msgid "Hosts"
1015
- msgstr "호스트"
1039
+ msgid "New hosts"
1040
+ msgstr ""
1016
1041
 
1017
1042
  #: ../db/seeds.d/80_discovery_ui_notification.rb:6
1018
1043
  msgid "One or more hosts have been discovered"
@@ -1022,19 +1047,27 @@ msgstr ""
1022
1047
  msgid "Details"
1023
1048
  msgstr "상세 정보 "
1024
1049
 
1025
- #: ../lib/foreman_discovery/engine.rb:180
1050
+ #: ../db/seeds.d/80_discovery_ui_notification.rb:18
1051
+ msgid "Hosts"
1052
+ msgstr "호스트"
1053
+
1054
+ #: ../db/seeds.d/80_discovery_ui_notification.rb:20
1055
+ msgid "Error message goes here"
1056
+ msgstr ""
1057
+
1058
+ #: ../lib/foreman_discovery/engine.rb:176
1026
1059
  msgid "Discovery Kexec template"
1027
1060
  msgstr ""
1028
1061
 
1029
- #: ../lib/foreman_discovery/engine.rb:189
1062
+ #: ../lib/foreman_discovery/engine.rb:185
1030
1063
  msgid "Discovery Proxy"
1031
1064
  msgstr ""
1032
1065
 
1033
- #: ../lib/foreman_discovery/engine.rb:190
1066
+ #: ../lib/foreman_discovery/engine.rb:186
1034
1067
  msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1035
1068
  msgstr ""
1036
1069
 
1037
- #: ../lib/foreman_discovery/engine.rb:191
1070
+ #: ../lib/foreman_discovery/engine.rb:187
1038
1071
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1039
1072
  msgstr ""
1040
1073
 
@@ -1047,17 +1080,17 @@ msgid "documentation"
1047
1080
  msgstr ""
1048
1081
 
1049
1082
  #: action_names.rb:2
1050
- msgid "Action with sub plans"
1051
- msgstr "하위 계획이 있는 작업"
1083
+ msgid "Remote action:"
1084
+ msgstr "원격 작업:"
1052
1085
 
1053
1086
  #: action_names.rb:3
1054
- msgid "Import facts"
1055
- msgstr "팩트 불러오기"
1056
-
1057
- #: action_names.rb:4
1058
1087
  msgid "Import Puppet classes"
1059
1088
  msgstr "Puppet 클래스 가져오기"
1060
1089
 
1090
+ #: action_names.rb:4
1091
+ msgid "Import facts"
1092
+ msgstr "팩트 불러오기"
1093
+
1061
1094
  #: action_names.rb:5
1062
- msgid "Remote action:"
1063
- msgstr "원격 작업:"
1095
+ msgid "Action with sub plans"
1096
+ msgstr "하위 계획이 있는 작업"
@@ -5,9 +5,9 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 16.2.0\n"
8
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2020-05-26 17:21+0000\n"
10
+ "PO-Revision-Date: 2021-01-25 08:35+0000\n"
11
11
  "Last-Translator: Transifex Bot <>\n"
12
12
  "Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
13
13
  "MIME-Version: 1.0\n"
@@ -19,9 +19,6 @@ msgstr ""
19
19
  msgid "%s - The following hosts are about to be changed"
20
20
  msgstr "%s - 다음 호스트는 즉시 변경됩니다 "
21
21
 
22
- msgid "%s ago"
23
- msgstr "%s 전 "
24
-
25
22
  msgid "%s discovered hosts were provisioned"
26
23
  msgstr "%s개의 검색된 호스트를 프로비저닝했습니다."
27
24
 
@@ -32,7 +29,7 @@ msgid "A summary of discovered hosts"
32
29
  msgstr ""
33
30
 
34
31
  msgid "Action with sub plans"
35
- msgstr ""
32
+ msgstr "하위 계획이 있는 작업"
36
33
 
37
34
  msgid "Actions"
38
35
  msgstr "동작 "
@@ -79,6 +76,12 @@ msgstr ""
79
76
  msgid "Clean all reported facts during provisioning (except discovery facts)"
80
77
  msgstr ""
81
78
 
79
+ msgid "Clone"
80
+ msgstr ""
81
+
82
+ msgid "Clone %s"
83
+ msgstr ""
84
+
82
85
  msgid "Collapse All"
83
86
  msgstr "모두 축소"
84
87
 
@@ -144,9 +147,15 @@ msgstr[1] ""
144
147
  msgid "Discovered Hosts"
145
148
  msgstr ""
146
149
 
150
+ msgid "Discovered Rules"
151
+ msgstr ""
152
+
147
153
  msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
148
154
  msgstr ""
149
155
 
156
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
157
+ msgstr ""
158
+
150
159
  msgid "Discovered host: %s"
151
160
  msgstr "검색된 호스트: %s"
152
161
 
@@ -159,6 +168,9 @@ msgstr "현재 검색된 호스트를 재부팅하고 있습니다."
159
168
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
160
169
  msgstr ""
161
170
 
171
+ msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
172
+ msgstr ""
173
+
162
174
  msgid "Discovered hosts summary"
163
175
  msgstr ""
164
176
 
@@ -225,6 +237,9 @@ msgstr "활성화"
225
237
  msgid "Enable rule '%s'?"
226
238
  msgstr ""
227
239
 
240
+ msgid "Error message goes here"
241
+ msgstr ""
242
+
228
243
  msgid "Error on existing NIC"
229
244
  msgstr ""
230
245
 
@@ -279,6 +294,9 @@ msgstr "%s에 대한 팩트를 새로고침하는데 실패했습니다 "
279
294
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
280
295
  msgstr "%{error_message} 오류가 발생하여 %{hostname}의 팩트를 새로 고치지 못했습니다."
281
296
 
297
+ msgid "For more information please see "
298
+ msgstr ""
299
+
282
300
  msgid "Force DNS"
283
301
  msgstr ""
284
302
 
@@ -303,6 +321,9 @@ msgstr ""
303
321
  msgid "Host"
304
322
  msgstr "호스트"
305
323
 
324
+ msgid "Host %s has been dicovered"
325
+ msgstr ""
326
+
306
327
  msgid "Host %{host} was provisioned with rule %{rule}"
307
328
  msgstr "호스트 %{host}은/는 %{rule}으(로) 프로비저닝됩니다 "
308
329
 
@@ -323,10 +344,10 @@ msgid "Host of type %s can not be rebooted"
323
344
  msgstr "호스트 유형 %s은(는) 재부팅할 수 없습니다 "
324
345
 
325
346
  msgid "Host's owner type"
326
- msgstr ""
347
+ msgstr "호스트의 소유자 유형"
327
348
 
328
349
  msgid "Host's parameters (array or indexed hash)"
329
- msgstr ""
350
+ msgstr "호스트의 매개 변수(배열 또는 인덱싱된 해시)"
330
351
 
331
352
  msgid "Hostname facts"
332
353
  msgstr ""
@@ -377,10 +398,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
377
398
  msgstr "이미지 API에서 '%{body}'이(가) 포함된 HTTP/%{code}을(를) 반환했습니다."
378
399
 
379
400
  msgid "Import Puppet classes"
380
- msgstr ""
401
+ msgstr "Puppet 클래스 가져오기"
381
402
 
382
403
  msgid "Import facts"
383
- msgstr ""
404
+ msgstr "팩트 불러오기"
384
405
 
385
406
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
386
407
  msgstr ""
@@ -470,7 +491,7 @@ msgid "Name"
470
491
  msgstr "이름 "
471
492
 
472
493
  msgid "Name of the parameter"
473
- msgstr ""
494
+ msgstr "매개 변수의 이름"
474
495
 
475
496
  msgid "Network"
476
497
  msgstr "네트워크"
@@ -481,6 +502,9 @@ msgstr ""
481
502
  msgid "New Discovery Rule"
482
503
  msgstr "새 검색 규칙 "
483
504
 
505
+ msgid "New hosts"
506
+ msgstr ""
507
+
484
508
  msgid "New in the last 24 hours"
485
509
  msgstr "지난 24시간 이내의 신규 항목"
486
510
 
@@ -533,7 +557,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
533
557
  msgstr ""
534
558
 
535
559
  msgid "Parameter value"
536
- msgstr ""
560
+ msgstr "매개 변수 값"
537
561
 
538
562
  msgid "Please Confirm"
539
563
  msgstr "확인해 주십시오 "
@@ -599,7 +623,7 @@ msgid "Reloading kernel on %s"
599
623
  msgstr "%s에서 커널을 다시 로드하는 중"
600
624
 
601
625
  msgid "Remote action:"
602
- msgstr ""
626
+ msgstr "원격 작업:"
603
627
 
604
628
  msgid "Reported in the last 7 days"
605
629
  msgstr "지난 7일 이내에 보고됨"
@@ -727,6 +751,9 @@ msgstr "공백을 포함할 수 없습니다. "
727
751
  msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
728
752
  msgstr "해당 호스트에 읽기 좋은 호스트 이름을 할당하기 위해 패턴을 정의합니다"
729
753
 
754
+ msgid "documentation"
755
+ msgstr ""
756
+
730
757
  msgid "enables to limit maximum amount of provisioned hosts per rule"
731
758
  msgstr "규칙 당 프로비저닝된 호스트의 최대 수량을 제한할 수 있게 합니다"
732
759
 
@@ -776,13 +803,13 @@ msgid "represents rule name shown to the users"
776
803
  msgstr "사용자에게 표시되는 규칙 이름을 표시합니다"
777
804
 
778
805
  msgid "required if host is managed and custom partition has not been defined"
779
- msgstr ""
806
+ msgstr "호스트가 관리되고 있으며 사용자 정의 파티션이 정의되고 있지 않은 경우에 필요합니다 "
780
807
 
781
808
  msgid "required if host is managed and value is not inherited from host group"
782
- msgstr ""
809
+ msgstr "호스트가 관리되고 있으며 값이 호스트 그룹에서 상속되지 않은 경우에 필요합니다 "
783
810
 
784
811
  msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
785
- msgstr ""
812
+ msgstr "이미지 기반의 프로비저닝이 아니고 호스트가 관리되어 값이 호스트 그룹에서 상속되지 않은 경우에 필요합니다 "
786
813
 
787
814
  msgid "required if value is not inherited from host group or default password in settings"
788
815
  msgstr "값이 호스트 그룹이나 설정의 기본값 암호에서 상속되지 않은 경우에 필요합니다 "