foreman_discovery 5.0.0 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +41 -51
  3. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +20 -23
  4. data/app/controllers/discovered_hosts_controller.rb +50 -46
  5. data/app/helpers/concerns/foreman_discovery/settings_helper_extensions.rb +34 -0
  6. data/app/helpers/discovery_rules_helper.rb +5 -6
  7. data/app/mailers/discovered_mailer.rb +19 -0
  8. data/app/models/discovery_rule.rb +3 -3
  9. data/app/models/host/discovered.rb +33 -11
  10. data/app/models/host/managed_extensions.rb +10 -0
  11. data/app/models/hostgroup_extensions.rb +1 -1
  12. data/app/models/setting/discovered.rb +17 -11
  13. data/app/services/foreman_discovery/fact_parser.rb +16 -0
  14. data/app/services/foreman_discovery/host_converter.rb +0 -4
  15. data/app/services/foreman_discovery/node_api/power.rb +3 -3
  16. data/app/views/discovered_hosts/_discovered_host.html.erb +4 -2
  17. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +1 -1
  18. data/app/views/discovered_mailer/_discovered_host.html.erb +10 -0
  19. data/app/views/discovered_mailer/discovered_summary.html.erb +35 -0
  20. data/app/views/discovered_mailer/discovered_summary.text.erb +24 -0
  21. data/config/routes.rb +3 -3
  22. data/db/seeds.d/70_discovery_mail_notification.rb +9 -0
  23. data/lib/foreman_discovery/engine.rb +12 -9
  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 +780 -0
  27. data/locale/ca/foreman_discovery.po +358 -261
  28. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  29. data/locale/de/foreman_discovery.edit.po +774 -0
  30. data/locale/de/foreman_discovery.po +418 -311
  31. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  32. data/locale/en_GB/foreman_discovery.edit.po +779 -0
  33. data/locale/en_GB/foreman_discovery.po +423 -313
  34. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/es/foreman_discovery.edit.po +781 -0
  36. data/locale/es/foreman_discovery.po +425 -313
  37. data/locale/foreman_discovery.pot +496 -159
  38. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/fr/foreman_discovery.edit.po +778 -0
  40. data/locale/fr/foreman_discovery.po +458 -322
  41. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  42. data/locale/gl/foreman_discovery.edit.po +757 -0
  43. data/locale/gl/foreman_discovery.po +306 -215
  44. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  45. data/locale/it/foreman_discovery.edit.po +771 -0
  46. data/locale/it/foreman_discovery.po +411 -301
  47. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/ja/foreman_discovery.edit.po +770 -0
  49. data/locale/ja/foreman_discovery.po +395 -300
  50. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  51. data/locale/ko/foreman_discovery.edit.po +768 -0
  52. data/locale/ko/foreman_discovery.po +393 -299
  53. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  54. data/locale/pt_BR/foreman_discovery.edit.po +780 -0
  55. data/locale/pt_BR/foreman_discovery.po +438 -309
  56. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  57. data/locale/ru/foreman_discovery.edit.po +775 -0
  58. data/locale/ru/foreman_discovery.po +413 -308
  59. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  60. data/locale/sv_SE/foreman_discovery.edit.po +766 -0
  61. data/locale/sv_SE/foreman_discovery.po +321 -232
  62. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  63. data/locale/zh_CN/foreman_discovery.edit.po +769 -0
  64. data/locale/zh_CN/foreman_discovery.po +393 -302
  65. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  66. data/locale/zh_TW/foreman_discovery.edit.po +769 -0
  67. data/locale/zh_TW/foreman_discovery.po +395 -302
  68. data/test/functional/api/v2/discovered_hosts_controller_test.rb +8 -0
  69. data/test/functional/api/v2/discovery_rules_controller_test.rb +9 -0
  70. data/test/functional/discovered_hosts_controller_test.rb +26 -17
  71. data/test/functional/discovery_rules_controller_test.rb +9 -8
  72. data/test/test_helper.rb +0 -4
  73. data/test/test_helper_discovery.rb +24 -0
  74. data/test/unit/discovered_extensions_test.rb +31 -0
  75. data/test/unit/discovered_mailer_test.rb +44 -0
  76. data/test/unit/discovery_attribute_set_test.rb +12 -0
  77. data/test/unit/discovery_rule_test.rb +20 -0
  78. data/test/unit/{puppet_fact_parser_extensions_test.rb → fact_parser_test.rb} +3 -16
  79. data/test/unit/host_discovered_test.rb +56 -11
  80. metadata +29 -5
  81. data/app/lib/puppet_fact_parser_extensions.rb +0 -29
@@ -1,15 +1,15 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2015 Foreman developers
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
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2015.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_discovery 4.0.0\n"
10
- "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
11
- "POT-Creation-Date: 2015-10-15 09:33+0200\n"
12
- "PO-Revision-Date: 2015-10-15 09:33+0200\n"
9
+ "Project-Id-Version: foreman_discovery 1.0.0\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2016-02-25 10:58+0100\n"
12
+ "PO-Revision-Date: 2016-02-25 10:58+0100\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -18,462 +18,799 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- msgid "%s - The following hosts are about to be changed"
21
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:15
22
+ msgid "List all discovered hosts"
22
23
  msgstr ""
