foreman_discovery 3.0.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/controllers/api/v2/discovered_hosts_controller.rb +31 -11
  4. data/app/controllers/api/v2/discovery_rules_controller.rb +8 -16
  5. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +47 -2
  6. data/app/controllers/discovered_hosts_controller.rb +30 -55
  7. data/app/controllers/discovery_rules_controller.rb +2 -4
  8. data/app/helpers/discovered_hosts_helper.rb +27 -5
  9. data/app/lib/facter_utils.rb +18 -0
  10. data/app/lib/puppet_fact_parser_extensions.rb +18 -32
  11. data/app/models/discovery_rule.rb +33 -2
  12. data/app/models/host/discovered.rb +47 -61
  13. data/app/models/host/managed_extensions.rb +12 -3
  14. data/app/models/setting/discovered.rb +18 -6
  15. data/app/services/foreman_discovery/host_converter.rb +22 -0
  16. data/app/views/api/v2/discovered_hosts/main.json.rabl +1 -1
  17. data/app/views/api/v2/discovery_rules/main.json.rabl +6 -1
  18. data/app/views/api/v2/discovery_rules/show.json.rabl +4 -0
  19. data/app/views/dashboard/_discovery_widget.html.erb +6 -4
  20. data/app/views/dashboard/_discovery_widget_host.html.erb +4 -0
  21. data/app/views/dashboard/_discovery_widget_host_list.html.erb +2 -3
  22. data/app/views/discovered_hosts/_discovered_host.html.erb +3 -5
  23. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +7 -7
  24. data/app/views/discovered_hosts/index.html.erb +1 -0
  25. data/app/views/discovery_rules/_form.html.erb +51 -32
  26. data/config/routes.rb +4 -4
  27. data/db/migrate/20150310153859_remove_discovery_attribute_sets_from_managed_hosts.rb +8 -0
  28. data/db/migrate/20150331132115_remove_old_permissions.rb +16 -0
  29. data/db/migrate/20150505111345_remove_leftover_tokens.rb +13 -0
  30. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +10 -0
  31. data/db/migrate/20150714144500_review_discovery_permissions.rb +17 -0
  32. data/lib/foreman_discovery/engine.rb +46 -16
  33. data/lib/foreman_discovery/version.rb +1 -1
  34. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/de/foreman_discovery.po +74 -72
  36. data/locale/de/foreman_discovery.pox +40 -0
  37. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  38. data/locale/en_GB/foreman_discovery.po +90 -88
  39. data/locale/en_GB/foreman_discovery.pox +0 -0
  40. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/es/foreman_discovery.po +3 -3
  42. data/locale/es/foreman_discovery.pox +41 -0
  43. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  44. data/locale/fr/foreman_discovery.po +3 -3
  45. data/locale/fr/foreman_discovery.pox +69 -0
  46. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  47. data/locale/gl/foreman_discovery.po +3 -3
  48. data/locale/gl/foreman_discovery.pox +21 -0
  49. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  50. data/locale/it/foreman_discovery.po +3 -3
  51. data/locale/it/foreman_discovery.pox +0 -0
  52. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/ja/foreman_discovery.po +67 -66
  54. data/locale/ja/foreman_discovery.pox +29 -0
  55. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/ko/foreman_discovery.po +3 -3
  57. data/locale/ko/foreman_discovery.pox +189 -0
  58. data/locale/messages.mo +0 -0
  59. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  60. data/locale/pt_BR/foreman_discovery.po +7 -7
  61. data/locale/pt_BR/foreman_discovery.pox +0 -0
  62. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  63. data/locale/ru/foreman_discovery.po +98 -96
  64. data/locale/ru/foreman_discovery.pox +0 -0
  65. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  66. data/locale/sv_SE/foreman_discovery.po +3 -3
  67. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  68. data/locale/zh_CN/foreman_discovery.po +3 -3
  69. data/locale/zh_CN/foreman_discovery.pox +33 -0
  70. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  71. data/locale/zh_TW/foreman_discovery.po +3 -3
  72. data/locale/zh_TW/foreman_discovery.pox +23 -0
  73. data/test/functional/api/v2/discovered_hosts_controller_test.rb +45 -7
  74. data/test/functional/discovered_hosts_controller_test.rb +52 -11
  75. data/test/unit/discovered_extensions_test.rb +40 -17
  76. data/test/unit/discovery_rule_test.rb +59 -0
  77. data/test/unit/host_discovered_test.rb +69 -6
  78. data/test/unit/puppet_fact_parser_extensions_test.rb +55 -40
  79. metadata +103 -81
  80. data/app/services/host_converter.rb +0 -30
