summaryrefslogtreecommitdiff
path: root/src/log/wolfmsg.mc
blob: 0188849f52dfc6f216acdb8526212231b084e529 (plain)
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
;// messages file for wolf messages

;// language codes for translated messages
;// (409 ist the windows locale for en-US)
;// (see http://msdn.microsoft.com/en-us/library/ms776260.aspx)
LanguageNames = (
	English		= 0x0409	: MSG00409
	German		= 0x0407	: MSG00407
)

;// Category names come first, the 'CategoryCount' registry entry
;// for the event source must match the number of entries here.
;// Also the numbering must be strictly starting by one and increase
;// by one. Careful: categories MUST be defined here, the message
;// compiler is a little bit flag and context infected. Also make
;// sure they are not longer than 10 characters, the event viewer
;// field is quite small.

MessageId = 0x1
SymbolicName = WOLF_CATEGORY_1
Language = English
Logger
.
Language = German
Logger
.

MessageId = 0x2
SymbolicName = WOLF_CATEGORY_2
Language = English
Dameon
.
Language = German
Unix-Prozess
.

;// event log severity levels (severity bits)
SeverityNames = ( 
	Success		= 0x0	: STATUS_SEVERITY_SUCCESS
	Informational	= 0x1	: STATUS_SEVERITY_INFORMATIONAL
	Warning		= 0x2	: STATUS_SEVERITY_WARNING
	Error		= 0x3	: STATUS_SEVERITY_ERROR
)

;// facility names
FacilityNames = (
	System		= 0x0FF
	Application	= 0xFFF
)


;// event messages from here

MessageIdTypedef = DWORD

