File: wflogs.pot

package info (click to toggle)
wflogs 0.9.8-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,220 kB
  • ctags: 3,750
  • sloc: ansic: 12,166; sh: 8,047; cpp: 6,412; lex: 1,525; yacc: 1,430; makefile: 731; sed: 16
file content (962 lines) | stat: -rw-r--r-- 21,908 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-05-24 13:24+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: cisco_ios.ll:100 cisco_pix.ll:117 ipchains.ll:79 netfilter.ll:127
#: snort.ll:82
#, c-format
msgid "Unrecognized token: %s\n"
msgstr ""

#: cisco_ios.ll:101 cisco_pix.ll:118 ipchains.ll:80 netfilter.ll:128
#: snort.ll:83
#, c-format
msgid "Unrecognized character: %s\n"
msgstr ""

#: cisco_ios.ll:267
#, c-format
msgid "cisco_ios parse error in line %d, ignoring.\n"
msgstr ""

#: cisco_pix.ll:281
#, c-format
msgid "cisco_pix parse error in line %d, ignoring.\n"
msgstr ""

#: ipchains.ll:176
#, c-format
msgid "ipchains parse error in line %d, ignoring.\n"
msgstr ""

#: ipfilter.ll:128
#, c-format
msgid "Unrecognized token: `%s'\n"
msgstr ""

#: ipfilter.ll:129
#, c-format
msgid "Unrecognized character: `%s'\n"
msgstr ""

#: ipfilter.ll:243
#, c-format
msgid "Unknown protocol, ignoring `%s'\n"
msgstr ""

#: ipfilter.ll:307
#, c-format
msgid "ipfilter parse error in line %d, ignoring.\n"
msgstr ""

#: netfilter.ll:211
#, c-format
msgid "netfilter parse error in line %d, ignoring.\n"
msgstr ""

#: snort.ll:181
#, c-format
msgid "snort parse error in line %d, ignoring.\n"
msgstr ""

#: input_modules/common.cc:49
#, c-format
msgid "IP address error: %s\n"
msgstr ""

#: input_modules/module.cc:120 input_modules/module.cc:129
#: output_modules/module.cc:119 output_modules/module.cc:128
#, c-format
msgid "Error: cannot load module `%s': %s.\n"
msgstr ""

#: input_modules/module.cc:154 output_modules/module.cc:154
msgid "No built-in modules."
msgstr ""

#: input_modules/module.cc:157 output_modules/module.cc:157
msgid "Dynamic loading of modules supported."
msgstr ""

#: input_modules/module.cc:160 output_modules/module.cc:160
msgid "Available dynamic modules: "
msgstr ""

#: input_modules/module.cc:171 output_modules/module.cc:171
msgid "Dynamic loading of modules not supported."
msgstr ""

#: input_modules/module.cc:199 input_modules/module.cc:310
#, c-format
msgid "%s:%i: warning: wrong log line.\n"
msgstr ""

#: input_modules/module.cc:208 input_modules/module.cc:318
#, c-format
msgid "%s:%i: warning: valid line but not a firewall log line.\n"
msgstr ""

#: input_modules/module.cc:221 input_modules/module.cc:329
#, c-format
msgid "%s:%i: warning: wrong log entry.\n"
msgstr ""

#: input_modules/module.cc:226 input_modules/module.cc:334
#, c-format
msgid "%s:%i: wrong log entry.\n"
msgstr ""

#: input_modules/module.cc:274
#, c-format
msgid "%s:%i: parsed with `%s' module\n"
msgstr ""

#: input_modules/module.cc:294
#, c-format
msgid ""
"%s:%i: warning: line format matches none of the specified module(s): %s\n"
msgstr ""

#: input_modules/module.cc:299
#, c-format
msgid "%s:%i: error: line format matches none of the specified module(s): %s\n"
msgstr ""

#: input_modules/module.cc:374
msgid "WF_LOGENTRY_PARSING_NOMATCH was hit"
msgstr ""

#: logs/filter.cc:84
msgid "error: unary operator can only apply to numeric value"
msgstr ""

#: logs/filter.cc:143
msgid "error: regular expression should apply to a string"
msgstr ""

#: logs/filter.cc:149
msgid "error: regular expression should be /.../, not \"...\""
msgstr ""

#: logs/filter.cc:151
msgid "error: invalid use of regexp operator"
msgstr ""

#: logs/filter.cc:156
#, c-format
msgid "error: operator `%s' used with different types\n"
msgstr ""