23
24
 
24
- msgid "%s ago"
25
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:16
26
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:14
27
+ msgid "filter results"
25
28
  msgstr ""
26
29
 
27
- msgid "%s discovered hosts were provisioned"
30
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
31
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
32
+ msgid "sort results"
28
33
  msgstr ""
29
34
 
30
- msgid "Are you sure?"
35
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
36
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
37
+ msgid "paginate results"
31
38
  msgstr ""
32
39
 
33
- msgid "Assign Location"
40
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
41
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
42
+ msgid "number of entries per request"
34
43
  msgstr ""
35
44
 
36
- msgid "Assign Organization"
45
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:25
46
+ msgid "Show a discovered host"
37
47
  msgstr ""
38
48
 
39
- msgid "Auto Provision"
49
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:39
50
+ msgid "Create a discovered host for testing (use /facts to create new hosts)"
40
51
  msgstr ""
41
52
 
42
- msgid "Auto Provision All"
53
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:47
54
+ msgid "Provision a discovered host"
43
55
  msgstr ""
44
56
 
45
- msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
57
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:52
58
+ msgid "not required if using a subnet with DHCP proxy"
46
59
  msgstr ""
47
60
 
48
- msgid "Automatically reboot discovered host during provisioning"
61
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:53
62
+ msgid "not required if it's a virtual machine"
49
63
  msgstr ""
50
64
 
51
- msgid "CPUs"
65
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
66
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
52
67
  msgstr ""
53
68
 
54
- msgid "Cancel"
69
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
70
+ msgid ""
71
+ "required if value is not inherited from host group or default password in sett"
72
+ "ings"
55
73
  msgstr ""
56
74
 
57
- msgid "Could not get facts from proxy %{url}: %{error}"
75
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:85
76
+ msgid "Delete a discovered host"
58
77
  msgstr ""
59
78
 
60
- msgid "Create a discovered host for testing (use /facts to create new hosts)"
79
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:92
80
+ msgid "Upload facts for a host, creating the host if required"
61
81
  msgstr ""
62
82
 
63
- msgid "Create a discovery rule"
83
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:93
84
+ msgid ""
85
+ "hash containing facts for the host with minimum set of facts: discovery_bootif"
86
+ ", macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in cas"
87
+ "e primary interface is named eth0)"
64
88
  msgstr ""
65
89
 
66
- msgid "Delete"
90
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:112
91
+ msgid "Execute rules against a discovered host"
67
92
  msgstr ""
68
93
 
69
- msgid "Delete %s?"
94
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:118
95
+ #: ../app/controllers/discovered_hosts_controller.rb:147
96
+ msgid "Host %{host} was provisioned with rule %{rule}"
70
97
  msgstr ""
71
98
 
72
- msgid "Delete a discovered host"
99
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:121
100
+ msgid "Unable to provision %{host}: %{errors}"
73
101
  msgstr ""
74
102
 
75
- msgid "Delete a rule"
103
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:127
104
+ #: ../app/controllers/discovered_hosts_controller.rb:154
105
+ msgid "No rule found for host %s"
76
106
  msgstr ""
77
107
 
78
- msgid "Delete hosts"
108
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:134
109
+ msgid "Execute rules against all currently discovered hosts"
79
110
  msgstr ""
80
111
 
81
- msgid "Destroyed selected hosts"
112
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
113
+ #: ../app/controllers/discovered_hosts_controller.rb:160
114
+ msgid "Errors during auto provisioning: %s"
82
115
  msgstr ""
83
116
 
84
- msgid "Disable"
117
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:141
118
+ #: ../app/controllers/discovered_hosts_controller.rb:163
119
+ msgid "No discovered hosts to provision"
85
120
  msgstr ""
86
121
 
87
- msgid "Disable rule?"
122
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:163
123
+ msgid "%s discovered hosts were provisioned"
88
124
  msgstr ""
89
125
 
90
- msgid "Discovered host: %s"
126
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:174
127
+ msgid "Refreshing the facts of a discovered host"
91
128
  msgstr ""
92
129
 
93
- msgid "Discovered hosts"
130
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:183
131
+ msgid "Rebooting a discovered host"
94
132
  msgstr ""
95
133
 
96
- msgid "Discovered hosts are provisioning now"
134
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
135
+ msgid "Rebooting all discovered hosts"
97
136
  msgstr ""
98
137
 
138
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:203
139
+ #: ../app/controllers/discovered_hosts_controller.rb:105
99
140
  msgid "Discovered hosts are rebooting now"
100
141
  msgstr ""
101
142
 
