foreman_discovery 5.0.2 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +4 -7
  3. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -0
  4. data/app/controllers/api/v2/fact_values_controller_extensions.rb +11 -0
  5. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +6 -3
  6. data/app/controllers/discovered_hosts_controller.rb +46 -11
  7. data/app/controllers/discovery_rules_controller.rb +1 -1
  8. data/app/helpers/discovered_hosts_helper.rb +33 -16
  9. data/app/models/concerns/discovery_taxonomy_extensions.rb +7 -0
  10. data/app/models/concerns/fact_value_extensions.rb +8 -0
  11. data/app/models/discovery_rule.rb +4 -6
  12. data/app/models/host/discovered.rb +29 -10
  13. data/app/models/host/managed_extensions.rb +2 -10
  14. data/app/models/setting/discovered.rb +22 -28
  15. data/app/services/foreman_discovery/host_converter.rb +19 -10
  16. data/app/views/api/v2/discovered_hosts/main.json.rabl +1 -1
  17. data/app/views/dashboard/_discovery_widget_host.html.erb +1 -1
  18. data/app/views/discovered_hosts/_discovered_host.html.erb +1 -1
  19. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +32 -1
  20. data/app/views/discovered_hosts/index.html.erb +2 -2
  21. data/app/views/discovered_hosts/show.html.erb +5 -5
  22. data/app/views/discovered_mailer/_discovered_host.html.erb +1 -1
  23. data/app/views/discovered_mailer/discovered_summary.text.erb +2 -2
  24. data/app/views/discovery_rules/_form.html.erb +2 -19
  25. data/app/views/discovery_rules/_template_inline.erb +10 -0
  26. data/app/views/discovery_rules/index.html.erb +1 -1
  27. data/app/views/foreman_discovery/debian_kexec.erb +34 -0
  28. data/app/views/foreman_discovery/redhat_kexec.erb +5 -4
  29. data/config/routes.rb +4 -0
  30. data/db/migrate/20141223142759_fill_discovery_attribute_sets_for_existing_hosts.rb +15 -1
  31. data/db/migrate/20160719124942_add_missing_view_permissions.rb +18 -0
  32. data/db/seeds.d/50_discovery_templates.rb +15 -13
  33. data/lib/discovery.rake +1 -0
  34. data/lib/foreman_discovery/engine.rb +24 -10
  35. data/lib/foreman_discovery/version.rb +1 -1
  36. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  37. data/locale/ca/foreman_discovery.edit.po +274 -136
  38. data/locale/ca/foreman_discovery.po +396 -328
  39. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  40. data/locale/de/foreman_discovery.edit.po +309 -171
  41. data/locale/de/foreman_discovery.po +419 -361
  42. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/en/foreman_discovery.edit.po +881 -0
  44. data/locale/en/foreman_discovery.po +665 -0
  45. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/en_GB/foreman_discovery.edit.po +279 -141
  47. data/locale/en_GB/foreman_discovery.po +446 -391
  48. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/es/foreman_discovery.edit.po +277 -139
  50. data/locale/es/foreman_discovery.po +415 -362
  51. data/locale/foreman_discovery.pot +241 -135
  52. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/fr/foreman_discovery.edit.po +289 -151
  54. data/locale/fr/foreman_discovery.po +439 -411
  55. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/gl/foreman_discovery.edit.po +266 -128
  57. data/locale/gl/foreman_discovery.po +320 -246
  58. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  59. data/locale/it/foreman_discovery.edit.po +277 -139
  60. data/locale/it/foreman_discovery.po +407 -352
  61. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  62. data/locale/ja/foreman_discovery.edit.po +279 -141
  63. data/locale/ja/foreman_discovery.po +411 -339
  64. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  65. data/locale/ko/foreman_discovery.edit.po +277 -139
  66. data/locale/ko/foreman_discovery.po +411 -339
  67. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  68. data/locale/pt_BR/foreman_discovery.edit.po +282 -144
  69. data/locale/pt_BR/foreman_discovery.po +430 -394
  70. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  71. data/locale/ru/foreman_discovery.edit.po +371 -232
  72. data/locale/ru/foreman_discovery.po +448 -385
  73. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  74. data/locale/sv_SE/foreman_discovery.edit.po +270 -132
  75. data/locale/sv_SE/foreman_discovery.po +336 -260
  76. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  77. data/locale/zh_CN/foreman_discovery.edit.po +279 -141
  78. data/locale/zh_CN/foreman_discovery.po +412 -336
  79. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  80. data/locale/zh_TW/foreman_discovery.edit.po +279 -141
  81. data/locale/zh_TW/foreman_discovery.po +412 -338
  82. data/test/functional/api/v2/discovered_hosts_controller_test.rb +30 -22
  83. data/test/functional/api/v2/discovery_rules_controller_test.rb +7 -0
  84. data/test/functional/api/v2/fact_value_extensions_test.rb +37 -0
  85. data/test/functional/discovered_hosts_controller_test.rb +89 -16
  86. data/test/functional/discovery_rules_controller_test.rb +1 -1
  87. data/test/test_helper_discovery.rb +1 -1
  88. data/test/unit/discovered_extensions_test.rb +65 -21
  89. data/test/unit/discovery_attribute_set_test.rb +4 -4
  90. data/test/unit/discovery_taxonomy_extensions_test.rb +31 -0
  91. data/test/unit/host_discovered_test.rb +110 -14
  92. metadata +121 -110
  93. data/app/helpers/concerns/foreman_discovery/settings_helper_extensions.rb +0 -34
@@ -1,17 +1,17 @@
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
4
  #
5
5
  # Translators:
6
- # Andi Chandler <andi@gowling.com>, 2015
6
+ # Andi Chandler <andi@gowling.com>, 2015-2016
7
7
  # Dominic Cleal <dominic@cleal.org>, 2013-2015
8
8
  # Lukáš Zapletal, 2015