#: logs/filter.cc:163
#, c-format
msgid "error: invalid operator `%s' used with string\n"
msgstr ""

#: logs/filter.cc:352
msgid "error: unknown var"
msgstr ""

#: logs/filter.cc:436
#, c-format
msgid "error: cannot compile regexp `%s': "
msgstr ""

#: logs/filter.cc:455
#, c-format
msgid "error: cannot apply regexp `%s': "
msgstr ""

#: filter_l.ll:117
#, c-format
msgid "wrong network `%s'"
msgstr ""

#: filter_l.ll:128
#, c-format
msgid "wrong IP address `%s'"
msgstr ""

#: filter_l.ll:139
#, c-format
msgid "wrong MAC address `%s'"
msgstr ""

#: filter_l.ll:190
#, c-format
msgid "Error: unknown word `%s'.\n"
msgstr ""

#: filter_y.yy:221
#, c-format
msgid "unknown var `%s'"
msgstr ""

#: filter_y.yy:312
#, c-format
msgid "error before `%s': "
msgstr ""

#: filter_y.yy:333
msgid "check failed"
msgstr ""

#: logs/wflogs_obfuscator.cc:85
#, c-format
msgid "Error: unknown obfuscator criteria `%s'\n"
msgstr ""

#: logs/wf_sort.cc:144
msgid "no sort argument."
msgstr ""

#: logs/wf_sort.cc:153
msgid "improper sort specifier list."
msgstr ""

#: logs/wf_sort.cc:159 logs/wf_sort.cc:176
msgid "improper sort list."
msgstr ""

#: logs/wf_sort.cc:171
msgid "empty sort list."
msgstr ""

#: logs/wf_sort.cc:199
msgid "unknown sort specifier."
msgstr ""

#: output_modules/html/conf.cc:34 output_modules/human/conf.cc:34
#: output_modules/ipchains/conf.cc:34 output_modules/ipfilter/conf.cc:34
#: output_modules/netfilter/conf.cc:34 output_modules/text/conf.cc:34
#: output_modules/xml/conf.cc:34
msgid "verbosity level"
msgstr ""

#: output_modules/html/conf.cc:36 output_modules/human/conf.cc:36
#: output_modules/ipchains/conf.cc:36 output_modules/ipfilter/conf.cc:36
#: output_modules/netfilter/conf.cc:36 output_modules/text/conf.cc:36
#: output_modules/xml/conf.cc:39
msgid "summary mode"
msgstr ""

#: output_modules/html/conf.cc:39 output_modules/human/conf.cc:39
#: output_modules/text/conf.cc:39 output_modules/xml/conf.cc:36
msgid "show n first lines"
msgstr ""

#: output_modules/html/conf.cc:43 output_modules/human/conf.cc:43
#: output_modules/text/conf.cc:43
msgid "show unique characteristics at the beginning"
msgstr ""

#: output_modules/html/conf.cc:45 output_modules/human/conf.cc:45
#: output_modules/text/conf.cc:45
msgid "page title"
msgstr ""

#: output_modules/html/conf.cc:47 output_modules/human/conf.cc:47
#: output_modules/text/conf.cc:47
msgid "show start time"
msgstr ""

#: output_modules/html/conf.cc:49 output_modules/human/conf.cc:49
#: output_modules/text/conf.cc:49
msgid "show end time"
msgstr ""

#: output_modules/html/conf.cc:51 output_modules/human/conf.cc:51
#: output_modules/text/conf.cc:51
msgid "show duration between start and end"
msgstr ""

#: output_modules/html/conf.cc:52 output_modules/text/conf.cc:52
msgid "show duration between start and end in day:hour:min:sec format"
msgstr ""

#: output_modules/html/conf.cc:54 output_modules/human/conf.cc:53
#: output_modules/text/conf.cc:54 output_modules/xml/conf.cc:41
msgid "resolve IP addresses"
msgstr ""

#: output_modules/html/conf.cc:55 output_modules/human/conf.cc:54
#: output_modules/text/conf.cc:55
msgid ""
"determine reverse DNS lookup handling: 0 is for none, 1 for always, and 2 "
"for forcing synchronous resolution (makes sense if asynchronous resolution "
"is supported)"
msgstr ""

#: output_modules/html/conf.cc:57 output_modules/human/conf.cc:56
#: output_modules/text/conf.cc:57 output_modules/xml/conf.cc:44
msgid "resolve service names"
msgstr ""