@@ -3,15 +3,17 @@
3
3
  # This file is distributed under the same license as the foreman package.
4
4
  #
5
5
  # Translators:
6
+ # Andi Chandler <andi@gowling.com>, 2015
6
7
  # Dominic Cleal <dcleal@redhat.com>, 2013-2014
8
+ # Lukáš Zapletal, 2015
7
9
  msgid ""
8
10
  msgstr ""
9
- "Project-Id-Version: foreman_discovery 2.0.0.rc1\n"
11
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
10
12
  "Report-Msgid-Bugs-To: \n"
11
13
  "POT-Creation-Date: 2015-01-28 17:53+0100\n"
12
- "PO-Revision-Date: 2015-01-30 09:58+0000\n"
14
+ "PO-Revision-Date: 2015-08-10 10:09+0000\n"
13
15
  "Last-Translator: Lukáš Zapletal\n"
14
- "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/foreman/language/en_GB/)\n"
16
+ "Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/foreman/language/en_GB/)\n"
15
17
  "MIME-Version: 1.0\n"
16
18
  "Content-Type: text/plain; charset=UTF-8\n"
17
19
  "Content-Transfer-Encoding: 8bit\n"
@@ -34,30 +36,30 @@ msgid "Assign Organization"
34
36
  msgstr "Assign Organisation"
35
37
 
36
38
  msgid "Auto Provision"
37
- msgstr ""
39
+ msgstr "Auto Provision"
38
40
 
39
41
  msgid "Auto Provision All"
40
- msgstr ""
42
+ msgstr "Auto Provision All"
41
43
 
42
44
  msgid ""
43
45
  "Automatically provision newly discovered hosts, according to the "
44
46
  "provisioning rules"
45
- msgstr ""
47
+ msgstr "Automatically provision newly discovered hosts, according to the provisioning rules"
46
48
 
47
49
  msgid "CPUs"
48
- msgstr ""
50
+ msgstr "CPUs"
49
51
 
50
52
  msgid "Cancel"
51
53
  msgstr "Cancel"
52
54
 
53
55
  msgid "Could not get facts from proxy %{url}: %{error}"
54
- msgstr ""
56
+ msgstr "Could not get facts from proxy %{url}: %{error}"
55
57
 
56
58
  msgid "Create a discovered host"
57
- msgstr ""
59
+ msgstr "Create a discovered host"
58
60
 
59
61
  msgid "Create a discovery rule"
60
- msgstr ""
62
+ msgstr "Create a discovery rule"
61
63
 
62
64
  msgid "Delete"
63
65
  msgstr "Delete"
@@ -66,10 +68,10 @@ msgid "Delete %s?"
66
68
  msgstr "Delete %s?"
67
69
 
68
70
  msgid "Delete a discovered host"
69
- msgstr ""
71
+ msgstr "Delete a discovered host"
70
72
 
71
73
  msgid "Delete a rule"
72
- msgstr ""
74
+ msgstr "Delete a rule"
73
75
 
74
76
  msgid "Delete hosts"
75
77
  msgstr "Delete hosts"
@@ -78,13 +80,13 @@ msgid "Destroyed selected hosts"
78
80
  msgstr "Destroyed selected hosts"
79
81
 
80
82
  msgid "Disable"