9
9
  # Lukáš Zapletal, 2015
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: Foreman\n"
13
- "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
14
- "PO-Revision-Date: 2015-12-27 01:18+0000\n"
12
+ "Project-Id-Version: foreman_discovery 5.0.2\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "PO-Revision-Date: 2016-03-12 10:51+0000\n"
15
15
  "Last-Translator: Andi Chandler <andi@gowling.com>\n"
16
16
  "Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
17
17
  "man/language/en_GB/)\n"
@@ -21,159 +21,200 @@ msgstr ""
21
21
  "Language: en_GB\n"
22
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
23
 
24
- msgid "List all discovered hosts"
25
- msgstr "List all discovered hosts"
24
+ msgid "%s - The following hosts are about to be changed"
25
+ msgstr "%s - The following hosts are about to be changed"
26
26
 
27
- msgid "filter results"
28
- msgstr "filter results"
27
+ msgid "%s ago"
28
+ msgstr "%s ago"
29
29
 
30
- msgid "sort results"
31
- msgstr "sort results"
30
+ msgid "%s discovered hosts were provisioned"
31
+ msgstr "%s discovered hosts were provisioned"
32
32
 
33
- msgid "paginate results"
34
- msgstr "paginate results"
33
+ msgid "<b>Foreman</b> Discovered hosts summary"
34
+ msgstr "<b>Foreman</b> Discovered hosts summary"
35
35
 
36
- msgid "number of entries per request"
37
- msgstr "number of entries per request"
36
+ msgid "A summary of discovered hosts"
37
+ msgstr "A summary of discovered hosts"
38
38
 
39
- msgid "Show a discovered host"
40
- msgstr "Show a discovered host"
39
+ msgid "Assign Location"
40
+ msgstr "Assign Location"
41
41
 
42
- msgid "Create a discovered host for testing (use /facts to create new hosts)"
43
- msgstr "Create a discovered host for testing (use /facts to create new hosts)"
42
+ msgid "Assign Organization"
43
+ msgstr "Assign Organisation"
44
44
 
45
- msgid "Provision a discovered host"
46
- msgstr "Provision a discovered host"
45
+ msgid "Associated Hosts"
46
+ msgstr "Associated Hosts"
47
47
 
48
- msgid "not required if using a subnet with DHCP proxy"
49
- msgstr "not required if using a subnet with DHCP proxy"
48
+ msgid "Auto Provision"
49
+ msgstr "Auto Provision"
50
50
 
51
- msgid "not required if it's a virtual machine"
52
- msgstr "not required if it's a virtual machine"
51
+ msgid "Auto Provision All"
52
+ msgstr "Auto Provision All"
53
53
 
54
- msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
55
- msgstr "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
54
+ msgid "Auto provisioning"
55
+ msgstr ""
56
56
 
57
- msgid ""
58
- "required if value is not inherited from host group or default password in sett"
59
- "ings"
57
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
60
58
  msgstr ""
61
- "required if value is not inherited from host group or default password in sett"
62
- "ings"
63
59
 
64
- msgid "Delete a discovered host"
65
- msgstr "Delete a discovered host"
60
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
61
+ msgstr "Automatically provision newly discovered hosts, according to the provisioning rules"
66
62
 
67
- msgid "Upload facts for a host, creating the host if required"
68
- msgstr "Upload facts for a host, creating the host if required"
63
+ msgid "Automatically reboot or kexec discovered host during provisioning"
64
+ msgstr ""
69
65
 
70
- msgid ""
71
- "hash containing facts for the host with minimum set of facts: discovery_bootif"
72
- ", macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in cas"
73
- "e primary interface is named eth0)"
66
+ msgid "Back"
67
+ msgstr "Back"
68
+
69
+ msgid "CPUs"
70
+ msgstr "CPUs"
71
+
72
+ msgid "Cancel"
73
+ msgstr "Cancel"
74
+
75
+ msgid "Clean all facts"
74
76
  msgstr ""
75
- "hash containing facts for the host with minimum set of facts: discovery_bootif"
76
- ", macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in cas"
77
- "e primary interface is named eth0)"
78
77
 
79
- msgid "Execute rules against a discovered host"
80
- msgstr "Execute rules against a discovered host"
78
+ msgid "Clean all reported facts during provisioning (except discovery facts)"
79
+ msgstr ""
81
80
 
82
- msgid "Host %{host} was provisioned with rule %{rule}"
83
- msgstr "Host %{host} was provisioned with rule %{rule}"
81
+ msgid "Could not get facts from proxy %{url}: %{error}"
82
+ msgstr "Could not get facts from proxy %{url}: %{error}"
84
83
 
85
- msgid "Unable to provision %{host}: %{errors}"
86
- msgstr "Unable to provision %{host}: %{errors}"
84
+ msgid "Create a discovered host for testing (use /facts to create new hosts)"
85
+ msgstr "Create a discovered host for testing (use /facts to create new hosts)"
87
86
 
88
- msgid "No rule found for host %s"
89
- msgstr "No rule found for host %s"
87
+ msgid "Create a discovery rule"
88
+ msgstr "Create a discovery rule"
90
89
 
91
- msgid "Execute rules against all currently discovered hosts"
92
- msgstr "Execute rules against all currently discovered hosts"
90
+ msgid "Create host"
91
+ msgstr ""
93
92
 
94
- msgid "Errors during auto provisioning: %s"
95
- msgstr "Errors during auto provisioning: %s"
93
+ msgid "Delete %s?"
94
+ msgstr "Delete %s?"
96
95
 
97
- msgid "No discovered hosts to provision"
98
- msgstr "No discovered hosts to provision"
96
+ msgid "Delete a discovered host"
97
+ msgstr "Delete a discovered host"
99
98
 
100
- msgid "%s discovered hosts were provisioned"
101
- msgstr "%s discovered hosts were provisioned"
99
+ msgid "Delete a rule"
100
+ msgstr "Delete a rule"
102
101
 