#: output_modules/html/conf.cc:59 output_modules/human/conf.cc:58
#: output_modules/text/conf.cc:59 output_modules/xml/conf.cc:46
msgid "do a whois lookup"
msgstr ""

#: output_modules/html/conf.cc:60 output_modules/human/conf.cc:59
#: output_modules/text/conf.cc:60
msgid ""
"determine whois lookup handling: 0 is for none, 1 for always, and 2 for "
"ifnodns (only if DNS name could not be found)"
msgstr ""

#: output_modules/html/conf.cc:62 output_modules/human/conf.cc:61
#: output_modules/text/conf.cc:62
msgid "show source IP address"
msgstr ""

#: output_modules/html/conf.cc:64 output_modules/human/conf.cc:63
#: output_modules/text/conf.cc:64
msgid "show destination IP address"
msgstr ""

#: output_modules/html/conf.cc:66 output_modules/human/conf.cc:65
#: output_modules/text/conf.cc:66
msgid "show protocol"
msgstr ""

#: output_modules/html/conf.cc:68 output_modules/human/conf.cc:67
#: output_modules/text/conf.cc:68
msgid "show source port"
msgstr ""

#: output_modules/html/conf.cc:70 output_modules/human/conf.cc:69
#: output_modules/text/conf.cc:70
msgid "show destination port"
msgstr ""

#: output_modules/html/conf.cc:72 output_modules/human/conf.cc:71
#: output_modules/text/conf.cc:72
msgid "show source MAC address"
msgstr ""

#: output_modules/html/conf.cc:74 output_modules/human/conf.cc:73
#: output_modules/text/conf.cc:74
msgid "show destination MAC address"
msgstr ""

#: output_modules/html/conf.cc:76 output_modules/human/conf.cc:75
#: output_modules/text/conf.cc:76 output_modules/xml/conf.cc:57
msgid "show MAC vendor"
msgstr ""

#: output_modules/html/conf.cc:78 output_modules/human/conf.cc:77
#: output_modules/text/conf.cc:78
msgid "show TCP flags"
msgstr ""

#: output_modules/html/conf.cc:80 output_modules/human/conf.cc:79
#: output_modules/text/conf.cc:80
msgid "show packet data length"
msgstr ""

#: output_modules/html/conf.cc:82 output_modules/human/conf.cc:81
#: output_modules/text/conf.cc:82
msgid "show log host"
msgstr ""

#: output_modules/html/conf.cc:84 output_modules/human/conf.cc:83
#: output_modules/text/conf.cc:84 output_modules/xml/conf.cc:51
msgid "show chain name"
msgstr ""

#: output_modules/html/conf.cc:86 output_modules/human/conf.cc:85
#: output_modules/text/conf.cc:86 output_modules/xml/conf.cc:53
msgid "show branch name"
msgstr ""

#: output_modules/html/conf.cc:88 output_modules/human/conf.cc:87
#: output_modules/text/conf.cc:88
msgid "show interfaces"
msgstr ""

#: output_modules/html/conf.cc:91
msgid "text color"
msgstr ""

#: output_modules/html/conf.cc:93
msgid "background color"
msgstr ""

#: output_modules/html/conf.cc:95
msgid "background color of odd rows"
msgstr ""

#: output_modules/html/conf.cc:97
msgid "background color of even rows"
msgstr ""

#: output_modules/html/conf.cc:106 output_modules/human/conf.cc:96
#: output_modules/text/conf.cc:97
msgid "wflogs summary"
msgstr ""

#: output_modules/html/html.cc:90 output_modules/human/human.cc:76
#: output_modules/text/text.cc:75
#, c-format
msgid "Generated on %s by %s."
msgstr ""

#: output_modules/html/html.cc:94 output_modules/human/human.cc:80
#: output_modules/text/text.cc:79
#, c-format
msgid "Generated on %s by an unknown user."
msgstr ""

#: output_modules/html/html.cc:106
msgid "start"
msgstr ""

#: output_modules/html/html.cc:109
msgid "end"
msgstr ""

#: output_modules/html/html.cc:112
msgid "interval"
msgstr ""

#: output_modules/html/html.cc:115
msgid "loghost"
msgstr ""

#: output_modules/html/html.cc:118
msgid "chain"
msgstr ""

#: output_modules/html/html.cc:121
msgid "target"
msgstr ""

#: output_modules/html/html.cc:124
msgid "input interface"
msgstr ""

#: output_modules/html/html.cc:126
msgid "source MAC address"
msgstr ""