81
- msgstr ""
83
+ msgstr "Disable"
82
84
 
83
85
  msgid "Disable rule?"
84
- msgstr ""
86
+ msgstr "Disable rule?"
85
87
 
86
88
  msgid "Discovered Host Pool"
87
- msgstr ""
89
+ msgstr "Discovered Host Pool"
88
90
 
89
91
  msgid "Discovered host: %s"
90
92
  msgstr "Discovered host: %s"
@@ -93,58 +95,58 @@ msgid "Discovered hosts"
93
95
  msgstr "Discovered hosts"
94
96
 
95
97
  msgid "Discovered hosts are provisioning now"
96
- msgstr ""
98
+ msgstr "Discovered hosts are provisioning now"
97
99
 
98
100
  msgid "Discovery Rules"
99
- msgstr ""
101
+ msgstr "Discovery Rules"
100
102
 
101
103
  msgid "Discovery rules"
102
- msgstr ""
104
+ msgstr "Discovery rules"
103
105
 
104
106
  msgid "Discovery widget"
105
- msgstr ""
107
+ msgstr "Discovery widget"
106
108
 
107
109
  msgid "DiscoveryRule|Enabled"
108
- msgstr ""
110
+ msgstr "Enabled"
109
111
 
110
112
  msgid "DiscoveryRule|Name"
111
- msgstr ""
113
+ msgstr "Name"
112
114
 
113
115
  msgid "DiscoveryRule|Priority"
114
- msgstr ""
116
+ msgstr "Priority"
115
117
 
116
118
  msgid "DiscoveryRule|Query"
117
- msgstr ""
119
+ msgstr "Query"
118
120
 
119
121
  msgid "Disk count"
120
- msgstr ""
122
+ msgstr "Disk count"
121
123
 
122
124
  msgid "Disks size"
123
- msgstr ""
125
+ msgstr "Disks size"
124
126
 
125
127
  msgid ""
126
128
  "Domain will be appended automatically. A hostname based on MAC address will "
127
129
  "be used when left blank. In addition to @host attribute function rand for "
128
130
  "random integers is available. Examples:"
129
- msgstr ""
131
+ msgstr "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:"
130
132
 
131
133
  msgid "Edit Discovery Rule"
132
- msgstr ""
134
+ msgstr "Edit Discovery Rule"
133
135
 
134
136
  msgid "Enable"
135
- msgstr ""
137
+ msgstr "Enable"
136
138
 
137
139
  msgid "Enable rule?"
138
- msgstr ""
140
+ msgstr "Enable rule?"
139
141
 
140
142
  msgid "Errors during auto provisioning: %s"
141
- msgstr ""
143
+ msgstr "Errors during auto provisioning: %s"
142
144
 
143
145
  msgid "Execute rules against a discovered host"
144
- msgstr ""
146
+ msgstr "Execute rules against a discovered host"
145
147
 
146
148
  msgid "Execute rules against all currently discovered hosts"
147
- msgstr ""
149
+ msgstr "Execute rules against all currently discovered hosts"
148
150
 
149
151
  msgid "Fact"
150
152
  msgstr "Fact"
@@ -156,55 +158,55 @@ msgid "Facts refreshed for %s"
156
158
  msgstr "Facts refreshed for %s"
157
159
 
158
160
  msgid "Failed to auto provision host %s: %s"
159
- msgstr ""
161
+ msgstr "Failed to auto provision host %s: %s"
160
162
 
161
163
  msgid "Failed to import facts for discovered host"
162
- msgstr ""
164
+ msgstr "Failed to import facts for discovered host"
163
165
 
164
166
  msgid "Failed to import facts for discovered host: %s"
165
- msgstr ""
167
+ msgstr "Failed to import facts for discovered host: %s"
166
168
 
167
169
  msgid "Failed to reboot host %s"
168
- msgstr ""
170
+ msgstr "Failed to reboot host %s"
169
171
 