102
- msgid "Discovery Rules"
103
- msgstr ""
104
-
105
- msgid "DiscoveryRule|Enabled"
143
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:13
144
+ msgid "List all discovery rules"
106
145
  msgstr ""
107
146
 
108
- msgid "DiscoveryRule|Name"
147
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:23
148
+ msgid "Show a discovery rule"
109
149
  msgstr ""
110
150
 
111
- msgid "DiscoveryRule|Priority"
151
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:31
152
+ msgid "represents rule name shown to the users"
112
153
  msgstr ""
113
154
 
114
- msgid "DiscoveryRule|Query"
155
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:32
156
+ msgid "query to match discovered hosts for the particular rule"
115
157
  msgstr ""
116
158
 
117
- msgid "Disk count"
159
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:33
160
+ msgid "the hostgroup that is used to auto provision a host"
118
161
  msgstr ""
119
162
 
120
- msgid "Disks size"
163
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:34
164
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
121
165
  msgstr ""
122
166
 
123
- msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank. In addition to @host attribute function rand for random integers is available. Examples:"
167
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
168
+ msgid "enables to limit maximum amount of provisioned hosts per rule"
124
169
  msgstr ""
125
170
 
126
- msgid "Edit Discovery Rule"
171
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
172
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
127
173
  msgstr ""
128
174
 
129
- msgid "Enable"
175
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
176
+ msgid "flag is used for temporary shutdown of rules"
130
177
  msgstr ""
131
178
 
132
- msgid "Enable rule?"
179
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:41
180
+ msgid "Create a discovery rule"
133
181
  msgstr ""
134
182
 
135
- msgid "Errors during auto provisioning: %s"
183
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:49
184
+ msgid "Update a rule"
136
185
  msgstr ""
137
186
 
138
- msgid "Errors during reboot: %s"
187
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:57
188
+ msgid "Delete a rule"
139
189
  msgstr ""
140
190
 
141
- msgid "Execute rules against a discovered host"
191
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:6
192
+ msgid "Unable to find a discovery rule, no host provided (check permissions)"
142
193
  msgstr ""
143
194
 
144
- msgid "Execute rules against all currently discovered hosts"
195
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:47
196
+ msgid "No hostgroup associated with rule '%s'"
145
197
  msgstr ""
146
198
 
147
- msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
199
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:63
200
+ msgid "Errors during reboot: %s"
148
201
  msgstr ""
149
202
 
150
- msgid "Extra facter columns to show in host lists (separate by comma)"
203
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:81
204
+ msgid "No discovered hosts to reboot"
151
205
  msgstr ""
152
206
 
153
- msgid "Fact"
207
+ #: ../app/controllers/discovered_hosts_controller.rb:73
208
+ msgid "Facts refreshed for %s"
154
209
  msgstr ""
155
210
 
156
- msgid "Fact name to use for primary interface detection and hostname"
211
+ #: ../app/controllers/discovered_hosts_controller.rb:75
212
+ msgid "Failed to refresh facts for %s"
157
213
  msgstr ""
158
214
 
159
- msgid "Facts discovered on this host"
215
+ #: ../app/controllers/discovered_hosts_controller.rb:78
216
+ msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
160
217
  msgstr ""
161
218
 
162
- msgid "Facts refreshed for %s"
219
+ #: ../app/controllers/discovered_hosts_controller.rb:85
220
+ msgid "Host of type %s can not be rebooted"
163
221
  msgstr ""
164
222
 
165
- msgid "Failed to auto provision host %s: %s"
223
+ #: ../app/controllers/discovered_hosts_controller.rb:89
224
+ msgid "Rebooting host %s"
166
225
  msgstr ""
167
226
 
227
+ #: ../app/controllers/discovered_hosts_controller.rb:91
168
228
  msgid "Failed to reboot host %s"
169
229
  msgstr ""
170
230
 
231
+ #: ../app/controllers/discovered_hosts_controller.rb:94
171
232
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
172
233
  msgstr ""
173
234
 
174
- msgid "Failed to refresh facts for %s"
235
+ #: ../app/controllers/discovered_hosts_controller.rb:108
236
+ msgid "Failed to reboot hosts with error %s"
175
237
  msgstr ""
176
238
 
177
- msgid "Host"
239
+ #: ../app/controllers/discovered_hosts_controller.rb:122
240
+ msgid "Destroyed selected hosts"
178
241
  msgstr ""
179
242
 
180
- msgid "Host %{host} was provisioned with rule %{rule}"
243
+ #: ../app/controllers/discovered_hosts_controller.rb:124
244
+ msgid "The following hosts were not deleted: %s"
181
245
  msgstr ""
182
246
 
183
- msgid "Host group"
247
+ #: ../app/controllers/discovered_hosts_controller.rb:151
248
+ msgid "Failed to auto provision host %s: %s"
184
249
  msgstr ""
185
250
 