103
- msgid "Refreshing the facts of a discovered host"
104
- msgstr "Refreshing the facts of a discovered host"
102
+ msgid "Delete hosts"
103
+ msgstr "Delete hosts"
105
104
 
106
- msgid "Rebooting a discovered host"
107
- msgstr "Rebooting a discovered host"
105
+ msgid "Delete rule '%s'?"
106
+ msgstr "Delete rule '%s'?"
108
107
 
109
- msgid "Rebooting all discovered hosts"
110
- msgstr "Rebooting all discovered hosts"
108
+ msgid "Destroyed selected hosts"
109
+ msgstr "Destroyed selected hosts"
110
+
111
+ msgid "Disable"
112
+ msgstr "Disable"
113
+
114
+ msgid "Disable rule '%s'?"
115
+ msgstr "Disable rule '%s'?"
116
+
117
+ msgid "Discovered Hosts"
118
+ msgstr "Discovered Hosts"
119
+
120
+ msgid "Discovered host: %s"
121
+ msgstr "Discovered host: %s"
122
+
123
+ msgid "Discovered hosts"
124
+ msgstr "Discovered hosts"
125
+
126
+ msgid "Discovered hosts are provisioning now"
127
+ msgstr "Discovered hosts are provisioning now"
111
128
 
112
129
  msgid "Discovered hosts are rebooting now"
113
130
  msgstr "Discovered hosts are rebooting now"
114
131
 
115
- msgid "List all discovery rules"
116
- msgstr "List all discovery rules"
132
+ msgid "Discovered hosts from Foreman server at %{foreman_url}"
133
+ msgstr "Discovered hosts from Foreman server at %{foreman_url}"
117
134
 
118
- msgid "Show a discovery rule"
119
- msgstr "Show a discovery rule"
135
+ msgid "Discovered hosts summary"
136
+ msgstr "Discovered hosts summary"
120
137
 
121
- msgid "represents rule name shown to the users"
122
- msgstr "represents rule name shown to the users"
138
+ msgid "Discovery Rules"
139
+ msgstr "Discovery Rules"
123
140
 
124
- msgid "query to match discovered hosts for the particular rule"
125
- msgstr "query to match discovered hosts for the particular rule"
141
+ msgid "Discovery location"
142
+ msgstr ""
126
143
 
127
- msgid "the hostgroup that is used to auto provision a host"
128
- msgstr "the hostgroup that is used to auto provision a host"
144
+ msgid "Discovery organization"
145
+ msgstr ""
129
146
 
130
- msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
131
- msgstr "defines a pattern to assign human-readable hostnames to the matching hosts"
147
+ msgid "Discovery rules"
148
+ msgstr "Discovery rules"
132
149
 
133
- msgid "enables to limit maximum amount of provisioned hosts per rule"
134
- msgstr "enables to limit maximum amount of provisioned hosts per rule"
150
+ msgid "Discovery widget"
151
+ msgstr "Discovery widget"
135
152
 
136
- msgid "puts the rules in order, low numbers go first. Must be greater then zero"
137
- msgstr "puts the rules in order, low numbers go first. Must be greater then zero"
153
+ msgid "DiscoveryRule|Enabled"
154
+ msgstr "Enabled"
138
155
 
139
- msgid "flag is used for temporary shutdown of rules"
140
- msgstr "flag is used for temporary shutdown of rules"
156
+ msgid "DiscoveryRule|Name"
157
+ msgstr "Name"
141
158
 
142
- msgid "Create a discovery rule"
143
- msgstr "Create a discovery rule"
159
+ msgid "DiscoveryRule|Priority"
160
+ msgstr "Priority"
144
161
 
145
- msgid "Update a rule"
146
- msgstr "Update a rule"
162
+ msgid "DiscoveryRule|Query"
163
+ msgstr "Query"
147
164
 
148
- msgid "Delete a rule"
149
- msgstr "Delete a rule"
165
+ msgid "Disk count"
166
+ msgstr "Disk count"
150
167
 
151
- msgid "Unable to find a discovery rule, no host provided (check permissions)"
152
- msgstr "Unable to find a discovery rule, no host provided (check permissions)"
168
+ msgid "Disks size"
169
+ msgstr "Disks size"
153
170
 
154
- msgid "No hostgroup associated with rule '%s'"
171
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
155
172
  msgstr ""
156
173
 
174
+ msgid "Edit Discovery Rule"
175
+ msgstr "Edit Discovery Rule"
176
+
177
+ msgid "Enable"
178
+ msgstr "Enable"
179
+
180
+ msgid "Enable rule '%s'?"
181
+ msgstr "Enable rule '%s'?"
182
+
183
+ msgid "Errors during auto provisioning: %s"
184
+ msgstr "Errors during auto provisioning: %s"
185
+
157
186
  msgid "Errors during reboot: %s"
158
187
  msgstr "Errors during reboot: %s"
159
188
 
160
- msgid "No discovered hosts to reboot"
161
- msgstr "No discovered hosts to reboot"
189
+ msgid "Execute rules against a discovered host"
190
+ msgstr "Execute rules against a discovered host"
162
191
 
163
- msgid "Facts refreshed for %s"
164
- msgstr "Facts refreshed for %s"
192
+ msgid "Execute rules against all currently discovered hosts"
193
+ msgstr "Execute rules against all currently discovered hosts"
165
194
 
166
- msgid "Failed to refresh facts for %s"
167
- msgstr "Failed to refresh facts for %s"
195
+ msgid "Expand All"
196
+ msgstr "Expand All"
168
197
 
169
- msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
198
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
199
+ msgstr "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
200
+
201
+ msgid "Extra facter columns to show in host lists (separate by comma)"
202
+ msgstr "Extra facter columns to show in host lists (separate by comma)"
203
+
204
+ msgid "Fact columns"
170
205
  msgstr ""
171
206
 