170
172
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
171
- msgstr ""
173
+ msgstr "Failed to reboot host %{hostname} with error %{error_message}"
172
174
 
173
175
  msgid "Failed to refresh facts for %s"
174
176
  msgstr "Failed to refresh facts for %s"
175
177
 
176
178
  msgid "Host"
177
- msgstr ""
179
+ msgstr "Host"
178
180
 
179
181
  msgid "Host %{host} was provisioned with rule %{rule}"
180
- msgstr ""
182
+ msgstr "Host %{host} was provisioned with rule %{rule}"
181
183
 
182
184
  msgid "Host group"
183
- msgstr ""
185
+ msgstr "Host group"
184
186
 
185
187
  msgid "Host of type %s can not be rebooted"
186
- msgstr ""
188
+ msgstr "Host of type %s can not be rebooted"
187
189
 
188
190
  msgid "Hostname for provisioned hosts"
189
- msgstr ""
191
+ msgstr "Hostname for provisioned hosts"
190
192
 
191
193
  msgid "Hosts limit"
192
- msgstr ""
194
+ msgstr "Hosts limit"
193
195
 
194
196
  msgid "Hosts/limit"
195
- msgstr ""
197
+ msgstr "Hosts/limit"
196
198
 
197
199
  msgid "IP Address"
198
- msgstr ""
200
+ msgstr "IP Address"
199
201
 
200
202
  msgid "Imported discovered host"
201
- msgstr ""
203
+ msgstr "Imported discovered host"
202
204
 
203
205
  msgid "Invalid facts, must be a Hash"
204
206
  msgstr "Invalid facts, must be a Hash"
205
207
 
206
208
  msgid "Invalid facts: hash does not contain IP address"
207
- msgstr ""
209
+ msgstr "Invalid facts: hash does not contain IP address"
208
210
 
209
211
  msgid "Invalid facts: hash does not contain the required fact '%s'"
210
212
  msgstr "Invalid facts: hash does not contain the required fact '%s'"
@@ -213,40 +215,40 @@ msgid "Last facts upload"
213
215
  msgstr "Last facts upload"
214
216
 
215
217
  msgid "List all discovered hosts"
216
- msgstr ""
218
+ msgstr "List all discovered hosts"
217
219
 
218
220
  msgid "List all discovery rules"
219
- msgstr ""
221
+ msgstr "List all discovery rules"
220
222
 
221
223
  msgid "Location"
222
224
  msgstr "Location"
223
225
 
224
226
  msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
225
- msgstr ""
227
+ msgstr "Maximum hosts provisioned with this rule (0 = unlimited)"
226
228
 
227
229
  msgid "Memory"
228
- msgstr ""
230
+ msgstr "Memory"
229
231
 
230
232
  msgid "Model"
231
233
  msgstr "Model"
232
234
 
233
235
  msgid "N/A"
234
- msgstr ""
236
+ msgstr "N/A"
235
237
 
236
238
  msgid "Name"
237
239
  msgstr "Name"
238
240
 
239
241
  msgid "New Discovery Rule"
240
- msgstr ""
242
+ msgstr "New Discovery Rule"
241
243
 
242
244
  msgid "New Rule"
243
- msgstr ""
245
+ msgstr "New Rule"
244
246
 
245
247
  msgid "No discovered hosts available"
246
- msgstr ""
248
+ msgstr "No discovered hosts available"
247
249
 
248
250
  msgid "No discovered hosts to provision"
249
- msgstr ""
251
+ msgstr "No discovered hosts to provision"
250
252
 
251
253
  msgid "No hosts selected"
252
254
  msgstr "No hosts selected"
@@ -255,7 +257,7 @@ msgid "No hosts were found with that id or name"
255
257
  msgstr "No hosts were found with that id or name"
256
258
 
257
259
  msgid "No rule found for host %s"
258
- msgstr ""
260
+ msgstr "No rule found for host %s"
259
261
 
260
262
  msgid "Organization"
