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
@@ -46,9 +46,6 @@ msgstr ""
46
46
  msgid "Auto Provision"
47
47
  msgstr "Auto Provision"
48
48
 
49
- msgid "Auto Provision All"
50
- msgstr "Esegui Auto Provision su tutti"
51
-
52
49
  msgid "Auto provisioning"
53
50
  msgstr ""
54
51
 
@@ -76,6 +73,9 @@ msgstr ""
76
73
  msgid "Clean all reported facts during provisioning (except discovery facts)"
77
74
  msgstr ""
78
75
 
76
+ msgid "Collapse All"
77
+ msgstr ""
78
+
79
79
  msgid "Could not get facts from proxy %{url}: %{error}"
80
80
  msgstr "Impossibile ottenere gli eventi dal proxy %{url}: %{error}"
81
81
 
@@ -97,6 +97,9 @@ msgstr ""
97
97
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
98
98
  msgstr ""
99
99
 
100
+ msgid "Delete"
101
+ msgstr ""
102
+
100
103
  msgid "Delete %s?"
101
104
  msgstr "Cancella %s?"
102
105
 
@@ -106,9 +109,6 @@ msgstr "Rimuovi un host rilevato"
106
109
  msgid "Delete a rule"
107
110
  msgstr "Cancella una regola"
108
111
 
109
- msgid "Delete hosts"
110
- msgstr "Cancella gli host"
111
-
112
112
  msgid "Delete rule '%s'?"
113
113
  msgstr ""
114
114
 
@@ -127,6 +127,9 @@ msgstr ""
127
127
  msgid "Discovered Hosts"
128
128
  msgstr ""
129
129
 
130
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
131
+ msgstr ""
132
+
130
133
  msgid "Discovered host: %s"
131
134
  msgstr "Host trovati: %s"
132
135
 
@@ -157,6 +160,9 @@ msgstr ""
157
160
  msgid "Discovery Rules"
158
161
  msgstr "Regola per la scoperta"
159
162
 
163
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
164
+ msgstr ""
165
+
160
166
  msgid "Discovery location"
161
167
  msgstr ""
162
168
 
@@ -190,11 +196,14 @@ msgstr ""
190
196
  msgid "Disks size"
191
197
  msgstr "Dimensione dischi"
192
198
 
199
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
200
+ msgstr ""
201
+
193
202
  msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
194
203
  msgstr ""
195
204
 
196
- msgid "Edit Discovery Rule"
197
- msgstr "Modifica la regola per la scoperta"
205
+ msgid "Edit %s"
206
+ msgstr ""
198
207
 
199
208
  msgid "Enable"
200
209
  msgstr "Abilita"
@@ -202,6 +211,9 @@ msgstr "Abilita"
202
211
  msgid "Enable rule '%s'?"
203
212
  msgstr ""
204
213
 
214
+ msgid "Error on existing NIC"
215
+ msgstr ""
216
+
205
217
  msgid "Errors during auto provisioning: %s"
206
218
  msgstr "Errore durante auto provisioning: %s"
207
219
 
@@ -214,9 +226,6 @@ msgstr "Esegui le regole nei confronti di un host rilevato"
214
226
  msgid "Execute rules against all currently discovered hosts"
215
227
  msgstr "Esegui le regole nei confronti degli host attualemente rilevati"
216
228
 
217
- msgid "Expand All"
218
- msgstr "Espandi tutti"
219
-
220
229
  msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
221
230
  msgstr ""
222
231
 
@@ -509,9 +518,6 @@ msgstr "Esegui il provisioning di un host rilevato"
509
518
  msgid "Reboot"
510
519
  msgstr "Riavvia"
511
520
 
512
- msgid "Reboot All"
513
- msgstr ""
514
-
515
521
  msgid "Rebooting %s"
516
522
  msgstr "Riavvio di %s"
517
523
 
@@ -644,13 +650,10 @@ msgstr "Tipo"
644
650
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
645
651
  msgstr "UUID per controllare gli stati dei compiti d'orchestrazione, GET /api/orchestration/:UUID/tasks"
646
652
 
647
- msgid "Unable to assign subnet, primary interface is missing IP address"
648
- msgstr ""
649
-
650
- msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
653
+ msgid "Unable to find a discovery rule, no host provided (check permissions)"
651
654
  msgstr ""
652
655
 
653
- msgid "Unable to find a discovery rule, no host provided (check permissions)"
656
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
654
657
  msgstr ""
655
658
 
656
659
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
@@ -695,6 +698,9 @@ msgstr "oggetti selezionati. Deselezionare per annullare"
695
698
  msgid "location ID for provisioned hosts"
696
699
  msgstr ""
697
700
 
701
+ msgid "must be present."
702
+ msgstr ""
703
+
698
704
  msgid "must start with a letter or ERB."