172
- msgid "Host of type %s can not be rebooted"
173
- msgstr "Host of type %s can not be rebooted"
207
+ msgid "Fact name to use for primary interface detection"
208
+ msgstr "Fact name to use for primary interface detection"
174
209
 
175
- msgid "Rebooting host %s"
176
- msgstr "Rebooting host %s"
210
+ msgid "Facts could not be imported"
211
+ msgstr ""
212
+
213
+ msgid "Facts refreshed for %s"
214
+ msgstr "Facts refreshed for %s"
215
+
216
+ msgid "Failed to auto provision host %s: %s"
217
+ msgstr "Failed to auto provision host %s: %s"
177
218
 
178
219
  msgid "Failed to reboot host %s"
179
220
  msgstr "Failed to reboot host %s"
@@ -182,438 +223,452 @@ msgid "Failed to reboot host %{hostname} with error %{error_message}"
182
223
  msgstr "Failed to reboot host %{hostname} with error %{error_message}"
183
224
 
184
225
  msgid "Failed to reboot hosts with error %s"
185
- msgstr ""
226
+ msgstr "Failed to reboot hosts with error %s"
186
227
 
187
- msgid "Destroyed selected hosts"
188
- msgstr "Destroyed selected hosts"
189
-
190
- msgid "The following hosts were not deleted: %s"
191
- msgstr "The following hosts were not deleted: %s"
228
+ msgid "Failed to refresh facts for %s"
229
+ msgstr "Failed to refresh facts for %s"
192
230
 
193
- msgid "Failed to auto provision host %s: %s"
194
- msgstr "Failed to auto provision host %s: %s"
231
+ msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
232
+ msgstr "Failed to refresh facts for %{hostname} with error %{error_message}"
195
233
 
196
- msgid "Discovered hosts are provisioning now"
197
- msgstr "Discovered hosts are provisioning now"
234
+ msgid "Foreman discovered hosts summary"
235
+ msgstr "Foreman discovered hosts summary"
198
236
 
199
- msgid "No hosts were found with that id or name"
200
- msgstr "No hosts were found with that id or name"
237
+ msgid "Hardware"
238
+ msgstr "Hardware"
201
239
 
202
- msgid "No hosts selected"
203
- msgstr "No hosts selected"
240
+ msgid "Hardware facts"
241
+ msgstr ""
204
242
 
205
- msgid "Something went wrong while selecting hosts - %s"
206
- msgstr "Something went wrong while selecting hosts - %s"
243
+ msgid "Highlighted facts"
244
+ msgstr ""
207
245
 
208
- msgid "Rule disabled"
209
- msgstr "Rule disabled"
246
+ msgid "Highlights"
247
+ msgstr "Highlights"
210
248
 
211
- msgid "Rule enabled"
212
- msgstr "Rule enabled"
249
+ msgid "Host"
250
+ msgstr "Host"
213
251
 
214
- msgid "%s ago"
215
- msgstr "%s ago"
252
+ msgid "Host %{host} was provisioned with rule %{rule}"
253
+ msgstr "Host %{host} was provisioned with rule %{rule}"
216
254
 
217
- msgid "Provision"
218
- msgstr "Provision"
255
+ msgid "Host group"
256
+ msgstr "Host group"
219
257
 
220
- msgid "Auto Provision"
221
- msgstr "Auto Provision"
258
+ msgid "Host group location %s must also be associated to the discovery rule"
259
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
260
+ msgstr[0] "Host group location %s must also be associated to the discovery rule"
261
+ msgstr[1] "Host group locations %s must also be associated to the discovery rule"
222
262
 
223
- msgid "Refresh facts"
224
- msgstr "Refresh facts"
263
+ msgid "Host group organization %s must also be associated to the discovery rule"
264
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
265
+ msgstr[0] "Host group organisation %s must also be associated to the discovery rule"
266
+ msgstr[1] "Host group organisations %s must also be associated to the discovery rule"
225
267
 
226
- msgid "Reboot"
227
- msgstr "Reboot"
268
+ msgid "Host of type %s can not be rebooted"
269
+ msgstr "Host of type %s can not be rebooted"
228
270
 
229
- msgid "Back"
271
+ msgid "Hostname facts"
230
272
  msgstr ""
231
273
 
232
- msgid "Select Action"
233
- msgstr "Select Action"
274
+ msgid "Hostname for provisioned hosts"
275
+ msgstr "Hostname for provisioned hosts"
234
276
 
235
- msgid "Expand All"
277
+ msgid "Hostname prefix"
236
278
  msgstr ""
237
279
 
238
- msgid "Delete"
239
- msgstr "Delete"
280
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
281
+ msgstr ""
240
282
 
241
- msgid "Are you sure?"
242
- msgstr "Are you sure?"
283
+ msgid "Hosts limit"
284
+ msgstr "Hosts limit"
243
285
 
244
- msgid "Delete hosts"
245
- msgstr "Delete hosts"
286
+ msgid "Hosts/limit"
287
+ msgstr "Hosts/limit"
246
288
 
247
- msgid "Assign Organization"
248
- msgstr "Assign Organisation"
289
+ msgid "IP Address"
290
+ msgstr "IP Address"
249
291
 
250
- msgid "Assign Location"
251
- msgstr "Assign Location"
292
+ msgid "IP address"
293
+ msgstr "IP address"
252
294
 
253
- msgid "%s - The following hosts are about to be changed"
254
- msgstr "%s - The following hosts are about to be changed"
295
+ msgid "IPMI"
296
+ msgstr "IPMI"
255
297
 
256
- msgid "N/A"
257
- msgstr "N/A"
298
+ msgid "IPMI facts"
299
+ msgstr ""
258
300
 
259
- msgid "New in the last 24 hours"
260
- msgstr "New in the last 24 hours"
301
+ msgid "Identifier"
302
+ msgstr "Identifier"
261
303
 
262
- msgid "Not reported in more than 7 days"
263
- msgstr "Not reported in more than 7 days"
304
+ msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
305
+ msgstr "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
264
306
 
