foreman_discovery 15.1.0 → 16.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +10 -3
  3. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -1
  4. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +4 -0
  5. data/app/controllers/discovered_hosts_controller.rb +1 -0
  6. data/app/controllers/discovery_rules_controller.rb +1 -1
  7. data/app/models/discovery_rule.rb +1 -1
  8. data/app/models/host/discovered.rb +39 -17
  9. data/app/models/host/managed_extensions.rb +2 -2
  10. data/app/models/setting/discovered.rb +26 -33
  11. data/app/services/foreman_discovery/fact_parser.rb +1 -1
  12. data/app/services/foreman_discovery/host_converter.rb +38 -2
  13. data/app/services/foreman_discovery/import_hooks/subnet_and_taxonomy.rb +6 -14
  14. data/app/services/foreman_discovery/node_api/node_resource.rb +1 -0
  15. data/app/services/foreman_discovery/subnet_suggestion.rb +26 -0
  16. data/app/views/discovered_hosts/_discovered_host_modal.html.erb +2 -0
  17. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  18. data/config/routes.rb +2 -0
  19. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +1 -1
  20. data/db/migrate/20151023144501_regenerate_red_hat_kexec.rb +1 -1
  21. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +1 -1
  22. data/extra/discover-host +21 -7
  23. data/lib/foreman_discovery/engine.rb +4 -4
  24. data/lib/foreman_discovery/version.rb +1 -1
  25. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  26. data/locale/ca/foreman_discovery.edit.po +226 -263
  27. data/locale/ca/foreman_discovery.po +28 -8
  28. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  29. data/locale/de/foreman_discovery.edit.po +229 -265
  30. data/locale/de/foreman_discovery.po +31 -11
  31. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  32. data/locale/en/foreman_discovery.edit.po +169 -119
  33. data/locale/en/foreman_discovery.po +24 -4
  34. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/en_GB/foreman_discovery.edit.po +237 -266
  36. data/locale/en_GB/foreman_discovery.po +31 -11
  37. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  38. data/locale/es/foreman_discovery.edit.po +236 -265
  39. data/locale/es/foreman_discovery.po +30 -10
  40. data/locale/foreman_discovery.pot +110 -84
  41. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  42. data/locale/fr/foreman_discovery.edit.po +230 -262
  43. data/locale/fr/foreman_discovery.po +28 -8
  44. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  45. data/locale/gl/foreman_discovery.edit.po +221 -261
  46. data/locale/gl/foreman_discovery.po +26 -6
  47. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/it/foreman_discovery.edit.po +221 -261
  49. data/locale/it/foreman_discovery.po +26 -6
  50. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  51. data/locale/ja/foreman_discovery.edit.po +235 -264
  52. data/locale/ja/foreman_discovery.po +29 -9
  53. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  54. data/locale/ko/foreman_discovery.edit.po +223 -262
  55. data/locale/ko/foreman_discovery.po +28 -8
  56. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  57. data/locale/pt_BR/foreman_discovery.edit.po +233 -264
  58. data/locale/pt_BR/foreman_discovery.po +29 -9
  59. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  60. data/locale/ru/foreman_discovery.edit.po +227 -265
  61. data/locale/ru/foreman_discovery.po +29 -9
  62. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  63. data/locale/sv_SE/foreman_discovery.edit.po +222 -262
  64. data/locale/sv_SE/foreman_discovery.po +27 -7
  65. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  66. data/locale/zh_CN/foreman_discovery.edit.po +234 -263
  67. data/locale/zh_CN/foreman_discovery.po +28 -8
  68. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  69. data/locale/zh_TW/foreman_discovery.edit.po +223 -261
  70. data/locale/zh_TW/foreman_discovery.po +26 -6
  71. data/test/facts/bond0-eth0-eth1-active-passive.json +128 -0
  72. data/test/facts/facts_with_lldp_bond_candidate.json +2 -9
  73. data/test/functional/api/v2/discovered_hosts_controller_test.rb +1 -0
  74. data/test/functional/discovered_hosts_controller_test.rb +15 -6
  75. data/test/integration/discovered_hosts_test.rb +1 -0
  76. data/test/test_helper_discovery.rb +12 -0
  77. data/test/unit/discovered_extensions_test.rb +54 -0
  78. data/test/unit/discovery_attribute_set_test.rb +1 -0
  79. data/test/unit/discovery_rule_test.rb +1 -0
  80. data/test/unit/host_discovered_test.rb +32 -13
  81. data/test/unit/managed_extensions_test.rb +2 -0
  82. metadata +36 -31
@@ -4,16 +4,16 @@
4
4
  #
5
5
  # Translators:
6
6
  # Denis Denis <stereodenis@gmail.com>, 2014
7
- # Dominic Cleal <dominic@cleal.org>, 2014
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2014
8
8
  # Denis Denis <stereodenis@gmail.com>, 2014
9
9
  # Vladimir Pavlov <v.pavlov@i-teco.ru>, 2015
10
10
  # Yulia <yulia.poyarkova@redhat.com>, 2016
11
11
  msgid ""
12
12
  msgstr ""
13
- "Project-Id-Version: foreman_discovery 15.0.0\n"
13
+ "Project-Id-Version: foreman_discovery 16.0.1\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "PO-Revision-Date: 2019-04-18 19:36+0000\n"
16
- "Last-Translator: Lukáš Zapletal\n"
15
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
16
+ "Last-Translator: Transifex Bot <>\n"
17
17
  "Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
18
18
  "\n"
19
19
  "MIME-Version: 1.0\n"
@@ -39,6 +39,9 @@ msgstr "Сводка обнаруженных узлов от <b>Foreman</b>"
39
39
  msgid "A summary of discovered hosts"