699
705
  msgstr "deve iniziare con una lettera o ERB."
700
706
 
@@ -1,17 +1,17 @@
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
  # Shuji Yamada <uzy.exe@gmail.com>, 2015
7
7
  msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: foreman_discovery 10.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2017-12-11 10:28+0100\n"
12
11
  "PO-Revision-Date: 2018-01-05 19:26+0000\n"
13
12
  "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
14
- "Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/)\n"
13
+ "Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
14
+ ")\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -22,23 +22,19 @@ msgstr ""
22
22
  msgid "List all discovered hosts"
23
23
  msgstr "すべての検出されたホストを一覧表示"
24
24
 
25
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
26
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
25
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
27
26
  msgid "filter results"
28
27
  msgstr "結果のフィルター"
29
28
 
30
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
31
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
29
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
32
30
  msgid "sort results"
33
31
  msgstr "結果のソート"
34
32
 
35
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
36
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
33
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
37
34
  msgid "paginate results"
38
35
  msgstr "結果のページネーション"
39
36
 
40
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
41
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
37
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
42
38
  msgid "number of entries per request"
43
39
  msgstr "要求ごとのエントリー数"
44
40
 
@@ -46,8 +42,7 @@ msgstr "要求ごとのエントリー数"
46
42
  msgid "Show a discovered host"
47
43
  msgstr "検出されたホストの表示"
48
44
 
49
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
50
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
45
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:79
51
46
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
52
47
  msgstr "DHCP ファイル名オプション (デフォルトでは Grub2 または PXELinux)"
53
48
 
@@ -68,14 +63,11 @@ msgid "not required if it's a virtual machine"
68
63
  msgstr "仮想マシンの場合は不要です"
69
64
 
70
65
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
71
- msgid ""
72
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
66
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
73
67
  msgstr "オーケストレーションタスクの状態を追跡するための UUID。GET /api/orchestration/:UUID/tasks"
74
68
 
75
69
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
76
- msgid ""
77
- "required if value is not inherited from host group or default password in "
78
- "settings"
70
+ msgid "required if value is not inherited from host group or default password in settings"
79
71
  msgstr "値がホストグループから継承されていないか、または設定済みのデフォルトパスワードである場合に必須です。"
80
72
 
81
73
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
@@ -87,62 +79,54 @@ msgid "Upload facts for a host, creating the host if required"
87
79
  msgstr "ホストのファクトをアップロードし、必要な場合はホストを作成します"
88
80
 
89
81
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
90
- msgid ""
91
- "hash containing facts for the host with minimum set of facts: "
92
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
93
- "eth0 (example in case primary interface is named eth0)"
82
+ 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)"
94
83
  msgstr "ファクトの最小セットが設定されたホストのファクトを含むハッシュ : discovery_bootif、macaddress_eth0、ipaddress、ipaddress_eth0、 interfaces: eth0 (プライマリーインターフェースの名前が eth0 の場合の例)"
95
84
 
96
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:117
85
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
97
86
  msgid "Execute rules against a discovered host"
98
87
  msgstr "検出されたホストに対するルールの実行"
99
88
 
100
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:123
101
- #: ../app/controllers/discovered_hosts_controller.rb:150
89
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
102
90
  msgid "Host %{host} was provisioned with rule %{rule}"
103
91
  msgstr "ホスト %{host} がルール %{rule} でプロビジョニングされています"
104
92
 
105
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:126
93
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
106
94
  msgid "Unable to provision %{host}: %{errors}"
107
95
  msgstr "%{host} をプロビジョニングできません: %{errors}"
108
96
 
109
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:132
110
- #: ../app/controllers/discovered_hosts_controller.rb:157
97
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
111
98
  msgid "No rule found for host %s"
112
99
  msgstr "ホスト %s に対するルールは見つかりません"
113
100
 
114
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
101
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
115
102
  msgid "Execute rules against all currently discovered hosts"
116
103
  msgstr "現在検出されているすべてのホストに対するルールの実行"
117
104
 
118
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:143
119
- #: ../app/controllers/discovered_hosts_controller.rb:163
105
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
120
106
  msgid "Errors during auto provisioning: %s"
121
107
  msgstr "自動プロビジョニング時のエラー: %s"
122
108
 
123
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:146
124
- #: ../app/controllers/discovered_hosts_controller.rb:166
109
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
125
110
  msgid "No discovered hosts to provision"
126
111
  msgstr "プロビジョニングする検出されたホストがありません"
127
112
 
128
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:168
113
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
129
114
  msgid "%s discovered hosts were provisioned"
130
115
  msgstr "%s 検出されたホストがプロビジョニングされました"
131
116
 
132
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:179
117
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
133
118
  msgid "Refreshing the facts of a discovered host"