265
- msgid "Reported in the last 7 days"
266
- msgstr "Reported in the last 7 days"
307
+ msgid "Image API returned HTTP/%{code} with '%{body}"
308
+ msgstr "Image API returned HTTP/%{code} with '%{body}"
267
309
 
268
- msgid "Discovered Hosts"
310
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
269
311
  msgstr ""
270
312
 
271
- msgid "Associated Hosts"
313
+ msgid "Interface fact"
272
314
  msgstr ""
273
315
 
274
- msgid "Disable rule '%s'?"
275
- msgstr ""
316
+ msgid "Interfaces"
317
+ msgstr "Interfaces"
276
318
 
277
- msgid "Disable"
278
- msgstr "Disable"
319
+ msgid "Invalid facts, must be a Hash"
320
+ msgstr "Invalid facts, must be a Hash"
279
321
 
280
- msgid "Enable"
281
- msgstr "Enable"
322
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
323
+ msgstr "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
282
324
 
283
- msgid "Enable rule '%s'?"
284
- msgstr ""
325
+ msgid "Invalid hostname: Could not normalize the hostname"
326
+ msgstr "Invalid hostname: Could not normalise the hostname"
285
327
 
286
- msgid "Delete rule '%s'?"
328
+ msgid "Kexec template not associated with operating system"
329
+ msgstr "Kexec template not associated with operating system"
330
+
331
+ msgid "Last facts upload"
332
+ msgstr "Last facts upload"
333
+
334
+ msgid "List all discovered hosts"
335
+ msgstr "List all discovered hosts"
336
+
337
+ msgid "List all discovery rules"
338
+ msgstr "List all discovery rules"
339
+
340
+ msgid "List all fact values of a given discovered host"
287
341
  msgstr ""
288
342
 
289
- msgid "Must specify a user with email enabled"
343
+ msgid "List of facts to use for the hostname (separated by comma, first wins)"
344
+ msgstr "List of facts to use for the hostname (separated by comma, first wins)"
345
+
346
+ msgid "Location"
347
+ msgstr "Location"
348
+
349
+ msgid "Locations"
350
+ msgstr "Locations"
351
+
352
+ msgid "Lock PXE"
290
353
  msgstr ""
291
354
 
292
- msgid "Discovered hosts summary"
355
+ msgid "Locked template name"
293
356
  msgstr ""
294
357
 
295
- msgid "can't contain white spaces."
296
- msgstr "can't contain white spaces."
358
+ msgid "MAC address"
359
+ msgstr "MAC address"
297
360
 
298
- msgid "must start with a letter or ERB."
299
- msgstr "must start with a letter or ERB."
361
+ msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
362
+ msgstr "Maximum hosts provisioned with this rule (0 = unlimited)"
300
363
 
301
- msgid "Host group organization %s must also be associated to the discovery rule"
302
- msgid_plural "Host group organizations %s must also be associated to the discovery rule"
303
- msgstr[0] "Host group organisation %s must also be associated to the discovery rule"
304
- msgstr[1] "Host group organisations %s must also be associated to the discovery rule"
364
+ msgid "Medium not set for host/hostgroup"
365
+ msgstr "Medium not set for host/hostgroup"
305
366
 
306
- msgid "Host group location %s must also be associated to the discovery rule"
307
- msgid_plural "Host group locations %s must also be associated to the discovery rule"
308
- msgstr[0] "Host group location %s must also be associated to the discovery rule"
309
- msgstr[1] "Host group locations %s must also be associated to the discovery rule"
367
+ msgid "Memory"
368
+ msgstr "Memory"
310
369
 
311
- msgid "Invalid facts, must be a Hash"
312
- msgstr "Invalid facts, must be a Hash"
370
+ msgid "Miscellaneous"
371
+ msgstr "Miscellaneous"
313
372
 
314
- msgid ""
315
- "Expected discovery_fact '%s' is missing, unable to detect primary interface an"
316
- "d set hostname"
317
- msgstr ""
318
- "Expected discovery_fact '%s' is missing, unable to detect primary interface an"
319
- "d set hostname"
373
+ msgid "Model"
374
+ msgstr "Model"
320
375
 
321
- msgid ""
322
- "Invalid facts: hash does not contain a valid value for any of the facts in the"
323
- " discovery_hostname setting: %s"
376
+ msgid "Must specify a user with email enabled"
377
+ msgstr "Must specify a user with email enabled"
378
+
379
+ msgid "N/A"
380
+ msgstr "N/A"
381
+
382
+ msgid "Name"
383
+ msgstr "Name"
384
+
385
+ msgid "Network"
386
+ msgstr "Network"
387
+
388
+ msgid "Network facts"
324
389
  msgstr ""
325
390
 
326
- msgid "Unable to assign subnet, primary interface is missing IP address"
327
- msgstr "Unable to assign subnet, primary interface is missing IP address"
391
+ msgid "New Discovery Rule"
392
+ msgstr "New Discovery Rule"
328
393
 
329
- msgid "Could not get facts from proxy %{url}: %{error}"
330
- msgstr "Could not get facts from proxy %{url}: %{error}"
394
+ msgid "New Rule"
395
+ msgstr "New Rule"
331
396
 
332
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
333
- msgstr "Unable to reboot %{name} via %{url}: %{msg}"
397
+ msgid "New in the last 24 hours"
398
+ msgstr "New in the last 24 hours"
334
399
 
335
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
336
- msgstr "Unable to perform kexec on %{name} via %{url}: %{msg}"
400
+ msgid "No discovered hosts available"
401
+ msgstr "No discovered hosts available"
337
402
 
338
- msgid "Invalid hostname: Could not normalize the hostname"
339
- msgstr ""
403
+ msgid "No discovered hosts for the selected period"
404
+ msgstr "No discovered hosts for the selected period"
340
405
 
341
- msgid "Reloading kernel on %s"
342
- msgstr "Reloading kernel on %s"
406
+ msgid "No discovered hosts to provision"
407
+ msgstr "No discovered hosts to provision"
343
408
 