40
40
  msgstr "Сводка состояния обнаруженных узлов"
41
41
 
42
+ msgid "Action with sub plans"
43
+ msgstr ""
44
+
42
45
  msgid "Actions"
43
46
  msgstr "Действия"
44
47
 
@@ -141,6 +144,11 @@ msgstr "Отключить"
141
144
  msgid "Disable rule '%s'?"
142
145
  msgstr "Отключить правило «%s»?"
143
146
 
147
+ msgid "Discovered Host"
148
+ msgid_plural "Discovered Hosts"
149
+ msgstr[0] ""
150
+ msgstr[1] ""
151
+
144
152
  msgid "Discovered Hosts"
145
153
  msgstr "Обнаруженные узлы"
146
154
 
@@ -356,6 +364,9 @@ msgstr "IP"
356
364
  msgid "IP address"
357
365
  msgstr "IP-адрес"
358
366
 
367
+ msgid "IPAM must be configured for subnet '%s'"
368
+ msgstr ""
369
+
359
370
  msgid "IPMI"
360
371
  msgstr "IPMI"
361
372
 
@@ -371,6 +382,12 @@ msgstr "API образа вернул ошибку HTTP/%{code}: %{msg} (body: %
371
382
  msgid "Image API returned HTTP/%{code} with '%{body}"
372
383
  msgstr "API образа вернул ошибку HTTP/%{code}: '%{body}"
373
384
 
385
+ msgid "Import Puppet classes"
386
+ msgstr ""
387
+
388
+ msgid "Import facts"
389
+ msgstr ""
390
+
374
391
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
375
392
  msgstr ""
376
393
 
@@ -587,6 +604,9 @@ msgstr "Регулярное выражение для организации ф
587
604
  msgid "Reloading kernel on %s"
588
605
  msgstr "Перезагрузка ядра на %s"
589
606
 
607
+ msgid "Remote action:"
608
+ msgstr ""
609
+
590
610
  msgid "Reported in the last 7 days"
591
611
  msgstr "Были данные за последние 7 дней"
592
612
 
@@ -686,15 +706,15 @@ msgstr "Не удалось найти правило: необходимо ук
686
706
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
687
707
  msgstr ""
688
708
 
689
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
690
- msgstr "Не удалось выполнить kexec на %{name} с %{url}: %{msg}"
709
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
710
+ msgstr ""
711
+
712
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
713
+ msgstr ""
691
714
 
692
715
  msgid "Unable to provision %{host}: %{errors}"
693
716
  msgstr "Не удалось подготовить %{host}: %{errors}"
694
717
 
695
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
696
- msgstr "Не удалось перезагрузить %{name} с %{url}: %{msg}"
697
-
698
718
  msgid "Update a rule"
699
719
  msgstr "Обновить правило"
700
720
 
@@ -1,19 +1,19 @@
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
- # Dominic Cleal <dominic@cleal.org>, 2014
6
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2014
7
7
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
8
8
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: foreman_discovery 15.0.0\n"
11
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2019-05-13 15:39+0200\n"
14
- "PO-Revision-Date: 2019-04-18 19:36+0000\n"
15
- "Last-Translator: Lukáš Zapletal\n"
16
- "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/language/sv_SE/)\n"
13
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
14
+ "Last-Translator: Transifex Bot <>\n"
15
+ "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
16
+ "uage/sv_SE/)\n"
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,23 +24,19 @@ msgstr ""
24
24
  msgid "List all discovered hosts"
25
25
  msgstr ""
26
26
 
27
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
28
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
27
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
29
28
  msgid "filter results"
30
29
  msgstr "filtrera resultat"
31
30
 
32
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
33
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
31
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
34
32
  msgid "sort results"
35
33
  msgstr "sortera resultat"
36
34
 
37
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
38
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
35
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
39
36
  msgid "paginate results"
40
37
  msgstr ""
41
38
 
42
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
43
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
39
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
44
40
  msgid "number of entries per request"
45
41
  msgstr "antal poster per begäran"
46
42
 
@@ -48,8 +44,7 @@ msgstr "antal poster per begäran"
48
44
  msgid "Show a discovered host"
49
45
  msgstr ""
50
46
 
51
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
52
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
47
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:85
53
48
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
54
49
  msgstr ""
55
50
 
@@ -61,6 +56,10 @@ msgstr ""
61
56
  msgid "Provision a discovered host"
62
57
  msgstr ""
63
58
 
59
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
60
+ msgid "required if host is managed and value is not inherited from host group"
61
+ msgstr ""
62
+
64
63
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
65
64
  msgid "not required if using a subnet with DHCP proxy"
66
65
  msgstr ""
@@ -69,82 +68,99 @@ msgstr ""
69
68
  msgid "not required if it's a virtual machine"
70
69
  msgstr ""
71
70
 
72
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
73
- msgid ""
74
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
71
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
72
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
75
73
  msgstr ""
76
74
 
77
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
78
- msgid ""
79
- "required if value is not inherited from host group or default password in "
80
- "settings"
75
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
76
+ msgid "required if host is managed and custom partition has not been defined"
77
+ msgstr ""
78
+
79
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
80
+ msgid "Host's owner type"
81
+ msgstr ""
82
+
83
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
84
+ msgid "Host's parameters (array or indexed hash)"
85
+ msgstr ""
86
+
87
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
88
+ msgid "Name of the parameter"
81
89
  msgstr ""
82
90
 