134
119
  msgstr "検出されたホストのファクトの更新中"
135
120
 
136
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:188
121
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
137
122
  msgid "Rebooting a discovered host"
138
123
  msgstr "検出されたホストの再起動中"
139
124
 
140
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:197
125
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
141
126
  msgid "Rebooting all discovered hosts"
142
127
  msgstr "すべての検出されたホストの再起動中"
143
128
 
144
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:208
145
- #: ../app/controllers/discovered_hosts_controller.rb:125
129
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
146
130
  msgid "Discovered hosts are rebooting now"
147
131
  msgstr "検出されたホストの再起動中"
148
132
 
@@ -167,8 +151,7 @@ msgid "the hostgroup that is used to auto provision a host"
167
151
  msgstr "ホストの自動プロビジョニングに使用されるホストグループ"
168
152
 
169
153
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
170
- msgid ""
171
- "defines a pattern to assign human-readable hostnames to the matching hosts"
154
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
172
155
  msgstr "人が判読できるホスト名を一致するホストに割り当てるパターンの定義"
173
156
 
174
157
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -176,8 +159,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
176
159
  msgstr "ルール別のプロビジョニングされたホストの最大数の制限を許可"
177
160
 
178
161
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
179
- msgid ""
180
- "puts the rules in order, low numbers go first. Must be greater then zero"
162
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
181
163
  msgstr "ルールを低い数字の順に配置。ゼロより大きい値である必要があります。"
182
164
 
183
165
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -224,95 +206,95 @@ msgstr "再起動時のエラー: %s"
224
206
  msgid "No discovered hosts to reboot"
225
207
  msgstr "再起動する検出されたホストがありません"
226
208
 
227
- #: ../app/controllers/discovered_hosts_controller.rb:61
209
+ #: ../app/controllers/discovered_hosts_controller.rb:63
228
210
  msgid "Successfully provisioned %s"
229
211
  msgstr "%s が正常にプロビジョニングされました"
230
212
 
231
- #: ../app/controllers/discovered_hosts_controller.rb:93
213
+ #: ../app/controllers/discovered_hosts_controller.rb:96
232
214
  msgid "Facts refreshed for %s"
233
215
  msgstr "%s について更新されたファクト"
234
216
 
235
- #: ../app/controllers/discovered_hosts_controller.rb:95
217
+ #: ../app/controllers/discovered_hosts_controller.rb:98
236
218
  msgid "Failed to refresh facts for %s"
237
219
  msgstr "%s のファクトの更新に失敗しました"
238
220
 
239
- #: ../app/controllers/discovered_hosts_controller.rb:98
221
+ #: ../app/controllers/discovered_hosts_controller.rb:101
240
222
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
241
223
  msgstr "%{hostname} のファクトの更新に失敗し、エラー %{error_message} が発生しました"
242
224
 
243
- #: ../app/controllers/discovered_hosts_controller.rb:105
225
+ #: ../app/controllers/discovered_hosts_controller.rb:108
244
226
  msgid "Host of type %s can not be rebooted"
245
227
  msgstr "タイプ %s のホストを再起動できません"
246
228
 
247
- #: ../app/controllers/discovered_hosts_controller.rb:109
229
+ #: ../app/controllers/discovered_hosts_controller.rb:112
248
230
  msgid "Rebooting host %s"
249
231
  msgstr "ホスト %s の再起動中"
250
232
 
251
- #: ../app/controllers/discovered_hosts_controller.rb:111
233
+ #: ../app/controllers/discovered_hosts_controller.rb:114
252
234
  msgid "Failed to reboot host %s"
253
235
  msgstr "ホスト %s の再起動に失敗しました"
254
236
 
255
- #: ../app/controllers/discovered_hosts_controller.rb:114
237
+ #: ../app/controllers/discovered_hosts_controller.rb:117
256
238
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
257
239
  msgstr "ホスト %{hostname} の再起動に失敗し、エラー %{error_message} が発生しました"
258
240
 
259
- #: ../app/controllers/discovered_hosts_controller.rb:128
241
+ #: ../app/controllers/discovered_hosts_controller.rb:131
260
242
  msgid "Failed to reboot hosts with error %s"
261
243
  msgstr "ホストの再起動に失敗し、エラー %s が発生しました"
262
244
 
263
- #: ../app/controllers/discovered_hosts_controller.rb:140
245
+ #: ../app/controllers/discovered_hosts_controller.rb:149
264
246
  msgid "Destroyed selected hosts"
265
247
  msgstr "破棄された選択済みホスト"
266
248
 
267
- #: ../app/controllers/discovered_hosts_controller.rb:142
249
+ #: ../app/controllers/discovered_hosts_controller.rb:151
268
250
  msgid "The following hosts were not deleted: %s"