344
- msgid "Rebooting %s"
345
- msgstr "Rebooting %s"
409
+ msgid "No discovered hosts to reboot"
410
+ msgstr "No discovered hosts to reboot"
411
+
412
+ msgid "No hostgroup associated with rule '%s'"
413
+ msgstr "No hostgroup associated with rule '%s'"
414
+
415
+ msgid "No hosts selected"
416
+ msgstr "No hosts selected"
417
+
418
+ msgid "No hosts were found with that id or name"
419
+ msgstr "No hosts were found with that id or name"
420
+
421
+ msgid "No new discovered hosts for this period"
422
+ msgstr "No new discovered hosts for this period"
423
+
424
+ msgid "No rule found for host %s"
425
+ msgstr "No rule found for host %s"
426
+
427
+ msgid "Not reported in more than 7 days"
428
+ msgstr "Not reported in more than 7 days"
346
429
 
347
430
  msgid "Operating system not set for host/hostgroup"
348
- msgstr ""
431
+ msgstr "Operating system not set for host/hostgroup"
349
432
 
350
- msgid "Medium not set for host/hostgroup"
351
- msgstr ""
433
+ msgid "Organization"
434
+ msgstr "Organisation"
352
435
 
353
- msgid "Kexec template not associated with operating system"
354
- msgstr ""
436
+ msgid "Organizations"
437
+ msgstr "Organisations"
355
438
 
356
- msgid "Fact name to use for primary interface detection"
439
+ msgid "PXE template to be used when pinning a host to discovery"
357
440
  msgstr ""
358
441
 
359
- msgid "List of facts to use for the hostname (separated by comma, first wins)"
360
- msgstr ""
442
+ msgid "Please Confirm"
443
+ msgstr "Please Confirm"
444
+
445
+ msgid "Primary"
446
+ msgstr "Primary"
447
+
448
+ msgid "Provision"
449
+ msgstr "Provision"
450
+
451
+ msgid "Provision a discovered host"
452
+ msgstr "Provision a discovered host"
361
453
 
362
- msgid ""
363
- "Automatically provision newly discovered hosts, according to the provisioning "
364
- "rules"
454
+ msgid "Quick create"
365
455
  msgstr ""
366
- "Automatically provision newly discovered hosts, according to the provisioning "
367
- "rules"
368
456
 
369
- msgid "Automatically reboot discovered host during provisioning"
370
- msgstr "Automatically reboot discovered host during provisioning"
457
+ msgid "Reboot"
458
+ msgstr "Reboot"
371
459
 
372
- msgid "The default prefix to use for the host name, must start with a letter"
373
- msgstr "The default prefix to use for the host name, must start with a letter"
460
+ msgid "Reboot All"
461
+ msgstr "Reboot All"
374
462
 
375
- msgid "Extra facter columns to show in host lists (separate by comma)"
376
- msgstr "Extra facter columns to show in host lists (separate by comma)"
463
+ msgid "Rebooting %s"
464
+ msgstr "Rebooting %s"
377
465
 
378
- msgid "The default location to place discovered hosts in"
379
- msgstr "The default location to place discovered hosts in"
466
+ msgid "Rebooting a discovered host"
467
+ msgstr "Rebooting a discovered host"
380
468
 
381
- msgid "The default organization to place discovered hosts in"
382
- msgstr "The default organisation to place discovered hosts in"
469
+ msgid "Rebooting all discovered hosts"
470
+ msgstr "Rebooting all discovered hosts"
383
471
 
384
- msgid "Regex to organize facts for highlights section"
385
- msgstr ""
472
+ msgid "Rebooting host %s"
473
+ msgstr "Rebooting host %s"
386
474
 
387
- msgid "Regex to organize facts for storage section"
388
- msgstr ""
475
+ msgid "Refresh facts"
476
+ msgstr "Refresh facts"
389
477
 
390
- msgid "Regex to organize facts for software section"
391
- msgstr ""
478
+ msgid "Refreshing the facts of a discovered host"
479
+ msgstr "Refreshing the facts of a discovered host"
392
480
 
393
481
  msgid "Regex to organize facts for hardware section"
394
- msgstr ""
482
+ msgstr "Regex to organise facts for hardware section"
395
483
 
396
- msgid "Regex to organize facts for network section"
397
- msgstr ""
484
+ msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
485
+ msgstr "Regex to organise facts for highlights section - e.g. ^(abc|cde)$"
398
486
 
399
487
  msgid "Regex to organize facts for ipmi section"
400
- msgstr ""
401
-
402
- msgid ""
403
- "Unable to detect primary interface using MAC '%{mac}' specified by discovery_f"
404
- "act '%{fact}'"
405
- msgstr ""
406
- "Unable to detect primary interface using MAC '%{mac}' specified by discovery_f"
407
- "act '%{fact}'"
488
+ msgstr "Regex to organise facts for IPMI section"
408
489
 
409
- msgid "Image API returned HTTP/%{code} with '%{body}"
410
- msgstr "Image API returned HTTP/%{code} with '%{body}"
490
+ msgid "Regex to organize facts for network section"
491
+ msgstr "Regex to organise facts for network section"
411
492
 
412
- msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
413
- msgstr "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
493
+ msgid "Regex to organize facts for software section"
494
+ msgstr "Regex to organise facts for software section"
414
495
 
415
- msgid "No discovered hosts available"
416
- msgstr "No discovered hosts available"
496
+ msgid "Regex to organize facts for storage section"
497
+ msgstr "Regex to organise facts for storage section"
417
498
 
418
- msgid "Host"
419
- msgstr "Host"
499
+ msgid "Reloading kernel on %s"
500
+ msgstr "Reloading kernel on %s"
420
501
 
421
- msgid "Model"
422
- msgstr "Model"
502
+ msgid "Reported in the last 7 days"
503
+ msgstr "Reported in the last 7 days"
423
504
 
