foreman_discovery 11.0.0 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +5 -5
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -2
  3. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +1 -1
  4. data/app/controllers/discovered_hosts_controller.rb +21 -11
  5. data/app/controllers/foreman_discovery/concerns/hosts_controller_extensions.rb +1 -1
  6. data/app/helpers/discovered_hosts_helper.rb +9 -11
  7. data/app/models/discovery_rule.rb +3 -0
  8. data/app/models/host/discovered.rb +59 -19
  9. data/app/models/setting/discovered.rb +1 -0
  10. data/app/services/foreman_discovery/fact_parser.rb +6 -2
  11. data/app/services/foreman_discovery/ui_notifications/new_host.rb +3 -1
  12. data/app/views/dashboard/_discovery_widget_host_list.html.erb +1 -1
  13. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +2 -3
  14. data/app/views/discovered_hosts/_selected_hosts.html.erb +1 -1
  15. data/app/views/discovered_hosts/index.html.erb +0 -2
  16. data/app/views/discovered_hosts/multiple_auto_provision.html.erb +4 -0
  17. data/app/views/discovered_hosts/multiple_reboot.html.erb +4 -0
  18. data/app/views/discovered_hosts/show.html.erb +27 -15
  19. data/app/views/discovery_rules/_form.html.erb +9 -3
  20. data/app/views/discovery_rules/edit.html.erb +1 -1
  21. data/app/views/discovery_rules/index.html.erb +2 -2
  22. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  23. data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
  24. data/config/as_deprecation_whitelist.yaml +395 -0
  25. data/config/routes.rb +7 -5
  26. data/db/migrate/20171222120314_add_constraints_on_discovery_rules_hostgroups.rb +10 -0
  27. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +24 -0
  28. data/extra/discover-host +7 -5
  29. data/extra/discovery/simple-bond.json +167 -0
  30. data/lib/foreman_discovery/engine.rb +9 -3
  31. data/lib/foreman_discovery/version.rb +1 -1
  32. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/ca/foreman_discovery.edit.po +148 -221
  34. data/locale/ca/foreman_discovery.po +25 -19
  35. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/de/foreman_discovery.edit.po +147 -221
  37. data/locale/de/foreman_discovery.po +26 -20
  38. data/locale/en/foreman_discovery.edit.po +106 -98
  39. data/locale/en/foreman_discovery.po +24 -18
  40. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/en_GB/foreman_discovery.edit.po +149 -222
  42. data/locale/en_GB/foreman_discovery.po +26 -20
  43. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  44. data/locale/es/foreman_discovery.edit.po +149 -222
  45. data/locale/es/foreman_discovery.po +26 -20
  46. data/locale/foreman_discovery.pot +115 -103
  47. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/fr/foreman_discovery.edit.po +147 -221
  49. data/locale/fr/foreman_discovery.po +26 -20
  50. data/locale/gl/foreman_discovery.edit.po +147 -220
  51. data/locale/gl/foreman_discovery.po +24 -18
  52. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/it/foreman_discovery.edit.po +148 -221
  54. data/locale/it/foreman_discovery.po +25 -19
  55. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/ja/foreman_discovery.edit.po +149 -222
  57. data/locale/ja/foreman_discovery.po +26 -20
  58. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  59. data/locale/ko/foreman_discovery.edit.po +149 -221
  60. data/locale/ko/foreman_discovery.po +26 -20
  61. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  62. data/locale/pt_BR/foreman_discovery.edit.po +149 -222
  63. data/locale/pt_BR/foreman_discovery.po +26 -20
  64. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  65. data/locale/ru/foreman_discovery.edit.po +152 -223
  66. data/locale/ru/foreman_discovery.po +26 -20
  67. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  68. data/locale/sv_SE/foreman_discovery.edit.po +147 -220
  69. data/locale/sv_SE/foreman_discovery.po +24 -18
  70. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  71. data/locale/zh_CN/foreman_discovery.edit.po +155 -224
  72. data/locale/zh_CN/foreman_discovery.po +26 -20
  73. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  74. data/locale/zh_TW/foreman_discovery.edit.po +151 -222
  75. data/locale/zh_TW/foreman_discovery.po +26 -20
  76. data/test/functional/api/v2/discovered_hosts_controller_test.rb +2 -0
  77. data/test/functional/api/v2/discovery_rules_controller_test.rb +96 -9
  78. data/test/functional/api/v2/settings_controller_test.rb +22 -0
  79. data/test/functional/discovered_hosts_controller_test.rb +20 -21
  80. data/test/functional/discovery_rules_controller_test.rb +5 -4
  81. data/test/integration/discovered_hosts_test.rb +20 -10
  82. data/test/models/setting_test.rb +11 -0
  83. data/test/test_helper_discovery.rb +1 -0
  84. data/test/unit/discovered_extensions_test.rb +2 -13
  85. data/test/unit/discovery_rule_test.rb +87 -1
  86. data/test/unit/fact_parser_test.rb +2 -2
  87. data/test/unit/host_discovered_test.rb +60 -28
  88. data/test/unit/ui_notifications/destroy_host_test.rb +14 -4
  89. data/test/unit/ui_notifications/new_host_test.rb +8 -1
  90. metadata +22 -4
@@ -45,9 +45,6 @@ msgstr "関連付けられたホスト"
45
45
  msgid "Auto Provision"
46
46
  msgstr "自動プロビジョニング"
47
47
 
48
- msgid "Auto Provision All"
49
- msgstr "すべてを自動プロビジョニング"
50
-
51
48
  msgid "Auto provisioning"
52
49
  msgstr "自動プロビジョニング"
53
50
 