269
251
  msgstr "次のホストが削除されました: %s"
270
252
 
271
- #: ../app/controllers/discovered_hosts_controller.rb:154
253
+ #: ../app/controllers/discovered_hosts_controller.rb:163
272
254
  msgid "Failed to auto provision host %s: %s"
273
255
  msgstr "ホスト %s の自動プロビジョニングに失敗しました: %s"
274
256
 
275
- #: ../app/controllers/discovered_hosts_controller.rb:182
257
+ #: ../app/controllers/discovered_hosts_controller.rb:191
276
258
  msgid "Discovered hosts are provisioning now"
277
259
  msgstr "検出されたホストのプロビジョニング中"
278
260
 
279
- #: ../app/controllers/discovered_hosts_controller.rb:214
261
+ #: ../app/controllers/discovered_hosts_controller.rb:223
280
262
  msgid "Highlights"
281
263
  msgstr "ハイライト"
282
264
 
283
- #: ../app/controllers/discovered_hosts_controller.rb:214
265
+ #: ../app/controllers/discovered_hosts_controller.rb:223
284
266
  msgid "Storage"
285
267
  msgstr "ストレージ"
286
268
 
287
- #: ../app/controllers/discovered_hosts_controller.rb:214
269
+ #: ../app/controllers/discovered_hosts_controller.rb:223
288
270
  msgid "Hardware"
289
271
  msgstr "ハードウェア"
290
272
 
291
- #: ../app/controllers/discovered_hosts_controller.rb:214
273
+ #: ../app/controllers/discovered_hosts_controller.rb:223
292
274
  msgid "Network"
293
275
  msgstr "ネットワーク"
294
276
 
295
- #: ../app/controllers/discovered_hosts_controller.rb:214
277
+ #: ../app/controllers/discovered_hosts_controller.rb:223
296
278
  msgid "Software"
297
279
  msgstr "ソフトウェア"
298
280
 
299
- #: ../app/controllers/discovered_hosts_controller.rb:214
281
+ #: ../app/controllers/discovered_hosts_controller.rb:223
300
282
  msgid "IPMI"
301
283
  msgstr "IPMI"
302
284
 
303
- #: ../app/controllers/discovered_hosts_controller.rb:214
285
+ #: ../app/controllers/discovered_hosts_controller.rb:223
304
286
  msgid "Miscellaneous"
305
287
  msgstr "その他"
306
288
 
307
- #: ../app/controllers/discovered_hosts_controller.rb:291
289
+ #: ../app/controllers/discovered_hosts_controller.rb:301
308
290
  msgid "No hosts were found with that id or name"
309
291
  msgstr "該当する ID または名前のホストが見つかりませんでした"
310
292
 
311
- #: ../app/controllers/discovered_hosts_controller.rb:295
293
+ #: ../app/controllers/discovered_hosts_controller.rb:305
312
294
  msgid "No hosts selected"
313
295
  msgstr "ホストが選択されていません"
314
296
 
315
- #: ../app/controllers/discovered_hosts_controller.rb:301
297
+ #: ../app/controllers/discovered_hosts_controller.rb:311
316
298
  msgid "Something went wrong while selecting hosts - %s"
317
299
  msgstr "ホストの選択中に問題が発生しました - %s"
318
300
 
@@ -328,19 +310,15 @@ msgstr "無効にされたルール"
328
310
  msgid "%s ago"
329
311
  msgstr "%s 前"
330
312
 
331
- #: ../app/helpers/discovered_hosts_helper.rb:14
332
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
313
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
333
314
  msgid "Auto Provision"
334
315
  msgstr "自動プロビジョニング"
335
316
 
336
- #: ../app/helpers/discovered_hosts_helper.rb:15
337
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
317
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
338
318
  msgid "Refresh facts"
339
319
  msgstr "ファクトの更新"
340
320
 
341
- #: ../app/helpers/discovered_hosts_helper.rb:16
342
- #: ../app/models/setting/discovered.rb:23
343
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
321
+ #: ../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
344
322
  msgid "Reboot"
345
323
  msgstr "再起動"
346
324
 
@@ -348,62 +326,51 @@ msgstr "再起動"
348
326
  msgid "Back"
349
327
  msgstr "戻る"
350
328
 
351
- #: ../app/helpers/discovered_hosts_helper.rb:21
352
- #: ../app/helpers/discovered_hosts_helper.rb:37
329
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
353
330
  msgid "Select Action"
354
331
  msgstr "アクションの選択"
355
332
 
356
- #: ../app/helpers/discovered_hosts_helper.rb:23
357
- msgid "Expand All"
358
- msgstr "すべて展開"
359
-
360
- #: ../app/helpers/discovered_hosts_helper.rb:27
361
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
333
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
362
334
  msgid "Delete %s?"