261
263
  msgstr "Organisation"
@@ -267,34 +269,34 @@ msgid "Provision"
267
269
  msgstr "Provision"
268
270
 
269
271
  msgid "Provision a discovered host"
270
- msgstr ""
272
+ msgstr "Provision a discovered host"
271
273
 
272
274
  msgid "Reboot"
273
- msgstr ""
275
+ msgstr "Reboot"
274
276
 
275
277
  msgid "Rebooting %s"
276
278
  msgstr "Rebooting %s"
277
279
 
278
280
  msgid "Rebooting a discovered host"
279
- msgstr ""
281
+ msgstr "Rebooting a discovered host"
280
282
 
281
283
  msgid "Rebooting host %s"
282
- msgstr ""
284
+ msgstr "Rebooting host %s"
283
285
 
284
286
  msgid "Refresh facts"
285
287
  msgstr "Refresh facts"
286
288
 
287
289
  msgid "Refreshing the facts of a discovered host"
288
- msgstr ""
290
+ msgstr "Refreshing the facts of a discovered host"
289
291
 
290
292
  msgid "Rule disabled"
291
- msgstr ""
293
+ msgstr "Rule disabled"
292
294
 
293
295
  msgid "Rule enabled"
294
- msgstr ""
296
+ msgstr "Rule enabled"
295
297
 
296
298
  msgid "Rule priority (lower integer means higher priority)"
297
- msgstr ""
299
+ msgstr "Rule priority (lower integer means higher priority)"
298
300
 
299
301
  msgid "Select Action"
300
302
  msgstr "Select Action"
@@ -309,13 +311,13 @@ msgid "Select organization"
309
311
  msgstr "Select organisation"
310
312
 
311
313
  msgid "Show a discovered host"
312
- msgstr ""
314
+ msgstr "Show a discovered host"
313
315
 
314
316
  msgid "Show a discovery rule"
315
- msgstr ""
317
+ msgstr "Show a discovery rule"
316
318
 
317
319
  msgid "Show fact as an extra column in the discovered hosts list"
318
- msgstr ""
320
+ msgstr "Show fact as an extra column in the discovered hosts list"
319
321
 
320
322
  msgid "Something went wrong while selecting hosts - %s"
321
323
  msgstr "Something went wrong while selecting hosts - %s"
@@ -323,7 +325,7 @@ msgstr "Something went wrong while selecting hosts - %s"
323
325
  msgid ""
324
326
  "Specify target hostname template pattern in the same syntax as in "
325
327
  "Provisioning Templates (ERB)."
326
- msgstr ""
328
+ msgstr "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
327
329
 
328
330
  msgid "Submit"
329
331
  msgstr "Submit"
@@ -332,10 +334,10 @@ msgid "Subnet"
332
334
  msgstr "Subnet"
333
335
 
334
336
  msgid "Target host group for this rule with all properties set"
335
- msgstr ""
337
+ msgstr "Target host group for this rule with all properties set"
336
338
 
337
339
  msgid "Template"
338
- msgstr ""
340
+ msgstr "Template"
339
341
 
340
342
  msgid "The default fact name to use for the MAC of the system"
341
343
  msgstr "The default fact name to use for the MAC of the system"
@@ -347,7 +349,7 @@ msgid "The default organization to place discovered hosts in"
347
349
  msgstr "The default organisation to place discovered hosts in"
348
350
 
349
351
  msgid "The default prefix to use for the host name, must start with a letter"
350
- msgstr ""
352
+ msgstr "The default prefix to use for the host name, must start with a letter"
351
353
 
352
354
  msgid "The following hosts were not deleted: %s"
353
355
  msgstr "The following hosts were not deleted: %s"
@@ -359,18 +361,18 @@ msgstr "This might take a while, as all hosts, facts and reports will be destroy
359
361
 
360
362
  msgid "Total pool size"
361
363
  msgid_plural "Total pool size"