MessageId = 2060
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_CLOSE_FD
Language = English
Error while closing file descriptor %1: %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2061
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_RETRIEVING_MAXNOFFDS_FAILED
Language = English
Unable to retrieve maximal number of files: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2062
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CLOSING_ALL_FDS
Language = English
Closing all filedescriptors up to %ld
.
Language = German
TODO: Gettext here..
.
MessageId = 2063
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_OPEN_FD_AS_DEV_NULL
Language = English
Unable to open fd %1 as /dev/null: %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2064
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_FD_NUMBERS_WRONG
Language = English
Something is wrong with the file descriptors (expecting %1, got %2)!
.
Language = German
TODO: Gettext here..
.
MessageId = 2065
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PIPE_ATOMIC_WRITE_FAILED
Language = English
Error in atomar write to fd %1: %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2066
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PIPE_ATOMIC_WRITE_WRONG_OCTETS
Language = English
Unexpected number of octets %zd in atomar write to fd %1 (expected %zd)
.
Language = German
TODO: Gettext here..
.
MessageId = 2067
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PIPE_ATOMIC_READ_FAILED
Language = English
Error in atmoar read from fd %1: %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2068
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PIPE_ATOMIC_READ_WRONG_OCTETS
Language = English
Unexpected number of octets %zd in atomar read from fd %1 (expected %zd)
.
Language = German
TODO: Gettext here..
.
MessageId = 2069
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_ALREADY_RUNNING
Language = English
Already running as daemon!
.
Language = German
TODO: Gettext here..
.
MessageId = 2070
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_START_AS_NON_ROOT
Language = English
Unable to start daemon as not root user!
.
Language = German
TODO: Gettext here..
.
MessageId = 2071
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_CREATE_EXIT_CODE_PIPE
Language = English
Unable to create exit code pipe: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2072
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_EXIT_CODE_PIPE_CREATED
Language = English
Created exit code pipe (%1,%2)
.
Language = German
TODO: Gettext here..
.
MessageId = 2073
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_FIRST_FORK_FAILED
Language = English
Unable to fork the first time: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2074
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_FIRST_FORK_REACHED
Language = English
First fork reached
.
Language = German
TODO: Gettext here..
.
MessageId = 2075
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PARENT_AFTER_FIRST_FORK
Language = English
Parent after first fork: child is %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2076
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_CREATE_PARENT_PIPE
Language = English
Unable to create parent pipe: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2077
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PARENT_PIPE_CREATED
Language = English
Created parent pipe (%1,%2)
.
Language = German
TODO: Gettext here..
.
MessageId = 2107
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_SET_NEW_PROCESS_GROUP_PARENT
Language = English
Starting new process group session for the parent of the daemon failed: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2079
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SECOND_FORK_FAILED
Language = English
Unable to fork the second time: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2080
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SECOND_FORK_REACHED
Language = English
Second fork reached
.
Language = German
TODO: Gettext here..
.
MessageId = 2081
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PARENT_AFTER_SECOND_FORK
Language = English
Parent after second fork: child (and daemon) is %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2078
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_SET_NEW_PROCESS_GROUP
Language = English
Starting new process group for daemon session failed: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2082
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_CHANGE_ROOT_DIR
Language = English
Changing to root diretory failed: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2083
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CHANGED_ROOT_DIR
Language = English
Changed to root directory /
.
Language = German
TODO: Gettext here..
.
MessageId = 2084
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SWITCHED_UMASK
Language = English
Switched umask from %04o to %04o
.
Language = German
TODO: Gettext here..
.
MessageId = 2085
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_DAEMON_ALREADY_RUNNING_WITH_PID
Language = English
Another daemon is already running with pid '%1', can't start!
.
Language = German
TODO: Gettext here..
.
MessageId = 2086
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SWITCHED_UMASK_FINAL
Language = English
Switched umask from %04o to %04o
.
Language = German
TODO: Gettext here..
.
MessageId = 2087
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_GROUP_NOT_FOUND
Language = English
No group '%1' found
.
Language = German
TODO: Gettext here..
.
MessageId = 2088
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_GETGRNAM_FAILED
Language = English
Unable to retrieve group information for group '%1': %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2089
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_USER_NOT_FOUND
Language = English
No user '%1' found
.
Language = German
TODO: Gettext here..
.
MessageId = 2090
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_GETPWNAM_FAILED
Language = English
Unable to retrieve user information for user '%1': %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2091
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SETTING_UNPRIVILEGED_GROUP_FAILED
Language = English
Setting unprivileged group failed: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2092
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SETTING_UNPRIVILEGED_USER_FAILED
Language = English
Setting unprivileged user failed: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2093
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SWITCHED_USER
Language = English
Switched to user '%1' (%2) and group '%3' (%4)
.
Language = German
TODO: Gettext here..
.
MessageId = 2094
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_EXIT_CALLED
Language = English
daemon_exit called int state %1 (error %2)
.
Language = German
TODO: Gettext here..
.
MessageId = 2095
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_WAITING_FOR_EXIT_CODE_ON_PIPE
Language = English
Waiting on exit_code pipe for exit code
.
Language = German
TODO: Gettext here..
.
MessageId = 2096
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_TERMINATING_GRAND_PARENT
Language = English
Terminating grand-parent of daemon with code %1 (PID: %lu)
.
Language = German
TODO: Gettext here..
.
MessageId = 2097
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_WAITING_FOR_TERMINATION
Language = English
Waiting on parent pipe for termination signal
.
Language = German
TODO: Gettext here..
.
MessageId = 2098
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PARENT_GOT_TERMINATION
Language = English
Parent got termination (pidfile lock: %1, run: %2, fd: %3).. cleaning up now (PID: %lu)
.
Language = German
TODO: Gettext here..
.
MessageId = 2099
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_TERMINATING_PARENT
Language = English
Terminating parent of daemon (PID %lu)
.
Language = German
TODO: Gettext here..
.
MessageId = 2100
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_TERMINATING_DAEMON_OK
Language = English
Terminating daemon (PID: %lu)
.
Language = German
TODO: Gettext here..
.
MessageId = 2101
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_TERMINATING_DAEMON_ERROR
Language = English
Terminating daemon (PID: %lu) with error
.
Language = German
TODO: Gettext here..
.
MessageId = 2102
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_CREATE_SIGNAL_PIPE
Language = English
Unable to create signal pipe: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2103
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SIGNAL_PIPE_CREATED
Language = English
Created signal pipe (%1,%2)
.
Language = German
TODO: Gettext here..
.
MessageId = 2104
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_SELECT_FAILED_WAITING_FOR_SIGNAL
Language = English
Error in select when waiting for signal from pipe: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2105
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_READ_SIGNAL_FROM_PIPE
Language = English
Error while reading a signal from the pipe: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2106
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_NON_ATOMIC_READ_ON_SIGNAL_PIPE
Language = English
Unexpected error in read: result is %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2020
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_NO_PIDFILE
Language = English
No pidfile '%1' found, daemon is not running
.
Language = German
TODO: Gettext here..
.
MessageId = 2021
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_OPEN_PIDFILE_FOR_READING
Language = English
Unable to open pidfile '%1' for reading: %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2023
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_ANOTHER_IS_RUNNING
Language = English
Another process locks the pidfile, daemon already running
.
Language = German
TODO: Gettext here..
.
MessageId = 2024
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_LOCK_PIDFILE
Language = English
Unable to lock pidfile '%1': %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2025
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_READ_PID_FROM_PIDFILE
Language = English
Unable to read pid from pidfile '%1': %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2026
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PIDFILE_WITH_ILLEGAL_DATA
Language = English
pidfile '%1' contains invalid data, can't read PID from it!
.
Language = German
TODO: Gettext here..
.
MessageId = 2027
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_FOUND_PID_IN_PIDFILE
Language = English
Found PID '%lu' in pidfile
.
Language = German
TODO: Gettext here..
.
MessageId = 2028
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_FOUND_PID_BUT_NO_PROCESS_RUNNING
Language = English
Found PID '%lu' in pidfile '%1', but no such process is running. Check and manually delete the pidfile!
.
Language = German
TODO: Gettext here..
.
MessageId = 2029
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PROCESS_ALIVE_CHECK_FAILED
Language = English
Can't check if process with PID '%lu' is alive: %1
.
Language = German
TODO: Gettext here..
.
MessageId = 2030
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_ALREADY_RUNNING_WITH_PID
Language = English
A process with PID '%lu' is already running
.
Language = German
TODO: Gettext here..
.
MessageId = 2022
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_OPEN_PIDFILE_FOR_WRITTING
Language = English
Unable to open pidfile '%1' for writing: %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2031
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_PIDFILE_IN_USE
Language = English
Unable to lock pidfile '%1' after creation, daemon started in parallel?
.
Language = German
TODO: Gettext here..
.
MessageId = 2032
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_LOCK_PIDFILE_AFTER_CREATION
Language = English
Unable to lock pidfile '%1' after creation: %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2033
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_TRUNCATE_PIDFILE
Language = English
Unable to truncate the pidfile '%1' before writing to it
.
Language = German
TODO: Gettext here..
.
MessageId = 2034
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_WRITE_PID_INTO_PIDFILE
Language = English
Unable to write PID into the pidfile '%1': %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2035
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_ATOMIC_PIDFILE_WRITE_FAILED
Language = English
Non-atomic write failed when storing the PID into the pidfile '%1'
.
Language = German
TODO: Gettext here..
.
MessageId = 2036
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_STORED_PIDFILE
Language = English
Stored '%lu' into the pidfile '%1' and locked it
.
Language = German
TODO: Gettext here..
.
MessageId = 2037
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_RELEASING_PIDFILE
Language = English
Releasing (unlocking/closing) pidfile '%1' (fd: %2, locked: %3)
.
Language = German
TODO: Gettext here..
.
MessageId = 2038
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_UNLOCK_PIDFILE
Language = English
Unable to unlock the pidfile '%1': %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2039
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_CLOSE_PIDFILE
Language = English
Unable to close the pidfile '%1': %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2040
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_REMOVING_PIDFILE
Language = English
Removing pidfile '%1' (fd: %2, locked: %3, running: %4)
.
Language = German
TODO: Gettext here..
.
MessageId = 2041
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_REMOVE_PIDFILE
Language = English
Unable to remove the pidfile '%1': %2
.
Language = German
TODO: Gettext here..
.
MessageId = 2001
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_INSTALL_IGNORE_SIGNAL
Language = English
Can't ignore signal handler for signal '%1' (%2): %3
.
Language = German
TODO: Gettext here..
.
MessageId = 2002
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_IGNORE_SIGNAL
Language = English
Ignoring signal handler for signal '%1' (%2)
.
Language = German
TODO: Gettext here..
.
MessageId = 2003
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_INSTALL_CRITICAL_SIGNAL
Language = English
Can't install empty signal handler for signal '%1' (%2): %3
.
Language = German
TODO: Gettext here..
.
MessageId = 2004
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CRITICAL_SIGNAL
Language = English
Installed empty signal handler for signal '%1' (%2)
.
Language = German
TODO: Gettext here..
.
MessageId = 2005
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_GOT_SIGNAL
Language = English
Got signal '%1' (%2)
.
Language = German
TODO: Gettext here..
.
MessageId = 2006
Severity = Error
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_CANT_INSTALL_FUNC_SIGNAL
Language = English
Can't install signal handler for signal '%1' (%2): %3
.
Language = German
TODO: Gettext here..
.
MessageId = 2007
Severity = Informational
Facility = Application
SymbolicName = WOLF_MSG_DAEMON_FUNC_SIGNAL
Language = English
Installed signal handler for signal '%1' (%2)
.
Language = German
TODO: Gettext here..
.