363
335
  msgstr "%s を削除しますか?"
364
336
 
365
- #: ../app/helpers/discovered_hosts_helper.rb:33
366
- msgid "Delete hosts"
367
- msgstr "ホストの削除"
368
-
369
- #: ../app/helpers/discovered_hosts_helper.rb:34
337
+ #: ../app/helpers/discovered_hosts_helper.rb:31
370
338
  msgid "Assign Organization"
371
339
  msgstr "組織の割り当て"
372
340
 
373
- #: ../app/helpers/discovered_hosts_helper.rb:35
341
+ #: ../app/helpers/discovered_hosts_helper.rb:32
374
342
  msgid "Assign Location"
375
343
  msgstr "場所の割り当て"
376
344
 
377
- #: ../app/helpers/discovered_hosts_helper.rb:39
345
+ #: ../app/helpers/discovered_hosts_helper.rb:33
346
+ msgid "Delete"
347
+ msgstr ""
348
+
349
+ #: ../app/helpers/discovered_hosts_helper.rb:37
378
350
  msgid "%s - The following hosts are about to be changed"
379
351
  msgstr "%s - 以下のホストはすぐに変更されます"
380
352
 
381
- #: ../app/helpers/discovered_hosts_helper.rb:48
382
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
353
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
383
354
  msgid "N/A"
384
355
  msgstr "該当なし"
385
356
 
386
- #: ../app/helpers/discovered_hosts_helper.rb:60
357
+ #: ../app/helpers/discovered_hosts_helper.rb:58
387
358
  msgid "New in the last 24 hours"
388
359
  msgstr "過去 24 時間以内の新規"
389
360
 
390
- #: ../app/helpers/discovered_hosts_helper.rb:64
361
+ #: ../app/helpers/discovered_hosts_helper.rb:62
391
362
  msgid "Not reported in more than 7 days"
392
363
  msgstr "8 日以上報告なし"
393
364
 
394
- #: ../app/helpers/discovered_hosts_helper.rb:68
365
+ #: ../app/helpers/discovered_hosts_helper.rb:66
395
366
  msgid "Reported in the last 7 days"
396
367
  msgstr "過去 7 日以内に報告あり"
397
368
 
398
- #: ../app/helpers/discovered_hosts_helper.rb:92
369
+ #: ../app/helpers/discovered_hosts_helper.rb:90
399
370
  msgid "Provision"
400
371
  msgstr "プロビジョニング"
401
372
 
402
- #: ../app/helpers/discovery_rules_helper.rb:26
403
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2
404
- #: ../app/views/discovered_hosts/welcome.html.erb:1
405
- #: ../app/views/discovered_hosts/welcome.html.erb:6
406
- #: ../lib/foreman_discovery/engine.rb:166
373
+ #: ../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
407
374
  msgid "Discovered Hosts"
408
375
  msgstr "検出されたホスト"
409
376
 
@@ -439,64 +406,57 @@ msgstr "メールが有効にされたユーザーを指定する必要があり
439
406
  msgid "Discovered hosts summary"
440
407
  msgstr "検出されたホストの概要"
441
408
 
442
- #: ../app/models/discovery_rule.rb:9
409
+ #: ../app/models/discovery_rule.rb:10
443
410
  msgid "can't contain white spaces."
444
411
  msgstr "空白を含めることができません。"
445
412
 
446
- #: ../app/models/discovery_rule.rb:11
413
+ #: ../app/models/discovery_rule.rb:12
447
414
  msgid "must start with a letter or ERB."
448
415
  msgstr "文字または ERB で開始する必要があります。"
449
416
 
450
- #: ../app/models/discovery_rule.rb:45
451
- msgid ""
452
- "Host group organization %s must also be associated to the discovery rule"
453
- msgid_plural ""
454
- "Host group organizations %s must also be associated to the discovery rule"
417
+ #: ../app/models/discovery_rule.rb:15
418
+ msgid "must be present."
419
+ msgstr ""
420
+
421
+ #: ../app/models/discovery_rule.rb:48
422
+ msgid "Host group organization %s must also be associated to the discovery rule"
423
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
455
424
  msgstr[0] "ホストグループ組織 %s も検出ルールに関連付ける必要があります"
456
425
 
457
- #: ../app/models/discovery_rule.rb:51
426
+ #: ../app/models/discovery_rule.rb:54
458
427
  msgid "Host group location %s must also be associated to the discovery rule"
459
- msgid_plural ""
460
- "Host group locations %s must also be associated to the discovery rule"
428
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
461
429
  msgstr[0] "ホストグループの場所 %s も検出ルールに関連付ける必要があります"
462
430
 
463
- #: ../app/models/host/discovered.rb:37
431
+ #: ../app/models/host/discovered.rb:51
464
432
  msgid "Invalid facts, must be a Hash"