362
- msgstr[0] ""
363
- msgstr[1] ""
364
+ msgstr[0] "Total pool size"
365
+ msgstr[1] "Total pool size"
364
366
 
365
367
  msgid ""
366
368
  "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
367
- msgstr ""
369
+ msgstr "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
368
370
 
369
371
  msgid "Update a rule"
370
- msgstr ""
372
+ msgstr "Update a rule"
371
373
 
372
374
  msgid "Upload facts for a host, creating the host if required"
373
- msgstr ""
375
+ msgstr "Upload facts for a host, creating the host if required"
374
376
 
375
377
  msgid "Value"
376
378
  msgstr "Value"
@@ -382,39 +384,39 @@ msgid ""
382
384
  "When creating hostname patterns, make sure the resulting host names are "
383
385
  "unique. Hostnames must not start with numbers. A good approach is to use "
384
386
  "unique information provided by facter (MAC address, BIOS or serial ID)."
385
- msgstr ""
387
+ msgstr "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)."
386
388
 
387
389
  msgid "can't contain white spaces."
388
- msgstr ""
390
+ msgstr "can't contain white spaces."
389
391
 
390
392
  msgid "filter results"
391
- msgstr ""
393
+ msgstr "filter results"
392
394
 
393
395
  msgid "hash containing facts for the host"
394
- msgstr ""
396
+ msgstr "hash containing facts for the host"
395
397
 
396
398
  msgid "items selected. Uncheck to Clear"
397
399
  msgstr "items selected. Uncheck to Clear"
398
400
 
399
401
  msgid "must start with a letter or ERB."
400
- msgstr ""
402
+ msgstr "must start with a letter or ERB."
401
403
 
402
404
  msgid "not required if it's a virtual machine"
403
- msgstr ""
405
+ msgstr "not required if it's a virtual machine"
404
406
 
405
407
  msgid "not required if using a subnet with DHCP proxy"
406
- msgstr ""
408
+ msgstr "not required if using a subnet with DHCP proxy"
407
409
 
408
410
  msgid "number of entries per request"
409
- msgstr ""
411
+ msgstr "number of entries per request"
410
412
 
411
413
  msgid "paginate results"
412
- msgstr ""
414
+ msgstr "paginate results"
413
415
 
414
416
  msgid ""
415
417
  "required if value is not inherited from host group or default password in "
416
418
  "settings"
417
- msgstr ""
419
+ msgstr "required if value is not inherited from host group or default password in settings"
418
420
 
419
421
  msgid "sort results"
420
- msgstr ""
422
+ msgstr "sort results"
File without changes
@@ -9,12 +9,12 @@
9
9
  # Sergio Ocón <sergio.ocon@redhat.com>, 2014
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: foreman_discovery 2.0.0.rc1\n"
12
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
14
  "POT-Creation-Date: 2015-01-28 17:53+0100\n"
15
- "PO-Revision-Date: 2015-02-04 15:29+0000\n"
15
+ "PO-Revision-Date: 2015-03-21 22:53+0000\n"
16
16
  "Last-Translator: Sergio Ocón <sergio.ocon@redhat.com>\n"
17
- "Language-Team: Spanish (http://www.transifex.com/projects/p/foreman/language/es/)\n"
17
+ "Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)\n"
18
18
  "MIME-Version: 1.0\n"
19
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
20
  "Content-Transfer-Encoding: 8bit\n"