@@ -75,6 +72,9 @@ msgstr "すべてのファクトのクリーニング"
75
72
  msgid "Clean all reported facts during provisioning (except discovery facts)"
76
73
  msgstr "プロビジョニング時に報告されたすべてのファクトをクリーニング (検出ファクトを除く)"
77
74
 
75
+ msgid "Collapse All"
76
+ msgstr ""
77
+
78
78
  msgid "Could not get facts from proxy %{url}: %{error}"
79
79
  msgstr "プロキシー %{url} からファクトを取得できませんでした: %{error}"
80
80
 
@@ -96,6 +96,9 @@ msgstr ""
96
96
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
97
97
  msgstr "DHCP ファイル名オプション (デフォルトでは Grub2 または PXELinux)"
98
98
 
99
+ msgid "Delete"
100
+ msgstr ""
101
+
99
102
  msgid "Delete %s?"
100
103
  msgstr "%s を削除しますか?"
101
104
 
@@ -105,9 +108,6 @@ msgstr "検出されたホストの削除"
105
108
  msgid "Delete a rule"
106
109
  msgstr "ルールの削除"
107
110
 
108
- msgid "Delete hosts"
109
- msgstr "ホストの削除"
110
-
111
111
  msgid "Delete rule '%s'?"
112
112
  msgstr "ルール '%s' を削除しますか?"
113
113
 
@@ -126,6 +126,9 @@ msgstr "ルール '%s' を無効にしますか?"
126
126
  msgid "Discovered Hosts"
127
127
  msgstr "検出されたホスト"
128
128
 
129
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
130
+ msgstr ""
131
+
129
132
  msgid "Discovered host: %s"
130
133
  msgstr "検出されたホスト: %s"
131
134
 
@@ -156,6 +159,9 @@ msgstr "検出されたホストへの接続を管理するためにこのサブ
156
159
  msgid "Discovery Rules"
157
160
  msgstr "検出ルール"
158
161
 
162
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
163
+ msgstr ""
164
+
159
165
  msgid "Discovery location"
160
166
  msgstr "検出ロケーション"
161
167
 
@@ -189,11 +195,14 @@ msgstr "ディスクサイズ"
189
195
  msgid "Disks size"
190
196
  msgstr "ディスク容量"
191
197
 
198
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
199
+ msgstr ""
200
+
192
201
  msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
193
202
  msgstr "ドメインは自動的に追加されます。空白のままの場合には、MAC アドレスに基づくホスト名が使用されます。"
194
203
 
195
- msgid "Edit Discovery Rule"
196
- msgstr "検出ルールの編集"
204
+ msgid "Edit %s"
205
+ msgstr ""
197
206
 
198
207
  msgid "Enable"
199
208
  msgstr "有効化"
@@ -201,6 +210,9 @@ msgstr "有効化"
201
210
  msgid "Enable rule '%s'?"
202
211
  msgstr "ルール '%s' を有効にしますか?"
203
212
 
213
+ msgid "Error on existing NIC"
214
+ msgstr ""
215
+
204
216
  msgid "Errors during auto provisioning: %s"
205
217
  msgstr "自動プロビジョニング時のエラー: %s"
206
218
 
@@ -213,9 +225,6 @@ msgstr "検出されたホストに対するルールの実行"
213
225
  msgid "Execute rules against all currently discovered hosts"
214
226
  msgstr "現在検出されているすべてのホストに対するルールの実行"
215
227
 
216
- msgid "Expand All"
217
- msgstr "すべて展開"
218
-
219
228
  msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
220
229
  msgstr "予測された discovery_fact '%s' がありません。プライマリーインターフェースを検出したり、ホスト名を設定したりできません"
221
230
 
@@ -506,9 +515,6 @@ msgstr "検出されたホストのプロビジョニング"
506
515
  msgid "Reboot"
507
516
  msgstr "再起動"
508
517
 
509
- msgid "Reboot All"
510
- msgstr "すべてを再起動"
511
-
512
518
  msgid "Rebooting %s"
513
519
  msgstr "%s を再起動中"
514
520
 
@@ -641,15 +647,12 @@ msgstr "タイプ"
641
647
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
642
648
  msgstr "オーケストレーションタスクの状態を追跡するための UUID。GET /api/orchestration/:UUID/tasks"
643
649
 
644
- msgid "Unable to assign subnet, primary interface is missing IP address"
645
- msgstr "サブネットを割り当てることができません。プライマリーインターフェースには IP アドレスがありません"
646
-
647
- msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
648
- msgstr "discovery_fact '%{fact}' で指定された MAC '%{mac}' を使用してプライマリーインターフェースを検出できません"
649
-
650
650
  msgid "Unable to find a discovery rule, no host provided (check permissions)"
651
651
  msgstr "検出ルールを見つけることができません。指定されるホストがありません (パーミッションを確認してください)"
652
652
 
653
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
654
+ msgstr ""
655
+
653
656
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
654
657
  msgstr "%{url} から kexec を %{name} に対して実行できません: %{msg}"
655
658
 
@@ -692,6 +695,9 @@ msgstr "項目が選択されています。クリアするにはチェックを
692
695
  msgid "location ID for provisioned hosts"
693
696
  msgstr ""
694
697
 
698
+ msgid "must be present."
699
+ msgstr ""
700
+
695
701
  msgid "must start with a letter or ERB."
696
702
  msgstr "文字または ERB で開始する必要があります。"
697
703
 
@@ -1,13 +1,12 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
- #
4
+ #
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: foreman_discovery 10.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2017-12-11 10:28+0100\n"
11
10
  "PO-Revision-Date: 2018-01-05 19:26+0000\n"