186
- msgid "Host group location %s must also be associated to the discovery rule"
187
- msgid_plural "Host group locations %s must also be associated to the discovery rule"
188
- msgstr[0] ""
189
- msgstr[1] ""
251
+ #: ../app/controllers/discovered_hosts_controller.rb:179
252
+ msgid "Discovered hosts are provisioning now"
253
+ msgstr ""
190
254
 
191
- msgid "Host group organization %s must also be associated to the discovery rule"
192
- msgid_plural "Host group organizations %s must also be associated to the discovery rule"
193
- msgstr[0] ""
194
- msgstr[1] ""
255
+ #: ../app/controllers/discovered_hosts_controller.rb:267
256
+ msgid "No hosts were found with that id or name"
257
+ msgstr ""
195
258
 
196
- msgid "Host of type %s can not be rebooted"
259
+ #: ../app/controllers/discovered_hosts_controller.rb:271
260
+ msgid "No hosts selected"
197
261
  msgstr ""
198
262
 
199
- msgid "Hostname for provisioned hosts"
263
+ #: ../app/controllers/discovered_hosts_controller.rb:277
264
+ msgid "Something went wrong while selecting hosts - %s"
200
265
  msgstr ""
201
266
 
202
- msgid "Hosts limit"
267
+ #: ../app/controllers/discovery_rules_controller.rb:66
268
+ msgid "Rule disabled"
203
269
  msgstr ""
204
270
 
205
- msgid "Hosts/limit"
271
+ #: ../app/controllers/discovery_rules_controller.rb:66
272
+ msgid "Rule enabled"
206
273
  msgstr ""
207
274
 
208
- msgid "IP Address"
275
+ #: ../app/helpers/discovered_hosts_helper.rb:11
276
+ msgid "%s ago"
209
277
  msgstr ""
210
278
 
211
- msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
279
+ #: ../app/helpers/discovered_hosts_helper.rb:15
280
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:42
281
+ msgid "Provision"
212
282
  msgstr ""
213
283
 
214
- msgid "Image API returned HTTP/%{code} with '%{body}"
284
+ #: ../app/helpers/discovered_hosts_helper.rb:16
285
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
286
+ msgid "Auto Provision"
215
287
  msgstr ""
216
288
 
217
- msgid "Incompatible version of puppet fact parser"
289
+ #: ../app/helpers/discovered_hosts_helper.rb:17
290
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:44
291
+ msgid "Refresh facts"
218
292
  msgstr ""
219
293
 
220
- msgid "Invalid facts, must be a Hash"
294
+ #: ../app/helpers/discovered_hosts_helper.rb:18
295
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:45
296
+ msgid "Reboot"
221
297
  msgstr ""
222
298
 
223
- msgid "Last facts upload"
299
+ #: ../app/helpers/discovered_hosts_helper.rb:21
300
+ msgid "Back"
224
301
  msgstr ""
225
302
 
226
- msgid "List all discovered hosts"
303
+ #: ../app/helpers/discovered_hosts_helper.rb:23
304
+ #: ../app/helpers/discovered_hosts_helper.rb:46
305
+ msgid "Select Action"
227
306
  msgstr ""
228
307
 
229
- msgid "List all discovery rules"
308
+ #: ../app/helpers/discovered_hosts_helper.rb:30
309
+ msgid "Expand All"
230
310
  msgstr ""
231
311
 
232
- msgid "Location"
312
+ #: ../app/helpers/discovered_hosts_helper.rb:35
313
+ msgid "Delete"
233
314
  msgstr ""
234
315
 
235
- msgid "Locations"
316
+ #: ../app/helpers/discovered_hosts_helper.rb:36
317
+ msgid "Are you sure?"
236
318
  msgstr ""
237
319
 
238
- msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
320
+ #: ../app/helpers/discovered_hosts_helper.rb:42
321
+ msgid "Delete hosts"
239
322
  msgstr ""
240
323
 
241
- msgid "Memory"
324
+ #: ../app/helpers/discovered_hosts_helper.rb:43
325
+ msgid "Assign Organization"
242
326
  msgstr ""
243
327
 
244
- msgid "Model"
328
+ #: ../app/helpers/discovered_hosts_helper.rb:44
329
+ msgid "Assign Location"
245
330
  msgstr ""
246
331
 
332
+ #: ../app/helpers/discovered_hosts_helper.rb:48
333
+ msgid "%s - The following hosts are about to be changed"
334
+ msgstr ""
335
+
336
+ #: ../app/helpers/discovered_hosts_helper.rb:57
247
337
  msgid "N/A"
248
338
  msgstr ""
249
339
 
250
- msgid "Name"
340
+ #: ../app/helpers/discovered_hosts_helper.rb:69
341
+ msgid "New in the last 24 hours"
251
342
  msgstr ""
252
343
 
253
- msgid "New Discovery Rule"
344
+ #: ../app/helpers/discovered_hosts_helper.rb:73
345
+ msgid "Not reported in more than 7 days"
254
346
  msgstr ""
255
347
 