83
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
91
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
92
+ msgid "Parameter value"
93
+ msgstr ""
94
+
95
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
96
+ msgid "Type of value"
97
+ msgstr ""
98
+
99
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
100
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
101
+ msgstr ""
102
+
103
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
104
+ msgid "required if value is not inherited from host group or default password in settings"
105
+ msgstr ""
106
+
107
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
84
108
  msgid "Delete a discovered host"
85
109
  msgstr ""
86
110
 
87
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:96
111
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
88
112
  msgid "Upload facts for a host, creating the host if required"
89
113
  msgstr ""
90
114
 
91
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
92
- msgid ""
93
- "hash containing facts for the host with minimum set of facts: "
94
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
95
- "eth0 (example in case primary interface is named eth0)"
115
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
116
+ 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)"
96
117
  msgstr ""
97
118
 
98
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
119
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
99
120
  msgid "Execute rules against a discovered host"
100
121
  msgstr ""
101
122
 
102
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122
103
- #: ../app/controllers/discovered_hosts_controller.rb:159
123
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
104
124
  msgid "Host %{host} was provisioned with rule %{rule}"
105
125
  msgstr ""
106
126
 
107
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
127
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
108
128
  msgid "Unable to provision %{host}: %{errors}"
109
129
  msgstr ""
110
130
 
111
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131
112
- #: ../app/controllers/discovered_hosts_controller.rb:166
131
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
113
132
  msgid "No rule found for host %s"
114
133
  msgstr ""
115
134
 
116
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
135
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
117
136
  msgid "Execute rules against all currently discovered hosts"
118
137
  msgstr ""
119
138
 
120
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142
121
- #: ../app/controllers/discovered_hosts_controller.rb:172
139
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
122
140
  msgid "Errors during auto provisioning: %s"
123
141
  msgstr ""
124
142
 
125
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145
126
- #: ../app/controllers/discovered_hosts_controller.rb:175
143
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
127
144
  msgid "No discovered hosts to provision"
128
145
  msgstr ""
129
146
 
130
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
147
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
131
148
  msgid "%s discovered hosts were provisioned"
132
149
  msgstr ""
133
150
 
134
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
151
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
135
152
  msgid "Refreshing the facts of a discovered host"
136
153
  msgstr ""
137
154
 
138
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
155
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
139
156
  msgid "Rebooting a discovered host"
140
157
  msgstr ""
141
158
 
142
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
159
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
143
160
  msgid "Rebooting all discovered hosts"
144
161
  msgstr ""
145
162
 
146
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207
147
- #: ../app/controllers/discovered_hosts_controller.rb:128
163
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
148
164
  msgid "Discovered hosts are rebooting now"
149
165
  msgstr ""
150
166
 
@@ -169,8 +185,7 @@ msgid "the hostgroup that is used to auto provision a host"
169
185
  msgstr ""
170
186
 
171
187
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
172
- msgid ""
173
- "defines a pattern to assign human-readable hostnames to the matching hosts"
188
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
174
189
  msgstr ""
175
190
 
176
191
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -178,8 +193,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
178
193
  msgstr ""
179
194
 
180
195
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
181
- msgid ""
182
- "puts the rules in order, low numbers go first. Must be greater then zero"
196
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
183
197
  msgstr ""
184
198
 
185
199
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -218,11 +232,11 @@ msgstr ""
218
232
  msgid "No hostgroup associated with rule '%s'"
219
233
  msgstr ""
220
234
 
221
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:69
235
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:73
222
236
  msgid "Errors during reboot: %s"
223
237
  msgstr ""
224
238
 
225
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:87
239
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:91
226
240
  msgid "No discovered hosts to reboot"
227
241
  msgstr ""
228
242
 
@@ -230,91 +244,91 @@ msgstr ""
230
244
  msgid "Successfully provisioned %s"
231
245
  msgstr ""
232
246
 
233
- #: ../app/controllers/discovered_hosts_controller.rb:96
247
+ #: ../app/controllers/discovered_hosts_controller.rb:97
234
248
  msgid "Facts refreshed for %s"
235
249
  msgstr "Fakta uppdaterade för %s"
236
250
 
237
- #: ../app/controllers/discovered_hosts_controller.rb:98
251
+ #: ../app/controllers/discovered_hosts_controller.rb:99
238
252
  msgid "Failed to refresh facts for %s"
239
253
  msgstr "Misslyckades med att uppdatera fakta för %s"
240
254
 
241
- #: ../app/controllers/discovered_hosts_controller.rb:101
255
+ #: ../app/controllers/discovered_hosts_controller.rb:102
242
256
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
243
257
  msgstr ""
244
258
 
245
- #: ../app/controllers/discovered_hosts_controller.rb:108
259
+ #: ../app/controllers/discovered_hosts_controller.rb:109
246
260
  msgid "Host of type %s can not be rebooted"
247
261
  msgstr ""
248
262
 
249
- #: ../app/controllers/discovered_hosts_controller.rb:112
263
+ #: ../app/controllers/discovered_hosts_controller.rb:113
250
264
  msgid "Rebooting host %s"
251
265
  msgstr ""
252
266
 
253
- #: ../app/controllers/discovered_hosts_controller.rb:114
267
+ #: ../app/controllers/discovered_hosts_controller.rb:115
254
268
  msgid "Failed to reboot host %s"
255
269
  msgstr ""
256
270
 
257
- #: ../app/controllers/discovered_hosts_controller.rb:117
271
+ #: ../app/controllers/discovered_hosts_controller.rb:118
258
272
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
259
273
  msgstr ""
260
274
 
261
- #: ../app/controllers/discovered_hosts_controller.rb:131
275
+ #: ../app/controllers/discovered_hosts_controller.rb:132
262
276
  msgid "Failed to reboot hosts with error %s"