12
11
  "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
13
12
  "Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
@@ -21,23 +20,19 @@ msgstr ""
21
20
  msgid "List all discovered hosts"
22
21
  msgstr "검색된 모든 호스트를 나열 "
23
22
 
24
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
25
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
23
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
26
24
  msgid "filter results"
27
25
  msgstr "필터 결과 "
28
26
 
29
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
30
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
27
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
31
28
  msgid "sort results"
32
29
  msgstr "결과 정렬 "
33
30
 
34
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
35
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
31
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
36
32
  msgid "paginate results"
37
33
  msgstr "페이지네이션 결과 "
38
34
 
39
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
40
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
35
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
41
36
  msgid "number of entries per request"
42
37
  msgstr "요청 당 항목 수 "
43
38
 
@@ -45,8 +40,7 @@ msgstr "요청 당 항목 수 "
45
40
  msgid "Show a discovered host"
46
41
  msgstr "검색된 호스트 표시 "
47
42
 
48
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
49
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
43
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:79
50
44
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
51
45
  msgstr ""
52
46
 
@@ -67,14 +61,11 @@ msgid "not required if it's a virtual machine"
67
61
  msgstr "가상 머신의 경우 필요하지 않습니다 "
68
62
 
69
63
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
70
- msgid ""
71
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
64
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
72
65
  msgstr "오케스트레이션 작업 상태를 추적하기 위한 UUID, GET /api/orchestration/:UUID/tasks"
73
66
 
74
67
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
75
- msgid ""
76
- "required if value is not inherited from host group or default password in "
77
- "settings"
68
+ msgid "required if value is not inherited from host group or default password in settings"
78
69
  msgstr "값이 호스트 그룹이나 설정의 기본값 암호에서 상속되지 않은 경우에 필요합니다 "
79
70
 
80
71
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
@@ -86,62 +77,54 @@ msgid "Upload facts for a host, creating the host if required"
86
77
  msgstr "호스트의 팩트를 업로드하고 필요한 경우 호스트를 생성합니다 "
87
78
 
88
79
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
89
- msgid ""
90
- "hash containing facts for the host with minimum set of facts: "
91
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
92
- "eth0 (example in case primary interface is named eth0)"
80
+ 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)"
93
81
  msgstr "최소 세트의 팩트가 있는 호스트의 팩트가 포함된 해시: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, 인터페이스: eth0(기본 인터페이스의 이름이 eth0인 경우의 예)"
94
82
 
95
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:117
83
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
96
84
  msgid "Execute rules against a discovered host"
97
85
  msgstr "검색된 호스트에 대해 규칙 실행 "
98
86
 
99
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:123
100
- #: ../app/controllers/discovered_hosts_controller.rb:150
87
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
101
88
  msgid "Host %{host} was provisioned with rule %{rule}"
102
89
  msgstr "호스트 %{host}은/는 %{rule}으(로) 프로비저닝됩니다 "
103
90
 
104
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:126
91
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
105
92
  msgid "Unable to provision %{host}: %{errors}"
106
93
  msgstr "%{host}을(를) 프로비저닝할 수 없습니다: %{errors}"
107
94
 
108
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:132
109
- #: ../app/controllers/discovered_hosts_controller.rb:157
95
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
110
96
  msgid "No rule found for host %s"
111
97
  msgstr "호스트 %s에 대한 규칙을 찾을 수 없습니다 "
112
98
 
113
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
99
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
114
100
  msgid "Execute rules against all currently discovered hosts"
115
101
  msgstr "현재 검색된 모든 호스트에 대해 규칙 실행 "
116
102
 
117
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:143
118
- #: ../app/controllers/discovered_hosts_controller.rb:163
103
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
119
104
  msgid "Errors during auto provisioning: %s"
120
105
  msgstr "자동 프로비저닝 도중 오류 발생: %s"
121
106
 
122
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:146
123
- #: ../app/controllers/discovered_hosts_controller.rb:166
107
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
124
108
  msgid "No discovered hosts to provision"
125
109
  msgstr "프로비저닝할 검색된 호스트가 없습니다 "
126
110
 
127
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:168
111
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
128
112
  msgid "%s discovered hosts were provisioned"
129
113
  msgstr "%s개의 검색된 호스트를 프로비저닝했습니다."
130
114
 
131
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:179
115
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
132
116
  msgid "Refreshing the facts of a discovered host"
133
117
  msgstr "검색된 호스트의 팩트를 새로고침 중 "
134
118
 
135
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:188
119
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
136
120
  msgid "Rebooting a discovered host"
137
121
  msgstr "검색된 호스트를 재부팅 중 "
138
122
 
139
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:197
123
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
140
124
  msgid "Rebooting all discovered hosts"
141
125
  msgstr "검색된 모든 호스트를 재부팅 중"
142
126
 
143
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:208
144
- #: ../app/controllers/discovered_hosts_controller.rb:125
127
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
145
128
  msgid "Discovered hosts are rebooting now"
146
129
  msgstr "현재 검색된 호스트를 재부팅하고 있습니다."
147
130
 
@@ -166,8 +149,7 @@ msgid "the hostgroup that is used to auto provision a host"
166
149
  msgstr "호스트를 자동 프로비저닝하기 위해 사용되는 호스트 그룹"
167
150
 
168
151
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
169
- msgid ""
170
- "defines a pattern to assign human-readable hostnames to the matching hosts"
152
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
171
153
  msgstr "해당 호스트에 읽기 좋은 호스트 이름을 할당하기 위해 패턴을 정의합니다"
172
154
 