256
- msgid "New Rule"
348
+ #: ../app/helpers/discovered_hosts_helper.rb:77
349
+ msgid "Reported in the last 7 days"
257
350
  msgstr ""
258
351
 
259
- msgid "New in the last 24 hours"
352
+ #: ../app/helpers/discovery_rules_helper.rb:26
353
+ msgid "Discovered Hosts"
260
354
  msgstr ""
261
355
 
262
- msgid "No discovered hosts available"
356
+ #: ../app/helpers/discovery_rules_helper.rb:27
357
+ msgid "Associated Hosts"
263
358
  msgstr ""
264
359
 
265
- msgid "No discovered hosts to provision"
360
+ #: ../app/helpers/discovery_rules_helper.rb:29
361
+ msgid "Disable rule '%s'?"
266
362
  msgstr ""
267
363
 
268
- msgid "No discovered hosts to reboot"
364
+ #: ../app/helpers/discovery_rules_helper.rb:29
365
+ msgid "Disable"
269
366
  msgstr ""
270
367
 
271
- msgid "No hosts selected"
368
+ #: ../app/helpers/discovery_rules_helper.rb:31
369
+ msgid "Enable"
272
370
  msgstr ""
273
371
 
274
- msgid "No hosts were found with that id or name"
372
+ #: ../app/helpers/discovery_rules_helper.rb:31
373
+ msgid "Enable rule '%s'?"
275
374
  msgstr ""
276
375
 
277
- msgid "No rule found for host %s"
376
+ #: ../app/helpers/discovery_rules_helper.rb:33
377
+ msgid "Delete rule '%s'?"
278
378
  msgstr ""
279
379
 
280
- msgid "Not reported in more than 7 days"
380
+ #: ../app/mailers/discovered_mailer.rb:4
381
+ msgid "Must specify a user with email enabled"
281
382
  msgstr ""
282
383
 
283
- msgid "Organization"
384
+ #: ../app/mailers/discovered_mailer.rb:15
385
+ msgid "Discovered hosts summary"
284
386
  msgstr ""
285
387
 
286
- msgid "Organizations"
388
+ #: ../app/models/discovery_rule.rb:11
389
+ msgid "can't contain white spaces."
287
390
  msgstr ""
288
391
 
289
- msgid "Please Confirm"
392
+ #: ../app/models/discovery_rule.rb:13
393
+ msgid "must start with a letter or ERB."
290
394
  msgstr ""
291
395
 
292
- msgid "Primary"
396
+ #: ../app/models/discovery_rule.rb:49
397
+ msgid "Host group organization %s must also be associated to the discovery rule"
398
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
399
+ msgstr[0] ""
400
+ msgstr[1] ""
401
+
402
+ #: ../app/models/discovery_rule.rb:55
403
+ msgid "Host group location %s must also be associated to the discovery rule"
404
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
405
+ msgstr[0] ""
406
+ msgstr[1] ""
407
+
408
+ #: ../app/models/host/discovered.rb:34
409
+ msgid "Invalid facts, must be a Hash"
293
410
  msgstr ""
294
411
 
295
- msgid "Provision"
412
+ #: ../app/models/host/discovered.rb:39
413
+ msgid ""
414
+ "Expected discovery_fact '%s' is missing, unable to detect primary interface an"
415
+ "d set hostname"
296
416
  msgstr ""
297
417
 
298
- msgid "Provision a discovered host"
418
+ #: ../app/models/host/discovered.rb:46
419
+ msgid ""
420
+ "Invalid facts: hash does not contain a valid value for any of the facts in the"
421
+ " discovery_hostname setting: %s"
299
422
  msgstr ""
300
423
 
301
- msgid "Reboot"
424
+ #: ../app/models/host/discovered.rb:107
425
+ msgid "Unable to assign subnet, primary interface is missing IP address"
302
426
  msgstr ""
303
427
 
304
- msgid "Reboot All"
428
+ #: ../app/models/host/discovered.rb:149
429
+ msgid "Could not get facts from proxy %{url}: %{error}"
430
+ msgstr ""
431
+
432
+ #: ../app/models/host/discovered.rb:165
433
+ msgid "Unable to reboot %{name} via %{url}: %{msg}"
305
434
  msgstr ""
306
435
 
436
+ #: ../app/models/host/discovered.rb:173
437
+ msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
438
+ msgstr ""
439
+
440
+ #: ../app/models/host/discovered.rb:192
441
+ msgid "Invalid hostname: Could not normalize the hostname"
442
+ msgstr ""
443
+
444
+ #: ../app/models/host/managed_extensions.rb:24
445
+ msgid "Reloading kernel on %s"
446
+ msgstr ""
447
+
448
+ #: ../app/models/host/managed_extensions.rb:26
307
449
  msgid "Rebooting %s"
308
450
  msgstr ""
309
451
 