#: output_modules/html/html.cc:128 output_modules/html/html.cc:136
msgid "MAC vendor"
msgstr ""

#: output_modules/html/html.cc:132
msgid "output interface"
msgstr ""

#: output_modules/html/html.cc:134
msgid "destination MAC address"
msgstr ""

#: output_modules/html/html.cc:140
msgid "proto"
msgstr ""

#: output_modules/html/html.cc:143
msgid "bytes"
msgstr ""

#: output_modules/html/html.cc:146
msgid "source"
msgstr ""

#: output_modules/html/html.cc:148 output_modules/html/html.cc:162
msgid "hostname"
msgstr ""

#: output_modules/html/html.cc:150
msgid "source whois info"
msgstr ""

#: output_modules/html/html.cc:154 output_modules/html/html.cc:168
msgid "port"
msgstr ""

#: output_modules/html/html.cc:156 output_modules/html/html.cc:170
msgid "service"
msgstr ""

#: output_modules/html/html.cc:160
msgid "destination"
msgstr ""

#: output_modules/html/html.cc:164
msgid "dest whois info"
msgstr ""

#: output_modules/html/html.cc:174
msgid "tcpflags"
msgstr ""

#: output_modules/html/html.cc:425
#, c-format
msgid "Generated by <a href=\"%s\">wflogs</a> %s"
msgstr ""

#: output_modules/human/conf.cc:41 output_modules/text/conf.cc:41
msgid "show header and footer"
msgstr ""

#: output_modules/human/human.cc:87 output_modules/text/text.cc:86
#, c-format
msgid "Generated by wflogs %s"
msgstr ""

#: output_modules/xml/conf.cc:42
msgid "determine reverse DNS lookup handling: yes or no"
msgstr ""

#: output_modules/xml/conf.cc:47
msgid "determine whois lookup handling: yes or no"
msgstr ""

#: output_modules/xml/conf.cc:49
msgid "show initial firewall log format"
msgstr ""

#: output_modules/xml/conf.cc:55
msgid "show ICMP type name"
msgstr ""

#: output_modules/dns.cc:59
#, c-format
msgid "Found DNS info for %s in cache\n"
msgstr ""

#: output_modules/dns.cc:72
#, c-format
msgid "Looking up DNS info for %s\n"
msgstr ""

#: output_modules/dns.cc:84
#, c-format
msgid "Wrong host name size\n"
msgstr ""

#: output_modules/dns.cc:101
#, c-format
msgid "Resolving %s\n"
msgstr ""

#: output_modules/dns.cc:111
#, c-format
msgid "%s [forward lookup: %s]"
msgstr ""

#: output_modules/dns.cc:117
#, c-format
msgid "%s [forward lookup failed]"
msgstr ""

#: output_modules/module.cc:148 wflogs/wflogs.cc:86
msgid "Built-in modules: "
msgstr ""

#: output_modules/preresolv.cc:60
#, c-format
msgid "Pre-resolving %i DNS addresses\n"
msgstr ""

#: output_modules/preresolv.cc:84
#, c-format
msgid "Submitting %s\n"
msgstr ""

#: output_modules/preresolv.cc:117
#, c-format
msgid "Resolved %s: %s\n"
msgstr ""

#: output_modules/preresolv.cc:124
#, c-format
msgid "Resolving %s: no name found\n"
msgstr ""

#: output_modules/preresolv.cc:142
msgid "Pre-resolving of DNS addresses finished"
msgstr ""

#: output_modules/timediff.cc:85
msgid "days"
msgstr ""

#: output_modules/timediff.cc:90
msgid "hours"
msgstr ""

#: output_modules/timediff.cc:95
msgid "mins"
msgstr ""

#: output_modules/timediff.cc:100
msgid "secs"
msgstr ""

#: output_modules/whois.cc:242
#, c-format
msgid "Found whois info for %s in cache\n"
msgstr ""

#: output_modules/whois.cc:249
#, c-format
msgid "Looking up whois info for %s\n"
msgstr ""

#: output_modules/whois.cc:294
#, c-format
msgid "Error: lookup failed for %s.\n"
msgstr ""

#: output_modules/whois.cc:309
#, c-format
msgid "Connecting to whois server %s, port %i... "
msgstr ""

#: output_modules/whois.cc:318
msgid "connected"
msgstr ""

#: output_modules/whois.cc:338
msgid "Closed connection to whois server."
msgstr ""

#: wflogs/interactive.cc:69
msgid "Display this text"
msgstr ""