173
155
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -175,8 +157,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
175
157
  msgstr "규칙 당 프로비저닝된 호스트의 최대 수량을 제한할 수 있게 합니다"
176
158
 
177
159
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
178
- msgid ""
179
- "puts the rules in order, low numbers go first. Must be greater then zero"
160
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
180
161
  msgstr "규칙을 순서대로 배치합니다. 낮은 숫자를 먼저 배치합니다. 수치는 0 보다 커야 합니다"
181
162
 
182
163
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -223,95 +204,95 @@ msgstr "재부팅 도중 오류가 발생했습니다: %s"
223
204
  msgid "No discovered hosts to reboot"
224
205
  msgstr "재부팅할 검색된 호스트가 없습니다."
225
206
 
226
- #: ../app/controllers/discovered_hosts_controller.rb:61
207
+ #: ../app/controllers/discovered_hosts_controller.rb:63
227
208
  msgid "Successfully provisioned %s"
228
209
  msgstr ""
229
210
 
230
- #: ../app/controllers/discovered_hosts_controller.rb:93
211
+ #: ../app/controllers/discovered_hosts_controller.rb:96
231
212
  msgid "Facts refreshed for %s"
232
213
  msgstr "%s에 대해 업데이트된 팩트"
233
214
 
234
- #: ../app/controllers/discovered_hosts_controller.rb:95
215
+ #: ../app/controllers/discovered_hosts_controller.rb:98
235
216
  msgid "Failed to refresh facts for %s"
236
217
  msgstr "%s에 대한 팩트를 새로고침하는데 실패했습니다 "
237
218
 
238
- #: ../app/controllers/discovered_hosts_controller.rb:98
219
+ #: ../app/controllers/discovered_hosts_controller.rb:101
239
220
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
240
221
  msgstr "%{error_message} 오류가 발생하여 %{hostname}의 팩트를 새로 고치지 못했습니다."
241
222
 
242
- #: ../app/controllers/discovered_hosts_controller.rb:105
223
+ #: ../app/controllers/discovered_hosts_controller.rb:108
243
224
  msgid "Host of type %s can not be rebooted"
244
225
  msgstr "호스트 유형 %s은(는) 재부팅할 수 없습니다 "
245
226
 
246
- #: ../app/controllers/discovered_hosts_controller.rb:109
227
+ #: ../app/controllers/discovered_hosts_controller.rb:112
247
228
  msgid "Rebooting host %s"
248
229
  msgstr "호스트 %s 재부팅 중 "
249
230
 
250
- #: ../app/controllers/discovered_hosts_controller.rb:111
231
+ #: ../app/controllers/discovered_hosts_controller.rb:114
251
232
  msgid "Failed to reboot host %s"
252
233
  msgstr "호스트 %s 재부팅에 실패했습니다 "
253
234
 
254
- #: ../app/controllers/discovered_hosts_controller.rb:114
235
+ #: ../app/controllers/discovered_hosts_controller.rb:117
255
236
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
256
237
  msgstr "오류 %{error_message}를 표시하는 호스트 %{hostname} 재부팅에 실패했습니다 "
257
238
 
258
- #: ../app/controllers/discovered_hosts_controller.rb:128
239
+ #: ../app/controllers/discovered_hosts_controller.rb:131
259
240
  msgid "Failed to reboot hosts with error %s"
260
241
  msgstr "%s 오류가 발생하여 호스트를 재부팅하지 못했습니다."
261
242
 
262
- #: ../app/controllers/discovered_hosts_controller.rb:140
243
+ #: ../app/controllers/discovered_hosts_controller.rb:149
263
244
  msgid "Destroyed selected hosts"
264
245
  msgstr "선택된 호스트 삭제"
265
246
 
266
- #: ../app/controllers/discovered_hosts_controller.rb:142
247
+ #: ../app/controllers/discovered_hosts_controller.rb:151
267
248
  msgid "The following hosts were not deleted: %s"
268
249
  msgstr "다음 호스트가 삭제되지 않았습니다: %s"
269
250
 
270
- #: ../app/controllers/discovered_hosts_controller.rb:154
251
+ #: ../app/controllers/discovered_hosts_controller.rb:163
271
252
  msgid "Failed to auto provision host %s: %s"
272
253
  msgstr "호스트 %s의 자동 프로비저닝에 실패했습니다: %s"
273
254
 
274
- #: ../app/controllers/discovered_hosts_controller.rb:182
255
+ #: ../app/controllers/discovered_hosts_controller.rb:191
275
256
  msgid "Discovered hosts are provisioning now"
276
257
  msgstr "현재 검색된 호스트를 프로비저닝하고 있습니다"
277
258
 
278
- #: ../app/controllers/discovered_hosts_controller.rb:214
259
+ #: ../app/controllers/discovered_hosts_controller.rb:223
279
260
  msgid "Highlights"
280
261
  msgstr ""
281
262
 
282
- #: ../app/controllers/discovered_hosts_controller.rb:214
263
+ #: ../app/controllers/discovered_hosts_controller.rb:223
283
264
  msgid "Storage"
284
265
  msgstr "스토리지"
285
266
 
286
- #: ../app/controllers/discovered_hosts_controller.rb:214
267
+ #: ../app/controllers/discovered_hosts_controller.rb:223
287
268
  msgid "Hardware"
288
269
  msgstr "하드웨어"
289
270
 
290
- #: ../app/controllers/discovered_hosts_controller.rb:214
271
+ #: ../app/controllers/discovered_hosts_controller.rb:223
291
272
  msgid "Network"
292
273
  msgstr "네트워크"
293
274
 