@@ -0,0 +1,41 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-28 17:53+0100\n"
6
+ "PO-Revision-Date: 2015-03-21 22:53+0000\n"
7
+ "Last-Translator: Sergio Ocón <sergio.ocon@redhat.com>\n"
8
+ "Language-Team: Spanish "
9
+ "(http://www.transifex.com/foreman/foreman/language/es/)\n"
10
+ "Language: es\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Generator: Translate Toolkit 1.9.0\n"
16
+
17
+ # (pofilter) variables: Do not translate: %s, %s
18
+ # (pofilter) printf: Different number of printf variables
19
+ msgid "Failed to auto provision host %s: %s"
20
+ msgstr "Error al provisionar el host automáticamente: %s"
21
+
22
+ # (pofilter) endwhitespace: Different whitespace at the end
23
+ msgid "The default location to place discovered hosts in"
24
+ msgstr "La ubicación predeterminada para colocar hosts descubiertos "
25
+
26
+ # (pofilter) endwhitespace: Different whitespace at the end
27
+ msgid "The default organization to place discovered hosts in"
28
+ msgstr "La ubicación predeterminada para colocar organizaciones descubiertas "
29
+
30
+ # (pofilter) endpunc: Different punctuation at the end
31
+ msgid ""
32
+ "This might take a while, as all hosts, facts and reports will be destroyed "
33
+ "as well"
34
+ msgstr "Esta acción puede tardar un rato, ya que se eliminarán todos los equipos, datos e informes."
35
+
36
+ # (pofilter) endpunc: Different punctuation at the end
37
+ msgid ""
38
+ "When creating hostname patterns, make sure the resulting host names are "
39
+ "unique. Hostnames must not start with numbers. A good approach is to use "
40
+ "unique information provided by facter (MAC address, BIOS or serial ID)."
41
+ msgstr "Cuando cree patrones para nombres, asegúrese de que los nombre de host resultantes son únicos. Los nombres de host no deben comenzar por números. Una buena técnica es usar información única del facter (dirección MAC, BIOS o ID)"
@@ -7,12 +7,12 @@
7
7
  # Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_discovery 2.0.0.rc1\n"
10
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
12
  "POT-Creation-Date: 2015-01-28 17:53+0100\n"
13
- "PO-Revision-Date: 2015-02-03 13:03+0000\n"
13
+ "PO-Revision-Date: 2015-03-21 12:54+0000\n"
14
14
  "Last-Translator: Claer <transiblu@claer.hammock.fr>\n"