310
- msgid "Rebooting a discovered host"
452
+ #: ../app/models/host/managed_extensions.rb:45
453
+ msgid "Operating system not set for host/hostgroup"
311
454
  msgstr ""
312
455
 
313
- msgid "Rebooting all discovered hosts"
456
+ #: ../app/models/host/managed_extensions.rb:47
457
+ msgid "Medium not set for host/hostgroup"
314
458
  msgstr ""
315
459
 
316
- msgid "Rebooting host %s"
460
+ #: ../app/models/host/managed_extensions.rb:54
461
+ msgid "Kexec template not associated with operating system"
317
462
  msgstr ""
318
463
 
319
- msgid "Refresh facts"
464
+ #: ../app/models/setting/discovered.rb:19
465
+ msgid "Fact name to use for primary interface detection"
320
466
  msgstr ""
321
467
 
322
- msgid "Refreshing the facts of a discovered host"
468
+ #: ../app/models/setting/discovered.rb:20
469
+ msgid "List of facts to use for the hostname (separated by comma, first wins)"
323
470
  msgstr ""
324
471
 
325
- msgid "Reloading kernel on %s"
472
+ #: ../app/models/setting/discovered.rb:21
473
+ msgid ""
474
+ "Automatically provision newly discovered hosts, according to the provisioning "
475
+ "rules"
326
476
  msgstr ""
327
477
 
328
- msgid "Reported in the last 7 days"
478
+ #: ../app/models/setting/discovered.rb:22
479
+ msgid "Automatically reboot discovered host during provisioning"
329
480
  msgstr ""
330
481
 
331
- msgid "Rule disabled"
482
+ #: ../app/models/setting/discovered.rb:28
483
+ msgid "The default prefix to use for the host name, must start with a letter"
332
484
  msgstr ""
333
485
 
334
- msgid "Rule enabled"
486
+ #: ../app/models/setting/discovered.rb:34
487
+ msgid "Extra facter columns to show in host lists (separate by comma)"
335
488
  msgstr ""
336
489
 
337
- msgid "Rule priority (lower integer means higher priority)"
490
+ #: ../app/models/setting/discovered.rb:41
491
+ msgid "The default location to place discovered hosts in"
338
492
  msgstr ""
339
493
 
340
- msgid "Select Action"
494
+ #: ../app/models/setting/discovered.rb:48
495
+ msgid "The default organization to place discovered hosts in"
496
+ msgstr ""
497
+
498
+ #: ../app/models/setting/discovered.rb:55
499
+ msgid "Regex to organize facts for highlights section"
500
+ msgstr ""
501
+
502
+ #: ../app/models/setting/discovered.rb:56
503
+ msgid "Regex to organize facts for storage section"
504
+ msgstr ""
505
+
506
+ #: ../app/models/setting/discovered.rb:57
507
+ msgid "Regex to organize facts for software section"
508
+ msgstr ""
509
+
510
+ #: ../app/models/setting/discovered.rb:58
511
+ msgid "Regex to organize facts for hardware section"
341
512
  msgstr ""
342
513
 
514
+ #: ../app/models/setting/discovered.rb:59
515
+ msgid "Regex to organize facts for network section"
516
+ msgstr ""
517
+
518
+ #: ../app/models/setting/discovered.rb:60
519
+ msgid "Regex to organize facts for ipmi section"
520
+ msgstr ""
521
+
522
+ #: ../app/services/foreman_discovery/fact_parser.rb:9
523
+ msgid ""
524
+ "Unable to detect primary interface using MAC '%{mac}' specified by discovery_f"
525
+ "act '%{fact}'"
526
+ msgstr ""
527
+
528
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
529
+ msgid "Image API returned HTTP/%{code} with '%{body}"
530
+ msgstr ""
531
+
532
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
533
+ msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
534
+ msgstr ""
535
+
536
+ #: ../app/views/dashboard/_discovery_widget.html.erb:9
537
+ msgid "No discovered hosts available"
538
+ msgstr ""
539
+
540
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:3
541
+ msgid "Host"
542
+ msgstr ""
543
+
544
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
545
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
546
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
547
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
548
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
549
+ msgid "Model"
550
+ msgstr ""
551
+
552
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
553
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
554
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
555
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
556
+ msgid "CPUs"
557
+ msgstr ""
558
+
559
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
560
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
561
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
562
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
563
+ msgid "Memory"
564
+ msgstr ""
565
+
566
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2
567
+ #: ../lib/foreman_discovery/engine.rb:136
568
+ msgid "Discovered hosts"
569
+ msgstr ""
570
+
571
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
572
+ msgid "items selected. Uncheck to Clear"
573
+ msgstr ""
574
+
575
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
343
576
  msgid "Select all items in this page"
344
577
  msgstr ""
345
578
 
346
- msgid "Select location"
579
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
580
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
581
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
582
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
583
+ msgid "Name"
347
584
  msgstr ""
348
585
 
349
- msgid "Select organization"
586
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
587
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
588
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
589
+ msgid "IP Address"
350
590
  msgstr ""