294
- #: ../app/controllers/discovered_hosts_controller.rb:214
275
+ #: ../app/controllers/discovered_hosts_controller.rb:223
295
276
  msgid "Software"
296
277
  msgstr "소프트웨어"
297
278
 
298
- #: ../app/controllers/discovered_hosts_controller.rb:214
279
+ #: ../app/controllers/discovered_hosts_controller.rb:223
299
280
  msgid "IPMI"
300
281
  msgstr "IPMI"
301
282
 
302
- #: ../app/controllers/discovered_hosts_controller.rb:214
283
+ #: ../app/controllers/discovered_hosts_controller.rb:223
303
284
  msgid "Miscellaneous"
304
285
  msgstr "기타"
305
286
 
306
- #: ../app/controllers/discovered_hosts_controller.rb:291
287
+ #: ../app/controllers/discovered_hosts_controller.rb:301
307
288
  msgid "No hosts were found with that id or name"
308
289
  msgstr "해당 ID 또는 이름의 호스트를 찾을 수 없습니다 "
309
290
 
310
- #: ../app/controllers/discovered_hosts_controller.rb:295
291
+ #: ../app/controllers/discovered_hosts_controller.rb:305
311
292
  msgid "No hosts selected"
312
293
  msgstr "선택된 호스트가 없음 "
313
294
 
314
- #: ../app/controllers/discovered_hosts_controller.rb:301
295
+ #: ../app/controllers/discovered_hosts_controller.rb:311
315
296
  msgid "Something went wrong while selecting hosts - %s"
316
297
  msgstr "호스트를 선택하는 도중 문제가 발생했습니다 - %s"
317
298
 
@@ -327,19 +308,15 @@ msgstr "규칙 비활성화 "
327
308
  msgid "%s ago"
328
309
  msgstr "%s 전 "
329
310
 
330
- #: ../app/helpers/discovered_hosts_helper.rb:14
331
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
311
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
332
312
  msgid "Auto Provision"
333
313
  msgstr "자동 프로비저닝 "
334
314
 
335
- #: ../app/helpers/discovered_hosts_helper.rb:15
336
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
315
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
337
316
  msgid "Refresh facts"
338
317
  msgstr "팩트 새로고침 "
339
318
 
340
- #: ../app/helpers/discovered_hosts_helper.rb:16
341
- #: ../app/models/setting/discovered.rb:23
342
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
319
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
343
320
  msgid "Reboot"
344
321
  msgstr "다시 시작"
345
322
 
@@ -347,62 +324,51 @@ msgstr "다시 시작"
347
324
  msgid "Back"
348
325
  msgstr "뒤로 "
349
326
 
350
- #: ../app/helpers/discovered_hosts_helper.rb:21
351
- #: ../app/helpers/discovered_hosts_helper.rb:37
327
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
352
328
  msgid "Select Action"
353
329
  msgstr "작업 선택 "
354
330
 
355
- #: ../app/helpers/discovered_hosts_helper.rb:23
356
- msgid "Expand All"
357
- msgstr "모두 확장 "
358
-
359
- #: ../app/helpers/discovered_hosts_helper.rb:27
360
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
331
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
361
332
  msgid "Delete %s?"
362
333
  msgstr "%s 을(를) 삭제하시겠습니까?"
363
334
 
364
- #: ../app/helpers/discovered_hosts_helper.rb:33
365
- msgid "Delete hosts"
366
- msgstr "호스트 삭제 "
367
-
368
- #: ../app/helpers/discovered_hosts_helper.rb:34
335
+ #: ../app/helpers/discovered_hosts_helper.rb:31
369
336
  msgid "Assign Organization"
370
337
  msgstr "조직 지정 "
371
338
 
372
- #: ../app/helpers/discovered_hosts_helper.rb:35
339
+ #: ../app/helpers/discovered_hosts_helper.rb:32
373
340
  msgid "Assign Location"
374
341
  msgstr "위치 지정 "
375
342
 
376
- #: ../app/helpers/discovered_hosts_helper.rb:39
343
+ #: ../app/helpers/discovered_hosts_helper.rb:33
344
+ msgid "Delete"
345
+ msgstr ""
346
+
347
+ #: ../app/helpers/discovered_hosts_helper.rb:37
377
348
  msgid "%s - The following hosts are about to be changed"
378
349
  msgstr "%s - 다음 호스트는 즉시 변경됩니다 "
379
350
 
380
- #: ../app/helpers/discovered_hosts_helper.rb:48
381
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
351
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
382
352
  msgid "N/A"
383
353
  msgstr "해당 없음 "
384
354
 
385
- #: ../app/helpers/discovered_hosts_helper.rb:60
355
+ #: ../app/helpers/discovered_hosts_helper.rb:58
386
356
  msgid "New in the last 24 hours"
387
357
  msgstr "지난 24시간 이내의 신규 항목"
388
358
 
389
- #: ../app/helpers/discovered_hosts_helper.rb:64
359
+ #: ../app/helpers/discovered_hosts_helper.rb:62
390
360
  msgid "Not reported in more than 7 days"
391
361
  msgstr "7일 넘게 보고되지 않음"
392
362
 
393
- #: ../app/helpers/discovered_hosts_helper.rb:68
363
+ #: ../app/helpers/discovered_hosts_helper.rb:66
394
364
  msgid "Reported in the last 7 days"
395
365
  msgstr "지난 7일 이내에 보고됨"
396
366
 
397
- #: ../app/helpers/discovered_hosts_helper.rb:92
367
+ #: ../app/helpers/discovered_hosts_helper.rb:90
398
368
  msgid "Provision"
399
369
  msgstr "프로비저닝 "
400
370
 