465
433
  msgstr "無効なファクトです。ハッシュである必要があります。"
466
434
 
467
- #: ../app/models/host/discovered.rb:42
468
- msgid ""
469
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
470
- "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"
471
437
  msgstr "予測された discovery_fact '%s' がありません。プライマリーインターフェースを検出したり、ホスト名を設定したりできません"
472
438
 
473
- #: ../app/models/host/discovered.rb:49
474
- msgid ""
475
- "Invalid facts: hash does not contain a valid value for any of the facts in "
476
- "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"
477
441
  msgstr "無効なファクト: ハッシュには discovery_hostname 設定のファクトのいずれの有効な値も含まれていません: %s"
478
442
 
479
- #: ../app/models/host/discovered.rb:66
443
+ #: ../app/models/host/discovered.rb:89
480
444
  msgid "Facts could not be imported"
481
445
  msgstr "ファクトをインポートできませんでした"
482
446
 
483
- #: ../app/models/host/discovered.rb:133
484
- msgid "Unable to assign subnet, primary interface is missing IP address"
485
- msgstr "サブネットを割り当てることができません。プライマリーインターフェースには IP アドレスがありません"
486
-
487
- #: ../app/models/host/discovered.rb:190
447
+ #: ../app/models/host/discovered.rb:212
488
448
  msgid "Could not get facts from proxy %{url}: %{error}"
489
449
  msgstr "プロキシー %{url} からファクトを取得できませんでした: %{error}"
490
450
 
491
- #: ../app/models/host/discovered.rb:198
451
+ #: ../app/models/host/discovered.rb:220
492
452
  msgid "Unable to reboot %{name} via %{url}: %{msg}"
493
453
  msgstr "%{url} から %{name} を再起動できません: %{msg}"
494
454
 
495
- #: ../app/models/host/discovered.rb:206
455
+ #: ../app/models/host/discovered.rb:228
496
456
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
497
457
  msgstr "%{url} から kexec を %{name} に対して実行できません: %{msg}"
498
458
 
499
- #: ../app/models/host/discovered.rb:225
459
+ #: ../app/models/host/discovered.rb:247
500
460
  msgid "Invalid hostname: Could not normalize the hostname"
501
461
  msgstr "無効なホスト名: ホスト名を正規化できませんでした"
502
462
 
@@ -549,9 +509,7 @@ msgid "Hostname facts"
549
509
  msgstr "ホスト名ファクト"
550
510
 
551
511
  #: ../app/models/setting/discovered.rb:22
552
- msgid ""
553
- "Automatically provision newly discovered hosts, according to the "
554
- "provisioning rules"
512
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
555
513
  msgstr "プロビジョニングルールに基づく新たに検出されたホストの自動プロビジョニング"
556
514
 
557
515
  #: ../app/models/setting/discovered.rb:22
@@ -627,9 +585,7 @@ msgid "IPMI facts"
627
585
  msgstr "IPMI ファクト"
628
586
 
629
587
  #: ../app/models/setting/discovered.rb:32
630
- msgid ""
631
- "Automatically generate PXE configuration to pin a newly discovered host to "
632
- "discovery"
588
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
633
589
  msgstr "新規に検出されたホストを検出に固定するための PXE 設定の自動生成"
634
590
 
635
591
  #: ../app/models/setting/discovered.rb:32
@@ -668,27 +624,41 @@ msgstr "検出されたホストのプロビジョニング時の DNS エント
668
624
  msgid "Force DNS"
669
625
  msgstr "DNS の強制的な実行"
670
626
 
671
- #: ../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
672
636
  msgid "The default location to place discovered hosts in"
673
637
  msgstr "検出されたホストを配置するデフォルトの場所"
674
638
 
675
- #: ../app/models/setting/discovered.rb:43
639
+ #: ../app/models/setting/discovered.rb:44
676
640
  msgid "Discovery location"
677
641
  msgstr "検出ロケーション"
678
642
 
679
- #: ../app/models/setting/discovered.rb:51
643
+ #: ../app/models/setting/discovered.rb:52
680
644
  msgid "The default organization to place discovered hosts in"
681
645
  msgstr "検出されたホストを配置するデフォルトの組織"
682
646
 
683
- #: ../app/models/setting/discovered.rb:51
647
+ #: ../app/models/setting/discovered.rb:52
684
648
  msgid "Discovery organization"
685
649
  msgstr "検出組織"
686
650
 
687
- #: ../app/services/foreman_discovery/fact_parser.rb:9
688
- msgid ""
689
- "Unable to detect primary interface using MAC '%{mac}' specified by "
690
- "discovery_fact '%{fact}'"
691
- 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 ""
692
662
 
693
663
  #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