351
591
 
352
- msgid "Show a discovered host"
592
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
593
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
594
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
595
+ msgid "Disk count"
353
596
  msgstr ""
354
597
 
355
- msgid "Show a discovery rule"
598
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
599
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
600
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
601
+ msgid "Disks size"
356
602
  msgstr ""
357
603
 
358
- msgid "Something went wrong while selecting hosts - %s"
604
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
605
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
606
+ msgid "Location"
607
+ msgstr ""
608
+
609
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
610
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:13
611
+ msgid "Organization"
612
+ msgstr ""
613
+
614
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:22
615
+ msgid "Subnet"
616
+ msgstr ""
617
+
618
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:23
619
+ msgid "Last facts upload"
620
+ msgstr ""
621
+
622
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
623
+ msgid "Delete %s?"
624
+ msgstr ""
625
+
626
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:57
627
+ msgid "Please Confirm"
359
628
  msgstr ""
360
629
 
361
- msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
630
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:63
631
+ msgid "Cancel"
362
632
  msgstr ""
363
633
 
634
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:64
364
635
  msgid "Submit"
365
636
  msgstr ""
366
637
 
367
- msgid "Subnet"
638
+ #: ../app/views/discovered_hosts/index.html.erb:2
639
+ msgid "Reboot All"
368
640
  msgstr ""
369
641
 
370
- msgid "Target host group for this rule with all properties set"
642
+ #: ../app/views/discovered_hosts/index.html.erb:3
643
+ msgid "Auto Provision All"
371
644
  msgstr ""
372
645
 
373
- msgid "Template"
646
+ #: ../app/views/discovered_hosts/multiple_destroy.html.erb:4
647
+ msgid "Warning"
374
648
  msgstr ""
375
649
 
376
- msgid "The default location to place discovered hosts in"
650
+ #: ../app/views/discovered_hosts/multiple_destroy.html.erb:5
651
+ msgid ""
652
+ "This might take a while, as all hosts, facts and reports will be destroyed as "
653
+ "well"
377
654
  msgstr ""
378
655
 
379
- msgid "The default organization to place discovered hosts in"
656
+ #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
657
+ msgid "Select location"
380
658
  msgstr ""
381
659
 
382
- msgid "The default prefix to use for the host name, must start with a letter"
660
+ #: ../app/views/discovered_hosts/select_multiple_organization.html.erb:5
661
+ msgid "Select organization"
383
662
  msgstr ""
384
663
 
385
- msgid "The following hosts were not deleted: %s"
664
+ #: ../app/views/discovered_hosts/show.html.erb:1
665
+ msgid "Discovered host: %s"
386
666
  msgstr ""
387
667
 
388
- msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
668
+ #: ../app/views/discovered_hosts/show.html.erb:32
669
+ msgid "Identifier"
389
670
  msgstr ""
390
671
 
391
- msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
672
+ #: ../app/views/discovered_hosts/show.html.erb:33
673
+ msgid "MAC address"
392
674
  msgstr ""
393
675
 
394
- msgid "Unable to assign subnet, primary interface is missing IP address"
676
+ #: ../app/views/discovered_hosts/show.html.erb:34
677
+ msgid "IP address"
395
678
  msgstr ""
396
679
 
397
- msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
680
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
681
+ msgid "Summary report for discovered hosts from Foreman"
398
682
  msgstr ""
399
683
 
400
- msgid "Unable to find a discovery rule, no host provided (check permissions)"
684
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:9
685
+ msgid "<b>Foreman</b> Discovered hosts summary"
401
686
  msgstr ""
402
687
 
403
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
688
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
689
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
690
+ msgid "Summary from %{time} ago to %{now}"
404
691
  msgstr ""
405
692
 
406
- msgid "Unable to provision %{host}: %{errors}"
693
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
694
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
695
+ msgid "Discovered hosts from Foreman server at %{foreman_url}"
407
696
  msgstr ""
408
697
 
409
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
698
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:31
699
+ msgid "No discovered hosts for the selected period"
410
700
  msgstr ""
411
701
 
412
- msgid "Update a rule"
702
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:1
703
+ msgid "Foreman discovered hosts summary"
413
704
  msgstr ""
414
705
 
415
- msgid "Upload facts for a host, creating the host if required"
706
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:21
707
+ msgid "No new discovered hosts for this period"
416
708
  msgstr ""
417
709
 
418
- msgid "Value"
710
+ #: ../app/views/discovery_rules/_form.html.erb:5
711
+ msgid "Primary"
419
712
  msgstr ""
420
713
 
421
- msgid "Warning"
714
+ #: ../app/views/discovery_rules/_form.html.erb:7
715
+ msgid "Locations"
716
+ msgstr ""
717
+
718
+ #: ../app/views/discovery_rules/_form.html.erb:10
719
+ msgid "Organizations"
422
720
  msgstr ""
423
721
 