424
- msgid "CPUs"
425
- msgstr "CPUs"
505
+ msgid "Rule disabled"
506
+ msgstr "Rule disabled"
426
507
 
427
- msgid "Memory"
428
- msgstr "Memory"
508
+ msgid "Rule enabled"
509
+ msgstr "Rule enabled"
429
510
 
430
- msgid "Discovered hosts"
431
- msgstr "Discovered hosts"
511
+ msgid "Rule priority (lower integer means higher priority)"
512
+ msgstr "Rule priority (lower integer means higher priority)"
432
513
 
433
- msgid "items selected. Uncheck to Clear"
434
- msgstr "items selected. Uncheck to Clear"
514
+ msgid "Select Action"
515
+ msgstr "Select Action"
435
516
 
436
517
  msgid "Select all items in this page"
437
518
  msgstr "Select all items in this page"
438
519
 
439
- msgid "Name"
440
- msgstr "Name"
520
+ msgid "Select initial host properties"
521
+ msgstr ""
441
522
 
442
- msgid "IP Address"
443
- msgstr "IP Address"
523
+ msgid "Select location"
524
+ msgstr "Select location"
444
525
 
445
- msgid "Disk count"
446
- msgstr "Disk count"
526
+ msgid "Select organization"
527
+ msgstr "Select organisation"
447
528
 
448
- msgid "Disks size"
449
- msgstr "Disks size"
529
+ msgid "Show a discovered host"
530
+ msgstr "Show a discovered host"
450
531
 
451
- msgid "Location"
452
- msgstr "Location"
532
+ msgid "Show a discovery rule"
533
+ msgstr "Show a discovery rule"
453
534
 
454
- msgid "Organization"
455
- msgstr "Organisation"
535
+ msgid "Software"
536
+ msgstr "Software"
456
537
 
457
- msgid "Subnet"
458
- msgstr "Subnet"
538
+ msgid "Software facts"
539
+ msgstr ""
459
540
 
460
- msgid "Last facts upload"
461
- msgstr "Last facts upload"
541
+ msgid "Something went wrong while selecting hosts - %s"
542
+ msgstr "Something went wrong while selecting hosts - %s"
462
543
 
463
- msgid "Delete %s?"
464
- msgstr "Delete %s?"
544
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
545
+ msgstr "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
465
546
 
466
- msgid "Please Confirm"
467
- msgstr "Please Confirm"
547
+ msgid "Storage"
548
+ msgstr "Storage"
468
549
 
469
- msgid "Cancel"
470
- msgstr "Cancel"
550
+ msgid "Storage facts"
551
+ msgstr ""
471
552
 
472
553
  msgid "Submit"
473
554
  msgstr "Submit"
474
555
 
475
- msgid "Reboot All"
476
- msgstr "Reboot All"
477
-
478
- msgid "Auto Provision All"
479
- msgstr "Auto Provision All"
480
-
481
- msgid "Warning"
482
- msgstr "Warning"
556
+ msgid "Subnet"
557
+ msgstr "Subnet"
483
558
 
484
- msgid ""
485
- "This might take a while, as all hosts, facts and reports will be destroyed as "
486
- "well"
559
+ msgid "Successfully provisioned %s"
487
560
  msgstr ""
488
- "This might take a while, as all hosts, facts and reports will be destroyed as "
489
- "well"
490
561
 
491
- msgid "Select location"
492
- msgstr "Select location"
562
+ msgid "Summary from %{time} ago to %{now}"
563
+ msgstr "Summary from %{time} ago to %{now}"
493
564
 
494
- msgid "Select organization"
495
- msgstr "Select organisation"
565
+ msgid "Summary report for discovered hosts from Foreman"
566
+ msgstr "Summary report for discovered hosts from Foreman"
496
567
 
497
- msgid "Discovered host: %s"
498
- msgstr "Discovered host: %s"
568
+ msgid "Target host group for this rule with all properties set"
569
+ msgstr "Target host group for this rule with all properties set"
499
570
 
500
- msgid "Identifier"
501
- msgstr ""
571
+ msgid "Template"
572
+ msgstr "Template"
502
573
 
503
- msgid "MAC address"
504
- msgstr ""
574
+ msgid "The default location to place discovered hosts in"
575
+ msgstr "The default location to place discovered hosts in"
505
576
 
506
- msgid "IP address"
507
- msgstr ""
577
+ msgid "The default organization to place discovered hosts in"
578
+ msgstr "The default organisation to place discovered hosts in"
508
579
 
509
- msgid "Summary report for discovered hosts from Foreman"
510
- msgstr ""
580
+ msgid "The default prefix to use for the host name, must start with a letter"
581
+ msgstr "The default prefix to use for the host name, must start with a letter"
511
582
 
512
- msgid "<b>Foreman</b> Discovered hosts summary"
513
- msgstr ""
583
+ msgid "The following hosts were not deleted: %s"
584
+ msgstr "The following hosts were not deleted: %s"
514
585
 
515
- msgid "Summary from %{time} ago to %{now}"
516
- msgstr ""
586
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
587
+ msgstr "This might take a while, as all hosts, facts and reports will be destroyed as well"
517
588
 
518
- msgid "Discovered hosts from Foreman server at %{foreman_url}"
519
- msgstr ""
589
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
590
+ msgstr "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
520
591
 
521
- msgid "No discovered hosts for the selected period"
522
- msgstr ""
592
+ msgid "Unable to assign subnet, primary interface is missing IP address"
593
+ msgstr "Unable to assign subnet, primary interface is missing IP address"
523
594
 
524
- msgid "Foreman discovered hosts summary"
525
- msgstr ""
595
+ msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
596
+ msgstr "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
526
597
 
527
- msgid "No new discovered hosts for this period"
528
- msgstr ""
598
+ msgid "Unable to find a discovery rule, no host provided (check permissions)"
599
+ msgstr "Unable to find a discovery rule, no host provided (check permissions)"
529
600
 