401
- #: ../app/helpers/discovery_rules_helper.rb:26
402
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2
403
- #: ../app/views/discovered_hosts/welcome.html.erb:1
404
- #: ../app/views/discovered_hosts/welcome.html.erb:6
405
- #: ../lib/foreman_discovery/engine.rb:166
371
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2 ../app/views/discovered_hosts/welcome.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:6 ../lib/foreman_discovery/engine.rb:173
406
372
  msgid "Discovered Hosts"
407
373
  msgstr ""
408
374
 
@@ -438,64 +404,59 @@ msgstr "이메일이 활성화된 사용자를 지정해야 합니다 "
438
404
  msgid "Discovered hosts summary"
439
405
  msgstr ""
440
406
 
441
- #: ../app/models/discovery_rule.rb:9
407
+ #: ../app/models/discovery_rule.rb:10
442
408
  msgid "can't contain white spaces."
443
409
  msgstr "공백을 포함할 수 없습니다. "
444
410
 
445
- #: ../app/models/discovery_rule.rb:11
411
+ #: ../app/models/discovery_rule.rb:12
446
412
  msgid "must start with a letter or ERB."
447
413
  msgstr "문자 또는 ERB로 시작해야 합니다. "
448
414
 
449
- #: ../app/models/discovery_rule.rb:45
450
- msgid ""
451
- "Host group organization %s must also be associated to the discovery rule"
452
- msgid_plural ""
453
- "Host group organizations %s must also be associated to the discovery rule"
415
+ #: ../app/models/discovery_rule.rb:15
416
+ msgid "must be present."
417
+ msgstr ""
418
+
419
+ #: ../app/models/discovery_rule.rb:48
420
+ msgid "Host group organization %s must also be associated to the discovery rule"
421
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
454
422
  msgstr[0] ""
423
+ msgstr[1] ""
455
424
 
456
- #: ../app/models/discovery_rule.rb:51
425
+ #: ../app/models/discovery_rule.rb:54
457
426
  msgid "Host group location %s must also be associated to the discovery rule"
458
- msgid_plural ""
459
- "Host group locations %s must also be associated to the discovery rule"
427
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
460
428
  msgstr[0] ""
429
+ msgstr[1] ""
461
430
 
462
- #: ../app/models/host/discovered.rb:37
431
+ #: ../app/models/host/discovered.rb:51
463
432
  msgid "Invalid facts, must be a Hash"
464
433
  msgstr "잘못된 팩트, 해시여야 합니다 "
465
434
 
466
- #: ../app/models/host/discovered.rb:42
467
- msgid ""
468
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
469
- "and set hostname"
435
+ #: ../app/models/host/discovered.rb:56
436
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
470
437
  msgstr "필요한 discovery_fact '%s'이(가) 누락되었습니다. 기본 인터페이스와 설정된 호스트 이름을 감지할 수 없습니다."
471
438
 
472
- #: ../app/models/host/discovered.rb:49
473
- msgid ""
474
- "Invalid facts: hash does not contain a valid value for any of the facts in "
475
- "the discovery_hostname setting: %s"
439
+ #: ../app/models/host/discovered.rb:63
440
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
476
441
  msgstr ""
477
442
 
478
- #: ../app/models/host/discovered.rb:66
443
+ #: ../app/models/host/discovered.rb:89
479
444
  msgid "Facts could not be imported"
480
445
  msgstr ""
481
446
 
482
- #: ../app/models/host/discovered.rb:133
483
- msgid "Unable to assign subnet, primary interface is missing IP address"
484
- msgstr "서브넷을 할당할 수 없습니다. 기본 인터페이스의 IP 주소가 누락되었습니다."
485
-
486
- #: ../app/models/host/discovered.rb:190
447
+ #: ../app/models/host/discovered.rb:212
487
448
  msgid "Could not get facts from proxy %{url}: %{error}"
488
449
  msgstr "프록시 %{url}에서 팩트를 가져올 수 없습니다: %{error}"
489
450
 
490
- #: ../app/models/host/discovered.rb:198
451
+ #: ../app/models/host/discovered.rb:220
491
452
  msgid "Unable to reboot %{name} via %{url}: %{msg}"
492
453
  msgstr "%{url}을(를) 통해 %{name}을(를) 재부팅할 수 없습니다: %{msg}"
493
454
 
494
- #: ../app/models/host/discovered.rb:206
455
+ #: ../app/models/host/discovered.rb:228
495
456
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
496
457
  msgstr "%{url}을(를) 통해 %{name}에 대해 kexec을 수행할 수 없습니다: %{msg}"
497
458
 
498
- #: ../app/models/host/discovered.rb:225
459
+ #: ../app/models/host/discovered.rb:247
499
460
  msgid "Invalid hostname: Could not normalize the hostname"
500
461
  msgstr ""
501
462
 
@@ -548,9 +509,7 @@ msgid "Hostname facts"
548
509
  msgstr ""
549
510
 
550
511
  #: ../app/models/setting/discovered.rb:22
551
- msgid ""
552
- "Automatically provision newly discovered hosts, according to the "
553
- "provisioning rules"
512
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
554
513
  msgstr "프로비저닝 규칙에 따라 새로 검색된 호스트의 자동 프로비저닝 "
555
514
 
556
515
  #: ../app/models/setting/discovered.rb:22
@@ -626,9 +585,7 @@ msgid "IPMI facts"
626
585
  msgstr ""
627
586
 
628
587
  #: ../app/models/setting/discovered.rb:32
629
- msgid ""
630
- "Automatically generate PXE configuration to pin a newly discovered host to "
631
- "discovery"
588
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
632
589
  msgstr ""