263
277
  msgstr ""
264
278
 
265
- #: ../app/controllers/discovered_hosts_controller.rb:149
279
+ #: ../app/controllers/discovered_hosts_controller.rb:150
266
280
  msgid "Destroyed selected hosts"
267
281
  msgstr "Förstör markerade värdar"
268
282
 
269
- #: ../app/controllers/discovered_hosts_controller.rb:151
283
+ #: ../app/controllers/discovered_hosts_controller.rb:152
270
284
  msgid "The following hosts were not deleted: %s"
271
285
  msgstr "Följande värdar raderades inte: %s"
272
286
 
273
- #: ../app/controllers/discovered_hosts_controller.rb:163
287
+ #: ../app/controllers/discovered_hosts_controller.rb:164
274
288
  msgid "Failed to auto provision host %s: %s"
275
289
  msgstr ""
276
290
 
277
- #: ../app/controllers/discovered_hosts_controller.rb:191
291
+ #: ../app/controllers/discovered_hosts_controller.rb:192
278
292
  msgid "Discovered hosts are provisioning now"
279
293
  msgstr ""
280
294
 
281
- #: ../app/controllers/discovered_hosts_controller.rb:223
295
+ #: ../app/controllers/discovered_hosts_controller.rb:226
282
296
  msgid "Highlights"
283
297
  msgstr ""
284
298
 
285
- #: ../app/controllers/discovered_hosts_controller.rb:223
299
+ #: ../app/controllers/discovered_hosts_controller.rb:226
286
300
  msgid "Storage"
287
301
  msgstr ""
288
302
 
289
- #: ../app/controllers/discovered_hosts_controller.rb:223
303
+ #: ../app/controllers/discovered_hosts_controller.rb:226
290
304
  msgid "Hardware"
291
305
  msgstr ""
292
306
 
293
- #: ../app/controllers/discovered_hosts_controller.rb:223
307
+ #: ../app/controllers/discovered_hosts_controller.rb:226
294
308
  msgid "Network"
295
309
  msgstr ""
296
310
 
297
- #: ../app/controllers/discovered_hosts_controller.rb:223
311
+ #: ../app/controllers/discovered_hosts_controller.rb:226
298
312
  msgid "Software"
299
313
  msgstr ""
300
314
 
301
- #: ../app/controllers/discovered_hosts_controller.rb:223
315
+ #: ../app/controllers/discovered_hosts_controller.rb:226
302
316
  msgid "IPMI"
303
317
  msgstr ""
304
318
 
305
- #: ../app/controllers/discovered_hosts_controller.rb:223
319
+ #: ../app/controllers/discovered_hosts_controller.rb:226
306
320
  msgid "Miscellaneous"
307
321
  msgstr ""
308
322
 
309
- #: ../app/controllers/discovered_hosts_controller.rb:301
323
+ #: ../app/controllers/discovered_hosts_controller.rb:304
310
324
  msgid "No hosts were found with that id or name"
311
325
  msgstr "Inga värdar med det idt eller namnet hittades"
312
326
 
313
- #: ../app/controllers/discovered_hosts_controller.rb:305
327
+ #: ../app/controllers/discovered_hosts_controller.rb:308
314
328
  msgid "No hosts selected"
315
329
  msgstr "Inga värdar markerade"
316
330
 
317
- #: ../app/controllers/discovered_hosts_controller.rb:311
331
+ #: ../app/controllers/discovered_hosts_controller.rb:314
318
332
  msgid "Something went wrong while selecting hosts - %s"
319
333
  msgstr "Något blev fel vid markering av värdar - %s"
320
334
 
@@ -330,21 +344,15 @@ msgstr ""
330
344
  msgid "%s ago"
331
345
  msgstr "%s sedan"
332
346
 
333
- #: ../app/helpers/discovered_hosts_helper.rb:14
334
- #: ../app/helpers/discovered_hosts_helper.rb:29
335
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
347
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
336
348
  msgid "Auto Provision"
337
349
  msgstr ""
338
350
 
339
- #: ../app/helpers/discovered_hosts_helper.rb:15
340
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
351
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
341
352
  msgid "Refresh facts"
342
353
  msgstr "Uppdatera fakta"
343
354
 
344
- #: ../app/helpers/discovered_hosts_helper.rb:16
345
- #: ../app/helpers/discovered_hosts_helper.rb:30
346
- #: ../app/models/setting/discovered.rb:26
347
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
355
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
348
356
  msgid "Reboot"
349
357
  msgstr ""
350
358
 
@@ -352,13 +360,11 @@ msgstr ""
352
360
  msgid "Back"
353
361
  msgstr ""
354
362
 
355
- #: ../app/helpers/discovered_hosts_helper.rb:21
356
- #: ../app/helpers/discovered_hosts_helper.rb:35
363
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
357
364
  msgid "Select Action"
358
365
  msgstr "Välj Åtgärd"
359
366
 
360
- #: ../app/helpers/discovered_hosts_helper.rb:23
361
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
367
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
362
368
  msgid "Delete %s?"
363
369
  msgstr "Radera %s?"
364
370
 
@@ -378,8 +384,7 @@ msgstr "Radera"
378
384
  msgid "%s - The following hosts are about to be changed"
379
385
  msgstr "%s - Följande värdar kommer att ändras"
380
386
 
381
- #: ../app/helpers/discovered_hosts_helper.rb:46
382
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
387
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
383
388
  msgid "N/A"
384
389
  msgstr "N/A"
385
390
 
@@ -399,12 +404,7 @@ msgstr ""
399
404
  msgid "Provision"
400
405
  msgstr "Provisionera"