#: wflogs/interactive.cc:70
msgid "Synonym for `help'"
msgstr ""

#: wflogs/interactive.cc:71
msgid "Quit"
msgstr ""

#: wflogs/interactive.cc:72
msgid "Synonym for `quit'"
msgstr ""

#: wflogs/interactive.cc:73
msgid "Set beep mode: [on|off|?]. Beep for every log entry displayed"
msgstr ""

#: wflogs/interactive.cc:74
msgid "Set filter expression: [expression|unset]"
msgstr ""

#: wflogs/interactive.cc:75
msgid "Set realtime mode: [on|off|?]. Monitor new log entries."
msgstr ""

#: wflogs/interactive.cc:76
msgid "Set verbosity level: [level]"
msgstr ""

#: wflogs/interactive.cc:145
#, c-format
msgid "%s: no such command.\n"
msgstr ""

#: wflogs/interactive.cc:302
msgid "Read error"
msgstr ""

#: wflogs/interactive.cc:325 wflogs/interactive.cc:340
#, c-format
msgid "Current value: "
msgstr ""

#: wflogs/interactive.cc:327 wflogs/interactive.cc:345
msgid "Invalid argument"
msgstr ""

#: wflogs/interactive.cc:332
#, c-format
msgid "%s mode on\n"
msgstr ""

#: wflogs/interactive.cc:334
#, c-format
msgid "%s mode off\n"
msgstr ""

#: wflogs/interactive.cc:350
#, c-format
msgid "%s set to %i\n"
msgstr ""

#: wflogs/interactive.cc:368
#, c-format
msgid "%s: argument required.\n"
msgstr ""

#: wflogs/interactive.cc:391
#, c-format
msgid "No command matches `%s'.  Possibilities are:\n"
msgstr ""

#: wflogs/interactive.cc:425 wflogs/interactive.cc:448 wflogs/wflogs.cc:464
#, c-format
msgid "Filter expression: "
msgstr ""

#: wflogs/interactive.cc:429 wflogs/interactive.cc:452
msgid "none"
msgstr ""

#: wflogs/interactive.cc:436
msgid "Wrong filter expression."
msgstr ""

#: wflogs/interactive.cc:474
msgid "Type `help' for a list of available commands."
msgstr ""

#: wflogs/realtime.cc:51 wflogs/wflogs.cc:484
msgid "Error: parsing failed."
msgstr ""

#: wflogs/realtime.cc:77
#, c-format
msgid "Error: output for line %i failed."
msgstr ""

#: wflogs/wflogs.cc:86
msgid "Available input types:"
msgstr ""

#: wflogs/wflogs.cc:90
msgid "Default input type:"
msgstr ""

#: wflogs/wflogs.cc:92
msgid "could not be guessed."
msgstr ""

#: wflogs/wflogs.cc:102
#, c-format
msgid "Error: unable to initialize input module `%s'."
msgstr ""

#: wflogs/wflogs.cc:131
msgid "Available output types:"
msgstr ""

#: wflogs/wflogs.cc:140
#, c-format
msgid "Error: unable to initialize output module `%s'."
msgstr ""

#: wflogs/wflogs.cc:159
#, c-format
msgid "Output module `%s' default configuration:"
msgstr ""

#: wflogs/wflogs.cc:169
msgid "Error: could not initialize interactive mode activated by SIGUSR1."
msgstr ""

#: wflogs/wflogs.cc:179
msgid "Type `wflogs --help' for more information."
msgstr ""

#: wflogs/wflogs.cc:186
#, c-format
msgid ""
"Usage: wflogs [options] [logfile]\n"
"\n"
"wflogs is the log analyser of the WallFire project.\n"
"\n"
"Options:\n"
"-c | --config file       use alternate config file.\n"
"                         (defaults to `%s').\n"
"-f | --filter expr       set filter expression a la Perl.\n"
"-i | --input-format module1[,module2[,...]]\n"
"                         set input format(s) that can be parsed.\n"
"                         (use name `help' to show available ones and\n"
"                         default (dynamically guessed according to the OS)\n"
"                         type).  Use `all' to try every available modules.\n"
"-I | --interactive       interactive mode.\n"
"-o | --output-type name  set output type\n"
"                         (use name `help' to show available ones,\n"
"                         default is `text').\n"
"-O | --obfuscate [field1[,field2[,...]]]\n"
"                         obfuscates some logging fields.\n"
"                         (available fields are `date', `hostname', "
"`ipaddr',\n"
"                         and `macaddr'.  Default is `all': every field).\n"
"-P | --proceed           if realtime or interactive modes are set, process\n"
"                         current log entries before entering in these "
"modes.\n"
"-R | --realtime          real-time mode.\n"
"-s | --sort-output[=[-]key1[,[-]key2[,...]]]\n"
"                         sort ouput lines according to the given criteria"
"(s)\n"
"                         (use key `help' to show available keys).\n"
"     --strict-parsing type\n"
"                         set the parsing policy\n"
"                         (available types are `loose', `nowarning', \n"
"                         `warning', and `error'. Default is `%s').\n"
"-v | --verbose [level]   set verbosity level (default is 1).\n"
"-V | --version           print the current version on stdout.\n"
"-h | --help              print this help message.\n"
"\n"
"See the wflogs(8) manual page for more information.\n"
"See %s for comments or bug reports.\n"
"\n"
msgstr ""