633
590
 
634
591
  #: ../app/models/setting/discovered.rb:32
@@ -667,27 +624,41 @@ msgstr ""
667
624
  msgid "Force DNS"
668
625
  msgstr ""
669
626
 
670
- #: ../app/models/setting/discovered.rb:43
627
+ #: ../app/models/setting/discovered.rb:37
628
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
629
+ msgstr ""
630
+
631
+ #: ../app/models/setting/discovered.rb:37
632
+ msgid "Error on existing NIC"
633
+ msgstr ""
634
+
635
+ #: ../app/models/setting/discovered.rb:44
671
636
  msgid "The default location to place discovered hosts in"
672
637
  msgstr "검색된 호스트를 배치하기 위한 기본 위치 "
673
638
 
674
- #: ../app/models/setting/discovered.rb:43
639
+ #: ../app/models/setting/discovered.rb:44
675
640
  msgid "Discovery location"
676
641
  msgstr ""
677
642
 
678
- #: ../app/models/setting/discovered.rb:51
643
+ #: ../app/models/setting/discovered.rb:52
679
644
  msgid "The default organization to place discovered hosts in"
680
645
  msgstr "검색된 호스트를 배치하기 위한 기본 조직 "
681
646
 
682
- #: ../app/models/setting/discovered.rb:51
647
+ #: ../app/models/setting/discovered.rb:52
683
648
  msgid "Discovery organization"
684
649
  msgstr ""
685
650
 
686
- #: ../app/services/foreman_discovery/fact_parser.rb:9
687
- msgid ""
688
- "Unable to detect primary interface using MAC '%{mac}' specified by "
689
- "discovery_fact '%{fact}'"
690
- msgstr "discovery_fact '%{fact}'에 지정된 MAC '%{mac}'을(를) 사용하여 기본 인터페이스를 감지할 수 없습니다."
651
+ #: ../app/services/foreman_discovery/fact_parser.rb:4
652
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
653
+ msgstr ""
654
+
655
+ #: ../app/services/foreman_discovery/fact_parser.rb:6
656
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
657
+ msgstr ""
658
+
659
+ #: ../app/services/foreman_discovery/fact_parser.rb:12
660
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
661
+ msgstr ""
691
662
 
692
663
  #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
693
664
  msgid "Image API returned HTTP/%{code} with '%{body}"
@@ -705,25 +676,15 @@ msgstr "사용 가능한 검색된 호스트가 없습니다 "
705
676
  msgid "Host"
706
677
  msgstr "호스트"
707
678
 
708
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
709
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
710
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
711
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
712
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
679
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
713
680
  msgid "Model"
714
681
  msgstr "모델 "
715
682
 
716
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
717
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
718
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
719
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
683
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
720
684
  msgid "CPUs"
721
685
  msgstr "CPU"
722
686
 
723
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
724
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
725
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
726
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
687
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
727
688
  msgid "Memory"
728
689
  msgstr "메모리"
729
690
 
@@ -743,16 +704,11 @@ msgstr "이 페이지에 있는 모든 항목을 선택 "
743
704
  msgid "items selected. Uncheck to Clear"
744
705
  msgstr "항목이 선택되어 있습니다. 삭제하려면 선택 해제합니다 "
745
706
 
746
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
747
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
748
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
749
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
707
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
750
708
  msgid "Name"
751
709
  msgstr "이름 "
752
710
 
753
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
754
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
755
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
711
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
756
712
  msgid "IP Address"
757
713
  msgstr "IP 주소 "
758
714
 
@@ -764,13 +720,11 @@ msgstr "디스크 수"
764
720
  msgid "Disks Size"
765
721
  msgstr ""
766
722
 
767
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
768
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
723
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
769
724
  msgid "Location"
770
725
  msgstr "위치 "
771
726
 
772
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
773
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:13
727
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovered_hosts/_selected_hosts.html.erb:13
774
728
  msgid "Organization"
775
729
  msgstr "조직 "
776
730
 
@@ -798,18 +752,8 @@ msgstr "제출 "
798
752
  msgid "Provision %s"
799
753
  msgstr ""
800
754
 
801
- #: ../app/views/discovered_hosts/index.html.erb:2
802
- msgid "Reboot All"
803
- msgstr "모두 재부팅"
804
-
805
- #: ../app/views/discovered_hosts/index.html.erb:3
806
- msgid "Auto Provision All"
807
- msgstr "전체 자동 프로비저닝 "
808
-
809
755
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
810
- msgid ""
811
- "This might take a while, as all hosts, facts and reports will be destroyed "
812
- "as well"
756
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
813
757
  msgstr "모든 호스트, 팩트, 보고서가 모두 삭제되기 때문에 시간이 걸릴 수 있습니다 "
814
758
 
815
759
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -824,34 +768,36 @@ msgstr "조직 선택 "
824
768
  msgid "Discovered host: %s"
825
769
  msgstr "검색된 호스트: %s"
826
770
 
827
- #: ../app/views/discovered_hosts/show.html.erb:34
771
+ #: ../app/views/discovered_hosts/show.html.erb:37
828
772
  msgid "Interfaces"
829
773
  msgstr "인터페이스"
830
774
 
831
- #: ../app/views/discovered_hosts/show.html.erb:41
775
+ #: ../app/views/discovered_hosts/show.html.erb:44
832
776
  msgid "Type"
833
777
  msgstr "유형 "
834
778
 
835
- #: ../app/views/discovered_hosts/show.html.erb:42
779
+ #: ../app/views/discovered_hosts/show.html.erb:45
836
780
  msgid "Identifier"