694
664
  msgid "Image API returned HTTP/%{code} with '%{body}"
@@ -706,25 +676,15 @@ msgstr "検出されたホストがありません"
706
676
  msgid "Host"
707
677
  msgstr "ホスト"
708
678
 
709
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
710
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
711
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
712
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
713
- #: ../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
714
680
  msgid "Model"
715
681
  msgstr "モデル"
716
682
 
717
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
718
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
719
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
720
- #: ../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
721
684
  msgid "CPUs"
722
685
  msgstr "CPU"
723
686
 
724
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
725
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
726
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
727
- #: ../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
728
688
  msgid "Memory"
729
689
  msgstr "メモリー"
730
690
 
@@ -744,16 +704,11 @@ msgstr "このページのすべての項目を選択"
744
704
  msgid "items selected. Uncheck to Clear"
745
705
  msgstr "項目が選択されています。クリアするにはチェックを解除してください"
746
706
 
747
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
748
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
749
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
750
- #: ../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
751
708
  msgid "Name"
752
709
  msgstr "名前"
753
710
 
754
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
755
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
756
- #: ../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
757
712
  msgid "IP Address"
758
713
  msgstr "IP アドレス"
759
714
 
@@ -765,13 +720,11 @@ msgstr "ディスク数"
765
720
  msgid "Disks Size"
766
721
  msgstr "ディスクサイズ"
767
722
 
768
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
769
- #: ../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
770
724
  msgid "Location"
771
725
  msgstr "場所"
772
726
 
773
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
774
- #: ../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
775
728
  msgid "Organization"
776
729
  msgstr "組織"
777
730
 
@@ -799,18 +752,8 @@ msgstr "送信"
799
752
  msgid "Provision %s"
800
753
  msgstr "%s のプロビジョニング"
801
754
 
802
- #: ../app/views/discovered_hosts/index.html.erb:2
803
- msgid "Reboot All"
804
- msgstr "すべてを再起動"
805
-
806
- #: ../app/views/discovered_hosts/index.html.erb:3
807
- msgid "Auto Provision All"
808
- msgstr "すべてを自動プロビジョニング"
809
-
810
755
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
811
- msgid ""
812
- "This might take a while, as all hosts, facts and reports will be destroyed "
813
- "as well"
756
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
814
757
  msgstr "ホスト、ファクト、およびレポートもすべて破棄されるため、時間がかかる場合があります。"
815
758
 
816
759
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -825,34 +768,36 @@ msgstr "組織の選択"
825
768
  msgid "Discovered host: %s"
826
769
  msgstr "検出されたホスト: %s"
827
770
 
828
- #: ../app/views/discovered_hosts/show.html.erb:34
771
+ #: ../app/views/discovered_hosts/show.html.erb:37
829
772
  msgid "Interfaces"
830
773
  msgstr "インターフェース"
831
774
 
832
- #: ../app/views/discovered_hosts/show.html.erb:41
775
+ #: ../app/views/discovered_hosts/show.html.erb:44
833
776
  msgid "Type"
834
777
  msgstr "タイプ"
835
778
 
836
- #: ../app/views/discovered_hosts/show.html.erb:42
779
+ #: ../app/views/discovered_hosts/show.html.erb:45
837
780
  msgid "Identifier"
838
781
  msgstr "識別子"
839
782
 
840
- #: ../app/views/discovered_hosts/show.html.erb:43
783
+ #: ../app/views/discovered_hosts/show.html.erb:46
841
784
  msgid "MAC address"
842
785
  msgstr "MAC アドレス"
843
786
 
844
- #: ../app/views/discovered_hosts/show.html.erb:44
787
+ #: ../app/views/discovered_hosts/show.html.erb:47
845
788
  msgid "IP address"
846
789
  msgstr "IP アドレス"
847
790
 
791
+ #: ../app/views/discovered_hosts/show.html.erb:66
792
+ msgid "Collapse All"
793
+ msgstr ""
794
+
848
795
  #: ../app/views/discovered_hosts/welcome.html.erb:7
849
796
  msgid "No discovered hosts found in this context."
850
797
  msgstr ""
851
798
 
852
799
  #: ../app/views/discovered_hosts/welcome.html.erb:8
853
- msgid ""
854
- "This page shows discovered bare-metal or virtual nodes waiting to be "
855
- "provisioned."
800
+ msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
856
801
  msgstr ""
857
802
 
858
803
  #: ../app/views/discovered_hosts/welcome.html.erb:9
@@ -867,23 +812,19 @@ msgstr "Foreman の検出されたホストの概要レポート"
867
812
  msgid "<b>Foreman</b> Discovered hosts summary"
868
813
  msgstr "<b>Foreman</b> の検出されたホストの概要"
869
814
 
870
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
871
- #: ../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
872
816
  msgid "Summary from %{time} ago to %{now}"