530
- msgid "Primary"
531
- msgstr "Primary"
601
+ msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
602
+ msgstr "Unable to perform kexec on %{name} via %{url}: %{msg}"
532
603
 
533
- msgid "Locations"
534
- msgstr "Locations"
604
+ msgid "Unable to provision %{host}: %{errors}"
605
+ msgstr "Unable to provision %{host}: %{errors}"
535
606
 
536
- msgid "Organizations"
537
- msgstr "Organisations"
607
+ msgid "Unable to reboot %{name} via %{url}: %{msg}"
608
+ msgstr "Unable to reboot %{name} via %{url}: %{msg}"
538
609
 
539
- msgid "Target host group for this rule with all properties set"
540
- msgstr "Target host group for this rule with all properties set"
610
+ msgid "Update a rule"
611
+ msgstr "Update a rule"
541
612
 
542
- msgid "Template"
543
- msgstr "Template"
613
+ msgid "Upload facts for a host, creating the host if required"
614
+ msgstr "Upload facts for a host, creating the host if required"
544
615
 
545
- msgid ""
546
- "Specify target hostname template pattern in the same syntax as in Provisioning"
547
- " Templates (ERB)."
548
- msgstr ""
549
- "Specify target hostname template pattern in the same syntax as in Provisioning"
550
- " Templates (ERB)."
616
+ msgid "Warning"
617
+ msgstr "Warning"
551
618
 
552
- msgid ""
553
- "Domain will be appended automatically. A hostname based on MAC address will be"
554
- " used when left blank. In addition to @host attribute function rand for random"
555
- " integers is available. Examples:"
619
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
556
620
  msgstr ""
557
- "Domain will be appended automatically. A hostname based on MAC address will be"
558
- " used when left blank. In addition to @host attribute function rand for random"
559
- " integers is available. Examples:"
560
621
 
561
- msgid ""
562
- "When creating hostname patterns, make sure the resulting host names are unique"
563
- ". Hostnames must not start with numbers. A good approach is to use unique info"
564
- "rmation provided by facter (MAC address, BIOS or serial ID)."
565
- msgstr ""
566
- "When creating hostname patterns, make sure the resulting host names are unique"
567
- ". Hostnames must not start with numbers. A good approach is to use unique info"
568
- "rmation provided by facter (MAC address, BIOS or serial ID)."
622
+ msgid "can't contain white spaces."
623
+ msgstr "can't contain white spaces."
569
624
 
570
- msgid "Hostname for provisioned hosts"
571
- msgstr "Hostname for provisioned hosts"
625
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
626
+ msgstr "defines a pattern to assign human-readable hostnames to the matching hosts"
572
627
 
573
- msgid "Hosts limit"
574
- msgstr "Hosts limit"
628
+ msgid "enables to limit maximum amount of provisioned hosts per rule"
629
+ msgstr "enables to limit maximum amount of provisioned hosts per rule"
575
630
 
576
- msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
577
- msgstr "Maximum hosts provisioned with this rule (0 = unlimited)"
631
+ msgid "filter results"
632
+ msgstr "filter results"
578
633
 
579
- msgid "Rule priority (lower integer means higher priority)"
580
- msgstr "Rule priority (lower integer means higher priority)"
634
+ msgid "flag is used for temporary shutdown of rules"
635
+ msgstr "flag is used for temporary shutdown of rules"
581
636
 
582
- msgid "Edit Discovery Rule"
583
- msgstr "Edit Discovery Rule"
637
+ 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)"
638
+ msgstr "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)"
584
639
 
585
- msgid "Discovery Rules"
586
- msgstr "Discovery Rules"
640
+ msgid "items selected. Uncheck to Clear"
641
+ msgstr "items selected. Uncheck to Clear"
587
642
 
588
- msgid "New Rule"
589
- msgstr "New Rule"
643
+ msgid "must start with a letter or ERB."
644
+ msgstr "must start with a letter or ERB."
590
645
 
591
- msgid "DiscoveryRule|Name"
592
- msgstr "Name"
646
+ msgid "not required if it's a virtual machine"
647
+ msgstr "not required if it's a virtual machine"
593
648
 
594
- msgid "DiscoveryRule|Priority"
595
- msgstr "Priority"
649
+ msgid "not required if using a subnet with DHCP proxy"
650
+ msgstr "not required if using a subnet with DHCP proxy"
596
651
 
597
- msgid "DiscoveryRule|Query"
598
- msgstr "Query"
652
+ msgid "number of entries per request"
653
+ msgstr "number of entries per request"
599
654
 
600
- msgid "Host group"
601
- msgstr "Host group"
655
+ msgid "paginate results"
656
+ msgstr "paginate results"
602
657
 
603
- msgid "Hosts/limit"
604
- msgstr "Hosts/limit"
658
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
659
+ msgstr "puts the rules in order, low numbers go first. Must be greater then zero"
605
660
 
606
- msgid "DiscoveryRule|Enabled"
607
- msgstr "Enabled"
661
+ msgid "query to match discovered hosts for the particular rule"
662
+ msgstr "query to match discovered hosts for the particular rule"
608
663
 
609
- msgid "New Discovery Rule"
610
- msgstr "New Discovery Rule"
664
+ msgid "represents rule name shown to the users"
665
+ msgstr "represents rule name shown to the users"
611
666
 
612
- msgid "A summary of discovered hosts"
613
- msgstr ""
667
+ msgid "required if value is not inherited from host group or default password in settings"
668
+ msgstr "required if value is not inherited from host group or default password in settings"
614
669
 
615
- msgid "Discovery rules"
616
- msgstr ""
670
+ msgid "sort results"
671
+ msgstr "sort results"
617
672
 
618
- msgid "Discovery widget"
619
- msgstr ""
673
+ msgid "the hostgroup that is used to auto provision a host"
674
+ msgstr "the hostgroup that is used to auto provision a host"