837
781
  msgstr "식별자 "
838
782
 
839
- #: ../app/views/discovered_hosts/show.html.erb:43
783
+ #: ../app/views/discovered_hosts/show.html.erb:46
840
784
  msgid "MAC address"
841
785
  msgstr "MAC 주소"
842
786
 
843
- #: ../app/views/discovered_hosts/show.html.erb:44
787
+ #: ../app/views/discovered_hosts/show.html.erb:47
844
788
  msgid "IP address"
845
789
  msgstr "IP 주소 "
846
790
 
791
+ #: ../app/views/discovered_hosts/show.html.erb:66
792
+ msgid "Collapse All"
793
+ msgstr ""
794
+
847
795
  #: ../app/views/discovered_hosts/welcome.html.erb:7
848
796
  msgid "No discovered hosts found in this context."
849
797
  msgstr ""
850
798
 
851
799
  #: ../app/views/discovered_hosts/welcome.html.erb:8
852
- msgid ""
853
- "This page shows discovered bare-metal or virtual nodes waiting to be "
854
- "provisioned."
800
+ msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
855
801
  msgstr ""
856
802
 
857
803
  #: ../app/views/discovered_hosts/welcome.html.erb:9
@@ -866,23 +812,19 @@ msgstr ""
866
812
  msgid "<b>Foreman</b> Discovered hosts summary"
867
813
  msgstr ""
868
814
 
869
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
870
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
815
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
871
816
  msgid "Summary from %{time} ago to %{now}"
872
817
  msgstr ""
873
818
 
874
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
875
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
819
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
876
820
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
877
821
  msgstr ""
878
822
 
879
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
880
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
823
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
881
824
  msgid "Disk count"
882
825
  msgstr "디스크 수 "
883
826
 
884
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
885
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
827
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
886
828
  msgid "Disks size"
887
829
  msgstr "디스크 크기 "
888
830
 
@@ -931,38 +873,28 @@ msgid "Rule priority (lower integer means higher priority)"
931
873
  msgstr "규칙 우선 순위 (낮은 정수 값일수록 우선 순위가 높아짐)"
932
874
 
933
875
  #: ../app/views/discovery_rules/_template_inline.erb:2
934
- msgid ""
935
- "Specify target hostname template pattern in the same syntax as in "
936
- "Provisioning Templates (ERB)."
876
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
937
877
  msgstr "프로비저닝 템플릿 (ERB)에 있는 것과 동일한 구문의 대상 호스트 이름 템플릿 패턴을 지정합니다. "
938
878
 
939
879
  #: ../app/views/discovery_rules/_template_inline.erb:4
940
- msgid ""
941
- "Domain will be appended automatically. A hostname based on MAC address will "
942
- "be used when left blank."
880
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
943
881
  msgstr ""
944
882
 
945
883
  #: ../app/views/discovery_rules/_template_inline.erb:5
946
- msgid ""
947
- "In addition to @host attribute function rand for random integers is "
948
- "available. Examples:"
884
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
949
885
  msgstr ""
950
886
 
951
887
  #: ../app/views/discovery_rules/_template_inline.erb:8
952
- msgid ""
953
- "When creating hostname patterns, make sure the resulting host names are "
954
- "unique."
888
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
955
889
  msgstr ""
956
890
 
957
891
  #: ../app/views/discovery_rules/_template_inline.erb:9
958
- msgid ""
959
- "Hostnames must not start with numbers. A good approach is to use unique "
960
- "information provided by facter (MAC address, BIOS or serial ID)."
892
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
961
893
  msgstr ""
962
894
 
963
895
  #: ../app/views/discovery_rules/edit.html.erb:1
964
- msgid "Edit Discovery Rule"
965
- msgstr "검색 규칙 편집 "
896
+ msgid "Edit %s"
897
+ msgstr ""
966
898
 
967
899
  #: ../app/views/discovery_rules/index.html.erb:1
968
900
  msgid "Discovery Rules"
@@ -1016,30 +948,26 @@ msgstr ""
1016
948
  msgid "Details"
1017
949
  msgstr "상세 정보 "
1018
950
 
1019
- #: ../lib/foreman_discovery/engine.rb:151
951
+ #: ../lib/foreman_discovery/engine.rb:158
1020
952
  msgid "Discovered hosts"
1021
953
  msgstr "검색된 호스트 "
1022
954
 
1023
- #: ../lib/foreman_discovery/engine.rb:156
955
+ #: ../lib/foreman_discovery/engine.rb:163
1024
956
  msgid "Discovery rules"
1025
957
  msgstr "검색 규칙 "
1026
958
 
1027
- #: ../lib/foreman_discovery/engine.rb:172
959
+ #: ../lib/foreman_discovery/engine.rb:179
1028
960
  msgid "Discovery Kexec template"
1029
961
  msgstr ""
1030
962
 
1031
- #: ../lib/foreman_discovery/engine.rb:181
963
+ #: ../lib/foreman_discovery/engine.rb:188
1032
964
  msgid "Discovery Proxy"
1033
965
  msgstr ""
1034
966
 
1035
- #: ../lib/foreman_discovery/engine.rb:182
1036
- msgid ""
1037
- "Discovery Proxy to use within this subnet for managing connection to "
1038
- "discovered hosts"
967
+ #: ../lib/foreman_discovery/engine.rb:189
968
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1039
969
  msgstr ""
1040
970
 
1041
- #: ../lib/foreman_discovery/engine.rb:183
1042
- msgid ""
1043
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1044
- "discovered hosts"
971
+ #: ../lib/foreman_discovery/engine.rb:190
972
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1045
973
  msgstr ""