873
817
  msgstr "%{time} から %{now} までの概要"
874
818
 
875
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
876
- #: ../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
877
820
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
878
821
  msgstr "Foreman サーバーの検出されたホスト: %{foreman_url}"
879
822
 
880
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
881
- #: ../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
882
824
  msgid "Disk count"
883
825
  msgstr "ディスク数"
884
826
 
885
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
886
- #: ../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
887
828
  msgid "Disks size"
888
829
  msgstr "ディスク容量"
889
830
 
@@ -932,38 +873,28 @@ msgid "Rule priority (lower integer means higher priority)"
932
873
  msgstr "ルールの優先順位 (整数の低い値は高い優先順位を意味します)"
933
874
 
934
875
  #: ../app/views/discovery_rules/_template_inline.erb:2
935
- msgid ""
936
- "Specify target hostname template pattern in the same syntax as in "
937
- "Provisioning Templates (ERB)."
876
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
938
877
  msgstr "プロビジョニングテンプレート (ERB) と同じ構文のターゲットホスト名テンプレートのパターンを指定します。"
939
878
 
940
879
  #: ../app/views/discovery_rules/_template_inline.erb:4
941
- msgid ""
942
- "Domain will be appended automatically. A hostname based on MAC address will "
943
- "be used when left blank."
880
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
944
881
  msgstr "ドメインは自動的に追加されます。空白のままの場合には、MAC アドレスに基づくホスト名が使用されます。"
945
882
 
946
883
  #: ../app/views/discovery_rules/_template_inline.erb:5
947
- msgid ""
948
- "In addition to @host attribute function rand for random integers is "
949
- "available. Examples:"
884
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
950
885
  msgstr "@host 属性のほかに、ランダムな整数の rand 関数を利用できます。例:"
951
886
 
952
887
  #: ../app/views/discovery_rules/_template_inline.erb:8
953
- msgid ""
954
- "When creating hostname patterns, make sure the resulting host names are "
955
- "unique."
888
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
956
889
  msgstr "ホスト名パターンの作成時に、生成されるホスト名が固有であることを確認します。"
957
890
 
958
891
  #: ../app/views/discovery_rules/_template_inline.erb:9
959
- msgid ""
960
- "Hostnames must not start with numbers. A good approach is to use unique "
961
- "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)."
962
893
  msgstr "ホスト名は数字で開始することができません。facter で提供される固有の情報 (MAC アドレス、BIOS またはシリアル ID) を使用することが適切な方法です。"
963
894
 
964
895
  #: ../app/views/discovery_rules/edit.html.erb:1
965
- msgid "Edit Discovery Rule"
966
- msgstr "検出ルールの編集"
896
+ msgid "Edit %s"
897
+ msgstr ""
967
898
 
968
899
  #: ../app/views/discovery_rules/index.html.erb:1
969
900
  msgid "Discovery Rules"
@@ -1017,30 +948,26 @@ msgstr "1 つ以上のホストが検出されました"
1017
948
  msgid "Details"
1018
949
  msgstr "詳細"
1019
950
 
1020
- #: ../lib/foreman_discovery/engine.rb:151
951
+ #: ../lib/foreman_discovery/engine.rb:158
1021
952
  msgid "Discovered hosts"
1022
953
  msgstr "検出されたホスト"
1023
954
 
1024
- #: ../lib/foreman_discovery/engine.rb:156
955
+ #: ../lib/foreman_discovery/engine.rb:163
1025
956
  msgid "Discovery rules"
1026
957
  msgstr "検出ルール"
1027
958
 
1028
- #: ../lib/foreman_discovery/engine.rb:172
959
+ #: ../lib/foreman_discovery/engine.rb:179
1029
960
  msgid "Discovery Kexec template"
1030
961
  msgstr "検出 Kexec テンプレート"
1031
962
 
1032
- #: ../lib/foreman_discovery/engine.rb:181
963
+ #: ../lib/foreman_discovery/engine.rb:188
1033
964
  msgid "Discovery Proxy"
1034
965
  msgstr "検出プロキシー"
1035
966
 
1036
- #: ../lib/foreman_discovery/engine.rb:182
1037
- msgid ""
1038
- "Discovery Proxy to use within this subnet for managing connection to "
1039
- "discovered hosts"
967
+ #: ../lib/foreman_discovery/engine.rb:189
968
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1040
969
  msgstr "検出されたホストへの接続を管理するためにこのサブネット内で使用する検出プロキシー"
1041
970
 
1042
- #: ../lib/foreman_discovery/engine.rb:183
1043
- msgid ""
1044
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1045
- "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"
1046
973
  msgstr "検出されたホストへの接続を管理するためにこのサブネット内で使用する検出プロキシーの ID"