401
406
 
402
- #: ../app/helpers/discovery_rules_helper.rb:26
403
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1
404
- #: ../app/views/discovered_hosts/welcome.html.erb:1
405
- #: ../app/views/discovered_hosts/welcome.html.erb:6
406
- #: ../lib/foreman_discovery/engine.rb:158
407
- #: ../lib/foreman_discovery/engine.rb:173
407
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:8 ../lib/foreman_discovery/engine.rb:159 ../lib/foreman_discovery/engine.rb:174
408
408
  msgid "Discovered Hosts"
409
409
  msgstr "Hittade värdar"
410
410
 
@@ -453,65 +453,62 @@ msgid "must be present."
453
453
  msgstr ""
454
454
 
455
455
  #: ../app/models/discovery_rule.rb:52
456
- msgid ""
457
- "Host group organization %s must also be associated to the discovery rule"
458
- msgid_plural ""
459
- "Host group organizations %s must also be associated to the discovery rule"
456
+ msgid "Host group organization %s must also be associated to the discovery rule"
457
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
460
458
  msgstr[0] ""
461
459
  msgstr[1] ""
462
460
 
463
461
  #: ../app/models/discovery_rule.rb:56
464
462
  msgid "Host group location %s must also be associated to the discovery rule"
465
- msgid_plural ""
466
- "Host group locations %s must also be associated to the discovery rule"
463
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
467
464
  msgstr[0] ""
468
465
  msgstr[1] ""
469
466
 
470
- #: ../app/models/host/discovered.rb:41
467
+ #: ../app/models/host/discovered.rb:40
471
468
  msgid "Fact + prefix"
472
469
  msgstr ""
473
470
 
474
- #: ../app/models/host/discovered.rb:42
471
+ #: ../app/models/host/discovered.rb:41
475
472
  msgid "Random name"
476
473
  msgstr ""
477
474
 
478
- #: ../app/models/host/discovered.rb:43
475
+ #: ../app/models/host/discovered.rb:42
479
476
  msgid "MAC-based name"
480
477
  msgstr ""
481
478
 
482
- #: ../app/models/host/discovered.rb:52
479
+ #: ../app/models/host/discovered.rb:55
483
480
  msgid "Invalid facts, must be a Hash"
484
481
  msgstr ""
485
482
 
486
- #: ../app/models/host/discovered.rb:57
487
- msgid ""
488
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
489
- "and set hostname"
483
+ #: ../app/models/host/discovered.rb:60
484
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
490
485
  msgstr ""
491
486
 
492
- #: ../app/models/host/discovered.rb:70
493
- msgid ""
494
- "Invalid facts: hash does not contain a valid value for any of the facts in "
495
- "the discovery_hostname setting: %s"
487
+ #: ../app/models/host/discovered.rb:73
488
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
496
489
  msgstr ""
497
490
 
498
- #: ../app/models/host/discovered.rb:96
491
+ #: ../app/models/host/discovered.rb:100
499
492
  msgid "Facts could not be imported"
500
493
  msgstr ""
501
494
 
502
- #: ../app/models/host/discovered.rb:151
495
+ #: ../app/models/host/discovered.rb:146
503
496
  msgid "Could not get facts from proxy %{url}: %{error}"
504
497
  msgstr ""
505
498
 
506
- #: ../app/models/host/discovered.rb:159
507
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
499
+ #: ../app/models/host/discovered.rb:160
500
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
508
501
  msgstr ""
509
502
 
510
- #: ../app/models/host/discovered.rb:167
511
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
503
+ #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
504
+ msgid "Unable to perform %{action} on %{ips}"
512
505
  msgstr ""
513
506
 
514
- #: ../app/models/host/discovered.rb:186
507
+ #: ../app/models/host/discovered.rb:179
508
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
509
+ msgstr ""
510
+
511
+ #: ../app/models/host/discovered.rb:203
515
512
  msgid "Invalid hostname: Could not normalize the hostname"
516
513
  msgstr ""
517
514
 
@@ -539,191 +536,183 @@ msgstr ""
539
536
  msgid "Rebuild DNS for %s"
540
537
  msgstr ""
541
538
 
542
- #: ../app/models/setting/discovered.rb:19
539
+ #: ../app/models/setting/discovered.rb:17
543
540
  msgid "The default location to place discovered hosts in"
544
541
  msgstr "Standardplatsen att placera värdar i"
545
542
 
546
- #: ../app/models/setting/discovered.rb:19
543
+ #: ../app/models/setting/discovered.rb:17
547
544
  msgid "Discovery location"
548
545
  msgstr ""
549
546
 
550
- #: ../app/models/setting/discovered.rb:20
547
+ #: ../app/models/setting/discovered.rb:18
551
548
  msgid "The default organization to place discovered hosts in"
552
549
  msgstr "Standardorganisationen att placera hittade värdar i"
553
550
 
554
- #: ../app/models/setting/discovered.rb:20
551
+ #: ../app/models/setting/discovered.rb:18
555
552
  msgid "Discovery organization"
556
553
  msgstr ""
557
554
 
558
- #: ../app/models/setting/discovered.rb:21
555
+ #: ../app/models/setting/discovered.rb:19
559
556
  msgid "Fact name to use for primary interface detection"
560
557
  msgstr ""
561
558
 
562
- #: ../app/models/setting/discovered.rb:21
559
+ #: ../app/models/setting/discovered.rb:19
563
560
  msgid "Interface fact"
564
561
  msgstr ""
565
562
 