#: wflogs/wflogs.cc:274
msgid "Error: sort criterias are not sorted. Please contact the maintainer."
msgstr ""

#: wflogs/wflogs.cc:292
msgid ""
"Error: output module already loaded, or output module option specified "
"before module name."
msgstr ""

#: wflogs/wflogs.cc:309
msgid "Available sort keys:"
msgstr ""

#: wflogs/wflogs.cc:311
msgid "Default sort key: "
msgstr ""

#: wflogs/wflogs.cc:328
#, c-format
msgid "Error: unknown argument in option `%s'."
msgstr ""

#: wflogs/wflogs.cc:344
msgid "Error: this shouldn't happen. Please contact the maintainer."
msgstr ""

#: wflogs/wflogs.cc:351
#, c-format
msgid "Error: option requires an argument -- %c."
msgstr ""

#: wflogs/wflogs.cc:355
#, c-format
msgid "Error: invalid option -- %c."
msgstr ""

#: wflogs/wflogs.cc:374
#, c-format
msgid "Error: unrecognized option `%s'."
msgstr ""

#: wflogs/wflogs.cc:380
#, c-format
msgid "Error: problem with argument in option `%s'."
msgstr ""

#: wflogs/wflogs.cc:386
#, c-format
msgid "Error: problem during parsing of option `%s'."
msgstr ""

#: wflogs/wflogs.cc:400
msgid "Error: only one filename allowed."
msgstr ""

#: wflogs/wflogs.cc:409
#, c-format
msgid "Error: sort criterias parsing failed: %s"
msgstr ""

#: wflogs/wflogs.cc:418
msgid "Error: missing input type: local firewalling tool could not be guessed."
msgstr ""

#: wflogs/wflogs.cc:419
msgid "Try to force it via `-i' option."
msgstr ""

#: wflogs/wflogs.cc:439 wflogs/wflogs.cc:446 wflogs/wflogs.cc:570
#, c-format
msgid "Error: %s: %m"
msgstr ""

#: wflogs/wflogs.cc:450
#, c-format
msgid "Error: %s: %s"
msgstr ""

#: wflogs/wflogs.cc:460
msgid "Error: wrong filter expression."
msgstr ""

#: wflogs/wflogs.cc:473
msgid "Error: wrong obfuscator argument."
msgstr ""

#: wflogs/wflogs.cc:493
msgid "Error: filtering failed."
msgstr ""

#: wflogs/wflogs.cc:497
#, c-format
msgid "Entries deleted by filter: %d\n"
msgstr ""

#: wflogs/wflogs.cc:503
msgid "Error: summary failed."
msgstr ""

#: wflogs/wflogs.cc:507
#, c-format
msgid "Entries deleted by summary: %d\n"
msgstr ""

#: wflogs/wflogs.cc:518
msgid "Error: obfuscator failed."
msgstr ""

#: wflogs/wflogs.cc:531
msgid "Error: output failed."
msgstr ""

#: wflogs/wflogs.cc:538
msgid ""
"Warning: strictness parsing is set to error and we are in realtime mode."
msgstr ""

#: wflogs/wflogs.cc:539
msgid "Program will exit on parsing error."
msgstr ""

#: wflogs/wflogs.cc:544
msgid "Error: could not initialize interactive mode."
msgstr ""

#: wflogs/wflogs.cc:556
msgid "Counting lines..."
msgstr ""

#: wflogs/wflogs.cc:581
msgid " done"
msgstr ""

#: wflogs/wflogs.cc:642
#, c-format
msgid "select error: %s\n"
msgstr ""