424
- msgid "When creating hostname patterns, make sure the resulting host names are unique. Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
722
+ #: ../app/views/discovery_rules/_form.html.erb:22
723
+ msgid "Target host group for this rule with all properties set"
425
724
  msgstr ""
426
725
 
427
- msgid "can't contain white spaces."
726
+ #: ../app/views/discovery_rules/_form.html.erb:24
727
+ msgid "Template"
428
728
  msgstr ""
429
729
 
430
- msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
730
+ #: ../app/views/discovery_rules/_form.html.erb:26
731
+ msgid ""
732
+ "Specify target hostname template pattern in the same syntax as in Provisioning"
733
+ " Templates (ERB)."
431
734
  msgstr ""
432
735
 
433
- msgid "enables to limit maximum amount of provisioned hosts per rule"
736
+ #: ../app/views/discovery_rules/_form.html.erb:29
737
+ msgid ""
738
+ "Domain will be appended automatically. A hostname based on MAC address will be"
739
+ " used when left blank. In addition to @host attribute function rand for random"
740
+ " integers is available. Examples:"
434
741
  msgstr ""
435
742
 
436
- msgid "filter results"
743
+ #: ../app/views/discovery_rules/_form.html.erb:42
744
+ msgid ""
745
+ "When creating hostname patterns, make sure the resulting host names are unique"
746
+ ". Hostnames must not start with numbers. A good approach is to use unique info"
747
+ "rmation provided by facter (MAC address, BIOS or serial ID)."
437
748
  msgstr ""
438
749
 
439
- msgid "flag is used for temporary shutdown of rules"
750
+ #: ../app/views/discovery_rules/_form.html.erb:43
751
+ msgid "Hostname for provisioned hosts"
440
752
  msgstr ""
441
753
 
442
- 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)"
754
+ #: ../app/views/discovery_rules/_form.html.erb:44
755
+ msgid "Hosts limit"
443
756
  msgstr ""
444
757
 
445
- msgid "items selected. Uncheck to Clear"
758
+ #: ../app/views/discovery_rules/_form.html.erb:44
759
+ msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
446
760
  msgstr ""
447
761
 
448
- msgid "must start with a letter or ERB."
762
+ #: ../app/views/discovery_rules/_form.html.erb:45
763
+ msgid "Rule priority (lower integer means higher priority)"
449
764
  msgstr ""
450
765
 
451
- msgid "not required if it's a virtual machine"
766
+ #: ../app/views/discovery_rules/edit.html.erb:1
767
+ msgid "Edit Discovery Rule"
452
768
  msgstr ""
453
769
 
454
- msgid "not required if using a subnet with DHCP proxy"
770
+ #: ../app/views/discovery_rules/index.html.erb:1
771
+ msgid "Discovery Rules"
455
772
  msgstr ""
456
773
 
457
- msgid "number of entries per request"
774
+ #: ../app/views/discovery_rules/index.html.erb:2
775
+ msgid "New Rule"
458
776
  msgstr ""
459
777
 
460
- msgid "paginate results"
778
+ #: ../app/views/discovery_rules/index.html.erb:6
779
+ msgid "DiscoveryRule|Name"
461
780
  msgstr ""
462
781
 
463
- msgid "puts the rules in order, low numbers go first. Must be greater then zero"
782
+ #: ../app/views/discovery_rules/index.html.erb:7
783
+ msgid "DiscoveryRule|Priority"
464
784
  msgstr ""
465
785
 
466
- msgid "query to match discovered hosts for the particular rule"
786
+ #: ../app/views/discovery_rules/index.html.erb:8
787
+ msgid "DiscoveryRule|Query"
467
788
  msgstr ""
468
789
 
469
- msgid "represents rule name shown to the users"
790
+ #: ../app/views/discovery_rules/index.html.erb:9
791
+ msgid "Host group"
470
792
  msgstr ""
471
793
 
472
- msgid "required if value is not inherited from host group or default password in settings"
794
+ #: ../app/views/discovery_rules/index.html.erb:10
795
+ msgid "Hosts/limit"
473
796
  msgstr ""
474
797
 
475
- msgid "sort results"
798
+ #: ../app/views/discovery_rules/index.html.erb:11
799
+ msgid "DiscoveryRule|Enabled"
476
800
  msgstr ""
477
801
 
478
- msgid "the hostgroup that is used to auto provision a host"
802
+ #: ../app/views/discovery_rules/new.html.erb:1
803
+ msgid "New Discovery Rule"
804
+ msgstr ""
805
+
806
+ #: ../db/seeds.d/70_discovery_mail_notification.rb:3
807
+ msgid "A summary of discovered hosts"
808
+ msgstr ""
809
+
810
+ #: ../lib/foreman_discovery/engine.rb:141
811
+ msgid "Discovery rules"
812
+ msgstr ""
813
+
814
+ #: ../lib/foreman_discovery/engine.rb:146
815
+ msgid "Discovery widget"
479
816
  msgstr ""