566
- #: ../app/models/setting/discovered.rb:22
567
- msgid ""
568
- "Automatic bond interface (if another interface is detected on the same VLAN "
569
- "via LLDP)"
563
+ #: ../app/models/setting/discovered.rb:20
564
+ msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
570
565
  msgstr ""
571
566
 
572
- #: ../app/models/setting/discovered.rb:22
567
+ #: ../app/models/setting/discovered.rb:20
573
568
  msgid "Create bond interfaces"
574
569
  msgstr ""
575
570
 
576
- #: ../app/models/setting/discovered.rb:23
571
+ #: ../app/models/setting/discovered.rb:21
577
572
  msgid "Clean all reported facts during provisioning (except discovery facts)"
578
573
  msgstr ""
579
574
 
580
- #: ../app/models/setting/discovered.rb:23
575
+ #: ../app/models/setting/discovered.rb:21
581
576
  msgid "Clean all facts"
582
577
  msgstr ""
583
578
 
584
- #: ../app/models/setting/discovered.rb:24
579
+ #: ../app/models/setting/discovered.rb:22
585
580
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
586
581
  msgstr ""
587
582
 
588
- #: ../app/models/setting/discovered.rb:24
583
+ #: ../app/models/setting/discovered.rb:22
589
584
  msgid "Hostname facts"
590
585
  msgstr ""
591
586
 
592
- #: ../app/models/setting/discovered.rb:25
593
- msgid ""
594
- "Automatically provision newly discovered hosts, according to the "
595
- "provisioning rules"
587
+ #: ../app/models/setting/discovered.rb:23
588
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
596
589
  msgstr ""
597
590
 
598
- #: ../app/models/setting/discovered.rb:25
591
+ #: ../app/models/setting/discovered.rb:23
599
592
  msgid "Auto provisioning"
600
593
  msgstr ""
601
594
 
602
- #: ../app/models/setting/discovered.rb:26
595
+ #: ../app/models/setting/discovered.rb:24
603
596
  msgid "Automatically reboot or kexec discovered host during provisioning"
604
597
  msgstr ""
605
598
 
606
- #: ../app/models/setting/discovered.rb:27
599
+ #: ../app/models/setting/discovered.rb:25
607
600
  msgid "The default prefix to use for the host name, must start with a letter"
608
601
  msgstr ""
609
602
 
610
- #: ../app/models/setting/discovered.rb:27
603
+ #: ../app/models/setting/discovered.rb:25
611
604
  msgid "Hostname prefix"
612
605
  msgstr ""
613
606
 
614
- #: ../app/models/setting/discovered.rb:28
607
+ #: ../app/models/setting/discovered.rb:26
615
608
  msgid "Extra facter columns to show in host lists (separate by comma)"
616
609
  msgstr ""
617
610
 
618
- #: ../app/models/setting/discovered.rb:28
611
+ #: ../app/models/setting/discovered.rb:26
619
612
  msgid "Fact columns"
620
613
  msgstr ""
621
614
 
622
- #: ../app/models/setting/discovered.rb:29
615
+ #: ../app/models/setting/discovered.rb:27
623
616
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
624
617
  msgstr ""
625
618
 
626
- #: ../app/models/setting/discovered.rb:29
619
+ #: ../app/models/setting/discovered.rb:27
627
620
  msgid "Highlighted facts"
628
621
  msgstr ""
629
622
 
630
- #: ../app/models/setting/discovered.rb:30
623
+ #: ../app/models/setting/discovered.rb:28
631
624
  msgid "Regex to organize facts for storage section"
632
625
  msgstr ""
633
626
 
634
- #: ../app/models/setting/discovered.rb:30
627
+ #: ../app/models/setting/discovered.rb:28
635
628
  msgid "Storage facts"
636
629
  msgstr ""
637
630
 
638
- #: ../app/models/setting/discovered.rb:31
631
+ #: ../app/models/setting/discovered.rb:29
639
632
  msgid "Regex to organize facts for software section"
640
633
  msgstr ""
641
634
 
642
- #: ../app/models/setting/discovered.rb:31
635
+ #: ../app/models/setting/discovered.rb:29
643
636
  msgid "Software facts"
644
637
  msgstr ""
645
638
 
646
- #: ../app/models/setting/discovered.rb:32
639
+ #: ../app/models/setting/discovered.rb:30
647
640
  msgid "Regex to organize facts for hardware section"
648
641
  msgstr ""
649
642
 
650
- #: ../app/models/setting/discovered.rb:32
643
+ #: ../app/models/setting/discovered.rb:30
651
644
  msgid "Hardware facts"
652
645
  msgstr ""
653
646
 
654
- #: ../app/models/setting/discovered.rb:33
647
+ #: ../app/models/setting/discovered.rb:31
655
648
  msgid "Regex to organize facts for network section"
656
649
  msgstr ""
657
650
 
658
- #: ../app/models/setting/discovered.rb:33
651
+ #: ../app/models/setting/discovered.rb:31
659
652
  msgid "Network facts"
660
653
  msgstr ""
661
654
 
662
- #: ../app/models/setting/discovered.rb:34
655
+ #: ../app/models/setting/discovered.rb:32
663
656
  msgid "Regex to organize facts for ipmi section"
664
657
  msgstr ""
665
658
 
666
- #: ../app/models/setting/discovered.rb:34
659
+ #: ../app/models/setting/discovered.rb:32
667
660
  msgid "IPMI facts"
668
661
  msgstr ""
669
662
 
670
- #: ../app/models/setting/discovered.rb:35
671
- msgid ""
672
- "Automatically generate PXE configuration to pin a newly discovered host to "
673
- "discovery"
663
+ #: ../app/models/setting/discovered.rb:33
664
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
674
665
  msgstr ""