15
- "Language-Team: French (http://www.transifex.com/projects/p/foreman/language/fr/)\n"
15
+ "Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
@@ -0,0 +1,69 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-28 17:53+0100\n"
6
+ "PO-Revision-Date: 2015-03-21 12:54+0000\n"
7
+ "Last-Translator: Claer <transiblu@claer.hammock.fr>\n"
8
+ "Language-Team: French "
9
+ "(http://www.transifex.com/foreman/foreman/language/fr/)\n"
10
+ "Language: fr\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
+ "X-Generator: Translate Toolkit 1.9.0\n"
16
+
17
+ # (pofilter) endpunc: Different punctuation at the end
18
+ msgid "Are you sure?"
19
+ msgstr "Êtes vous sûr ?"
20
+
21
+ # (pofilter) endpunc: Different punctuation at the end
22
+ msgid "Delete %s?"
23
+ msgstr "Supprimer %s ?"
24
+
25
+ # (pofilter) endpunc: Different punctuation at the end
26
+ msgid "Disable rule?"
27
+ msgstr "Désactiver la règle ?"
28
+
29
+ # (pofilter) endpunc: Different punctuation at the end
30
+ msgid ""
31
+ "Domain will be appended automatically. A hostname based on MAC address will "
32
+ "be used when left blank. In addition to @host attribute function rand for "
33
+ "random integers is available. Examples:"
34
+ msgstr "Le nom de domaine va être ajouté automatiquement. Un nom d'hôte basé sur l'adresse MAC va être utilisé si ce champ reste vide. En complément de l'attribut @host, la fonction rand pour des entiers aléatoires est disponible. Ex :"
35
+
36
+ # (pofilter) endpunc: Different punctuation at the end
37
+ msgid "Enable rule?"
38
+ msgstr "Activer la règle ?"
39
+
40
+ # (pofilter) puncspacing: Different spacing around punctuation
41
+ msgid "Failed to reboot host %{hostname} with error %{error_message}"
42
+ msgstr "Échec de redémarrage de l'hôte %{hostname}. Erreur : %{error_message}"
43
+
44
+ # (pofilter) endpunc: Different punctuation at the end
45
+ msgid ""
46
+ "Specify target hostname template pattern in the same syntax as in "
47
+ "Provisioning Templates (ERB)."
48
+ msgstr "Spécifier un modèle de nom d'hôte cible en utilisant la même syntaxe que les modèles de provisionnement (en ERB)"
49
+
50
+ # (pofilter) endpunc: Different punctuation at the end
51
+ msgid "The default prefix to use for the host name, must start with a letter"
52
+ msgstr "Le préfixe par défaut à utiliser pour les noms d'hôtes. Le préfixe doit commencer par une lettre."
53
+
54
+ # (pofilter) endpunc: Different punctuation at the end
55
+ msgid ""
56
+ "When creating hostname patterns, make sure the resulting host names are "
57
+ "unique. Hostnames must not start with numbers. A good approach is to use "
58
+ "unique information provided by facter (MAC address, BIOS or serial ID)."
59
+ msgstr "Lors de la création des modèles de nom d'hôtes, soyez sûrs que les noms résultant soient uniques. Les nom d'hôtes ne doivent pas commencer par un chiffre. Une bonne approche est d'utiliser une information propre à une machine fournie par facter (Par ex: adresse MAC, BIOS, numéro de série)"
60
+
61
+ # (pofilter) endpunc: Different punctuation at the end
62
+ msgid "must start with a letter or ERB."
63
+ msgstr "doit commencer par une lettre ou être au format ERB"
64
+
65
+ # (pofilter) endpunc: Different punctuation at the end
66
+ msgid ""
67
+ "required if value is not inherited from host group or default password in "
68
+ "settings"
69
+ msgstr "requis si la valeur n'est pas héritée d'un groupe d'hôtes ou si le mot de passe par défaut n'est pas défini dans les paramètres généraux."
@@ -5,12 +5,12 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 2.0.0.rc1\n"
8
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "POT-Creation-Date: 2015-01-28 17:53+0100\n"
11
- "PO-Revision-Date: 2015-01-30 11:12+0000\n"
11
+ "PO-Revision-Date: 2015-03-21 22:54+0000\n"
12
12
  "Last-Translator: Lukáš Zapletal\n"
13
- "Language-Team: Galician (http://www.transifex.com/projects/p/foreman/language/gl/)\n"
13
+ "Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/)\n"
14
14
  "MIME-Version: 1.0\n"
15
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
16
  "Content-Transfer-Encoding: 8bit\n"
@@ -0,0 +1,21 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-28 17:53+0100\n"
6
+ "PO-Revision-Date: 2015-03-21 22:54+0000\n"
7
+ "Last-Translator: Lukáš Zapletal\n"
8
+ "Language-Team: Galician "
9
+ "(http://www.transifex.com/foreman/foreman/language/gl/)\n"
10
+ "Language: gl\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Generator: Translate Toolkit 1.9.0\n"
16
+
17
+ # (pofilter) endpunc: Different punctuation at the end
18
+ msgid ""
19
+ "This might take a while, as all hosts, facts and reports will be destroyed "
20
+ "as well"
21
+ msgstr "Esta acción pode tardar un anaco, xa que se eliminarán tódolos equipos, datos e informes."
@@ -6,12 +6,12 @@
6
6
  # caifti <caifti@gmail.com>, 2014
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_discovery 2.0.0.rc1\n"
9
+ "Project-Id-Version: foreman_discovery 3.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2015-01-28 17:53+0100\n"
12
- "PO-Revision-Date: 2015-01-30 11:12+0000\n"
12
+ "PO-Revision-Date: 2015-03-21 22:54+0000\n"
13
13
  "Last-Translator: Lukáš Zapletal\n"
14
- "Language-Team: Italian (http://www.transifex.com/projects/p/foreman/language/it/)\n"
14
+ "Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
17
  "Content-Transfer-Encoding: 8bit\n"
File without changes