675
666
 
676
- #: ../app/models/setting/discovered.rb:35
667
+ #: ../app/models/setting/discovered.rb:33
677
668
  msgid "Lock PXE"
678
669
  msgstr ""
679
670
 
680
- #: ../app/models/setting/discovered.rb:36
671
+ #: ../app/models/setting/discovered.rb:34
681
672
  msgid "PXELinux template to be used when pinning a host to discovery"
682
673
  msgstr ""
683
674
 
684
- #: ../app/models/setting/discovered.rb:36
675
+ #: ../app/models/setting/discovered.rb:34
685
676
  msgid "Locked PXELinux template name"
686
677
  msgstr ""
687
678
 
688
- #: ../app/models/setting/discovered.rb:37
679
+ #: ../app/models/setting/discovered.rb:35
689
680
  msgid "PXEGrub template to be used when pinning a host to discovery"
690
681
  msgstr ""
691
682
 
692
- #: ../app/models/setting/discovered.rb:37
683
+ #: ../app/models/setting/discovered.rb:35
693
684
  msgid "Locked PXEGrub template name"
694
685
  msgstr ""
695
686
 
696
- #: ../app/models/setting/discovered.rb:38
687
+ #: ../app/models/setting/discovered.rb:36
697
688
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
698
689
  msgstr ""
699
690
 
700
- #: ../app/models/setting/discovered.rb:38
691
+ #: ../app/models/setting/discovered.rb:36
701
692
  msgid "Locked PXEGrub2 template name"
702
693
  msgstr ""
703
694
 
704
- #: ../app/models/setting/discovered.rb:39
695
+ #: ../app/models/setting/discovered.rb:37
705
696
  msgid "Force DNS entries creation when provisioning discovered host"
706
697
  msgstr ""
707
698
 
708
- #: ../app/models/setting/discovered.rb:39
699
+ #: ../app/models/setting/discovered.rb:37
709
700
  msgid "Force DNS"
710
701
  msgstr ""
711
702
 
712
- #: ../app/models/setting/discovered.rb:40
713
- msgid ""
714
- "Do not allow to discover existing managed host matching MAC of a "
715
- "provisioning NIC (errors out early)"
703
+ #: ../app/models/setting/discovered.rb:38
704
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
716
705
  msgstr ""
717
706
 
718
- #: ../app/models/setting/discovered.rb:40
707
+ #: ../app/models/setting/discovered.rb:38
719
708
  msgid "Error on existing NIC"
720
709
  msgstr ""
721
710
 
722
- #: ../app/models/setting/discovered.rb:41
711
+ #: ../app/models/setting/discovered.rb:39
723
712
  msgid "Discovery hostname naming pattern"
724
713
  msgstr ""
725
714
 
726
- #: ../app/models/setting/discovered.rb:41
715
+ #: ../app/models/setting/discovered.rb:39
727
716
  msgid "Type of name generator"
728
717
  msgstr ""
729
718
 
@@ -736,19 +725,27 @@ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
736
725
  msgstr ""
737
726
 
738
727
  #: ../app/services/foreman_discovery/fact_parser.rb:12
739
- msgid ""
740
- "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: "
741
- "%{filter}"
728
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
729
+ msgstr ""
730
+
731
+ #: ../app/services/foreman_discovery/host_converter.rb:47
732
+ msgid "IPAM must be configured for subnet '%s'"
742
733
  msgstr ""
743
734
 
744
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
735
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:76
745
736
  msgid "Image API returned HTTP/%{code} with '%{body}"
746
737
  msgstr ""
747
738
 
748
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
739
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:79
749
740
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
750
741
  msgstr ""
751
742
 
743
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
744
+ msgid "Discovered Host"
745
+ msgid_plural "Discovered Hosts"
746
+ msgstr[0] ""
747
+ msgstr[1] ""
748
+
752
749
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
753
750
  msgid "No discovered hosts available"
754
751
  msgstr ""
@@ -757,25 +754,15 @@ msgstr ""
757
754
  msgid "Host"
758
755
  msgstr "Värd"
759
756
 
760
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
761
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
762
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
763
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
764
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
757
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../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
765
758
  msgid "Model"
766
759
  msgstr "Modell"
767
760
 
768
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
769
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
770
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
771
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
761
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
772
762
  msgid "CPUs"
773
763
  msgstr "CPUer"
774
764
 
775
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
776
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
777
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
778
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
765
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
779
766
  msgid "Memory"
780
767
  msgstr "Minne"
781
768
 
@@ -795,16 +782,11 @@ msgstr "Markera alla valbara på denna sida"
795
782
  msgid "items selected. Uncheck to Clear"
796
783
  msgstr "poster markerade. Avmarkera för att rensa"
797
784
 
798
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
799
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
800
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
801
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
785
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5 ../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
802
786
  msgid "Name"
803
787
  msgstr "Namn"
804
788
 
805
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
806
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
807
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
789
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
808
790
  msgid "IP Address"
809
791
  msgstr "IPadress"
810
792
 
@@ -816,13 +798,11 @@ msgstr ""
816
798
  msgid "Disks Size"
817
799
  msgstr ""
818
800
 
819
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15
820
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:9
801
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
821
802
  msgid "Location"
822
803
  msgstr "Lokation"
823
804
 
824
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16
825
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
805
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
826
806
  msgid "Organization"
827
807
  msgstr "Organisation"
828
808
 
@@ -834,8 +814,7 @@ msgstr "Subnät"
834
814
  msgid "Last Facts Upload"
835
815
  msgstr ""
836
816
 
837
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
838
- #: ../app/views/discovery_rules/index.html.erb:12
817
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19 ../app/views/discovery_rules/index.html.erb:12
839
818
  msgid "Actions"
840
819
  msgstr "Åtgärder"
841
820
 
@@ -856,9 +835,7 @@ msgid "Provision %s"
856
835
  msgstr ""
857
836
 
858
837
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
859
- msgid ""
860
- "This might take a while, as all hosts, facts and reports will be destroyed "
861
- "as well"
838
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
862
839
  msgstr "Detta kan dröja då alla värdar, fakta och rapporter också kommer bli förstörda"
863
840
 
864
841
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -897,20 +874,6 @@ msgstr ""
897
874
  msgid "Collapse All"
898
875
  msgstr ""
899
876
 
900
- #: ../app/views/discovered_hosts/welcome.html.erb:7
901
- msgid "No discovered hosts found in this context."
902
- msgstr ""
903
-
904
- #: ../app/views/discovered_hosts/welcome.html.erb:8
905
- msgid ""
906
- "This page shows discovered bare-metal or virtual nodes waiting to be "
907
- "provisioned."
908
- msgstr ""
909
-
910
- #: ../app/views/discovered_hosts/welcome.html.erb:9
911
- msgid "Learn more about this in the documentation."
912
- msgstr ""
913
-
914
877
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
915
878
  msgid "Summary report for discovered hosts from Foreman"
916
879
  msgstr ""
@@ -919,23 +882,19 @@ msgstr ""
919
882
  msgid "<b>Foreman</b> Discovered hosts summary"
920
883
  msgstr ""
921
884
 
922
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
923
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
885
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
924
886
  msgid "Summary from %{time} ago to %{now}"
925
887
  msgstr ""
926
888
 
927
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
928
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
889
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
929
890
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
930
891
  msgstr ""
931
892
 
932
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
933
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
893
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
934
894
  msgid "Disk count"
935
895
  msgstr ""
936
896
 
937
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
938
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
897
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
939
898
  msgid "Disks size"
940
899
  msgstr ""
941
900
 
@@ -984,41 +943,30 @@ msgid "Rule priority (lower integer means higher priority)"
984
943
  msgstr ""
985
944
 
986
945
  #: ../app/views/discovery_rules/_template_inline.erb:2
987
- msgid ""
988
- "Specify target hostname template pattern in the same syntax as in "
989
- "Provisioning Templates (ERB)."
946
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
990
947
  msgstr ""
991
948
 
992
949
  #: ../app/views/discovery_rules/_template_inline.erb:4
993
- msgid ""
994
- "Domain will be appended automatically. A hostname based on MAC address will "
995
- "be used when left blank."
950
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
996
951
  msgstr ""
997
952
 
998
953
  #: ../app/views/discovery_rules/_template_inline.erb:5
999
- msgid ""
1000
- "In addition to @host attribute function rand for random integers is "
1001
- "available. Examples:"
954
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
1002
955
  msgstr ""
1003
956
 
1004
957
  #: ../app/views/discovery_rules/_template_inline.erb:8
1005
- msgid ""
1006
- "When creating hostname patterns, make sure the resulting host names are "
1007
- "unique."
958
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
1008
959
  msgstr ""
1009
960
 
1010
961
  #: ../app/views/discovery_rules/_template_inline.erb:9
1011
- msgid ""
1012
- "Hostnames must not start with numbers. A good approach is to use unique "
1013
- "information provided by facter (MAC address, BIOS or serial ID)."
962
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
1014
963
  msgstr ""
1015
964
 
1016
965
  #: ../app/views/discovery_rules/edit.html.erb:1
1017
966
  msgid "Edit %s"
1018
967
  msgstr "Redigera %s"
1019
968
 
1020
- #: ../app/views/discovery_rules/index.html.erb:1
1021
- #: ../lib/foreman_discovery/engine.rb:163
969
+ #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
1022
970
  msgid "Discovery Rules"
1023
971
  msgstr ""
1024
972
 
@@ -1074,22 +1022,34 @@ msgstr ""
1074
1022
  msgid "Details"
1075
1023
  msgstr ""
1076
1024
 
1077
- #: ../lib/foreman_discovery/engine.rb:179
1025
+ #: ../lib/foreman_discovery/engine.rb:180
1078
1026
  msgid "Discovery Kexec template"
1079
1027
  msgstr ""
1080
1028
 
1081
- #: ../lib/foreman_discovery/engine.rb:188
1029
+ #: ../lib/foreman_discovery/engine.rb:189
1082
1030
  msgid "Discovery Proxy"
1083
1031
  msgstr ""
1084
1032
 
1085
- #: ../lib/foreman_discovery/engine.rb:189
1086
- msgid ""
1087
- "Discovery Proxy to use within this subnet for managing connection to "
1088
- "discovered hosts"
1033
+ #: ../lib/foreman_discovery/engine.rb:190
1034
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1089
1035
  msgstr ""
1090
1036
 
1091
- #: ../lib/foreman_discovery/engine.rb:190
1092
- msgid ""
1093
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1094
- "discovered hosts"
1037
+ #: ../lib/foreman_discovery/engine.rb:191
1038
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1039
+ msgstr ""
1040
+
1041
+ #: action_names.rb:2
1042
+ msgid "Remote action:"
1043
+ msgstr ""
1044
+
1045
+ #: action_names.rb:3
1046
+ msgid "Import Puppet classes"
1047
+ msgstr ""
1048
+
1049
+ #: action_names.rb:4
1050
+ msgid "Import facts"
1051
+ msgstr ""
1052
+
1053
+ #: action_names.rb:5
1054
+ msgid "Action with sub plans"
1095
1055
  msgstr ""