forked from dinoex/iroffer-dinoex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.txt
1890 lines (1890 loc) · 57.7 KB
/
en.txt
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
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1 "HELP"
2 "Shows help"
3 "XDLFULL"
4 "Lists all offered packs"
5 "XDLGROUP"
6 "group"
7 "Show packs from <group>"
8 "XDL"
9 "Lists offered groups and packs without group"
10 "XDLOCK"
11 "Show all locked packs"
12 "XDS"
13 "Save state file"
14 "DCL"
15 "Lists current transfers"
16 "DCLD"
17 "Lists current transfers with details"
18 "TRINFO"
19 "id"
20 "Lists information about transfer <id>"
21 "QUL"
22 "Lists current queue"
23 "IGNL"
24 "Show ignored list"
25 "LISTUL"
26 "Shows contents of upload directory"
27 "CHANL"
28 "[net]"
29 "Shows channel list with member list"
30 "CLOSE"
31 "Cancels transfer <id>"
32 "CLOSEU"
33 "Cancels upload <id>"
34 "RMQ"
35 "[position]"
36 "Removes entry at <position> from main queue"
37 "NOMIN"
38 "Disables minspeed for transfer <id>"
39 "NOMAX"
40 "Disables maxspeed for transfer <id>"
41 "UNLIMITED"
42 "Disables bandwidth limits for transfer <id>"
43 "SEND"
44 "nick n [net]"
45 "Sends pack <n> to <nick>"
46 "QUEUE"
47 "Queues pack <n> for <nick> into main queue"
48 "PSEND"
49 "channel style [net]"
50 "Sends <style> (full|minimal|summary) XDCC LIST to <channel>"
51 "QSEND"
52 "Start an extra transfer from main queue"
53 "SLOTSMAX"
54 "[slots]"
55 "temporary change slotsmax to <slots>"
56 "QUEUESIZE"
57 "temporary change queuesize to <slots>"
58 "REQUEUE"
59 "x y"
60 "Moves main queue entry from position <x> to <y>"
61 "INFO"
62 "n"
63 "Show info for pack <n>"
64 "REMOVE"
65 "n [m]"
66 "Removes pack <n> or <n> to <m>"
67 "REMOVEDIR"
68 "dir"
69 "Remove every pack found in <dir>"
70 "REMOVEGROUP"
71 "Remove every pack found in <group>"
72 "RENUMBER"
73 "Moves packs <x> to <y> to position <z>"
74 "SORT"
75 "Sort all packs by fields"
76 "ADD"
77 "filename"
78 "Add new pack with <filename>"
79 "ADDDIR"
80 "Add every file in <dir>"
81 "ADDNEW"
82 "Add new files in <dir>"
83 "ADDGROUP"
84 "group dir"
85 "Add new files in <dir> to <group>"
86 "CHFILE"
87 "n filename"
88 "Change file of pack <n> to <filename>"
89 "CHDESC"
91 "Change description of pack <n> to <msg>"
92 "CHNOTE"
93 "Change note of pack <n> to <msg>"
94 "CHMINS"
95 "n [m] x"
96 "Change min speed to <x> kB/s for pack <n> to <m>"
97 "CHMAXS"
98 "Change max speed to <x> kB/s for pack <n> to <m>"
99 "CHLIMIT"
100 "Change download limit to <x> transfers per day for pack <n> to <m>"
101 "CHLIMITINFO"
102 "Change over limit info of pack <n> to <msg>"
103 "CHGETS"
104 "Set the get counter to <x> for pack <n> to <m>"
105 "LOCK"
106 "n [m] password"
107 "Lock the pack <n> to <m> with <password>"
108 "UNLOCK"
109 "Unlock the pack <n> to <m>"
110 "LOCKGROUP"
111 "group password"
112 "Lock all packs in <group> with <password>"
113 "UNLOCKGROUP"
114 "Unlock all packs in <group>"
115 "GROUPDESC"
116 "group msg"
117 "Change description of <group> to <msg>"
118 "GROUP"
119 "n group"
120 "Change group of pack <n> to <group>"
121 "MOVEGROUP"
122 "n m group"
123 "Change group to <group> for pack <n> to <m>"
124 "REGROUP"
125 "group new"
126 "Change all packs of <group> to group <new>"
127 "NEWGROUP"
128 "Change any files in <dir> to <group>"
129 "ANNOUNCE"
130 "ANNOUNCE <msg> for pack <n> in all joined channels"
131 "ADDANN"
132 "Add and announce new pack"
133 "CRC"
134 "[n] [m]"
135 "Check CRC of pack <n> to <m>"
136 "NEWDIR"
137 "dirname newdir"
138 "rename pathnames of all matching packs"
139 "FILEMOVE"
140 "filename newfile"
141 "rename file on disk"
142 "MOVEFILE"
143 "rename the file of pack <n> on disk to <filename>"
144 "FILEDEL"
145 "remove file from disk"
146 "FILEREMOVE"
147 "remove pack <n> or <n> to <m> and remove its file from disk"
148 "SHOWDIR"
149 "list directory on disk"
150 "FETCH"
151 "file url"
152 "download url and save file in upload dir"
153 "FETCHCANCEL"
154 "stop download of fetch with <id>"
155 "MSG"
156 "nick message"
157 "Send <message> to user or channel <nick>"
158 "AMSG"
159 "msg"
160 "Announce <msg> in all joined channels"
161 "MSGNET"
162 "net nick message"
163 "MESG"
164 "message"
165 "Sends <message> to all users who are transferring"
166 "MESQ"
167 "Sends <message> to all users in a queue"
168 "IGNORE"
169 "x hostmask"
170 "Ignore <hostmask> (nick!user@host) for <x> minutes, wildcards allowed"
171 "UNIGNORE"
172 "hostmask"
173 "Un-Ignore <hostmask>"
174 "NOSAVE"
175 "x"
176 "Disables autosave for next <x> minutes"
177 "NOSEND"
178 "Disables XDCC SEND for next <x> minutes"
179 "NOLIST"
180 "Disables XDCC LIST and plist for next <x> minutes"
181 "MSGREAD"
182 "Show MSG log"
183 "MSGDEL"
184 "Delete MSG log"
185 "RMUL"
186 "Delete a file in the upload dir"
187 "RAW"
188 "command"
189 "Send <command> to server (RAW IRC)"
190 "RAWNET"
191 "net command"
192 "SERVERS"
193 "Shows the server list"
194 "HOP"
196 "leave and rejoin a channel to get status"
197 "JUMP"
198 "server [net]"
199 "Switches to a random server or server <server>"
200 "SERVQC"
201 "Clears the server send queue"
202 "STATUS"
203 "Show Useful Information"
204 "REHASH"
205 "Re-reads config file(s) and reconfigures"
206 "BOTINFO"
207 "Show Information about the bot status"
208 "MEMSTAT"
209 "Show Information about memory usage"
210 "CLEARRECORDS"
212 "CLEARGETS"
214 "REDRAW"
215 "Redraws the Screen"
216 "DELHIST"
217 "Deletes console history"
218 "QUIT"
219 "Close this DCC chat"
220 "EXIT"
221 "LOGOUT"
222 "CHATME"
223 "Sends you a DCC Chat Request"
224 "CHATL"
225 "Lists DCC chat information"
226 "CLOSEC"
227 "Closes DCC chat <id>"
228 "DEBUG"
229 "Set debugging level to <x>"
230 "IDENTIFY"
231 "Send stored password again to nickserv"
232 "HOLDQUEUE"
233 "Change holdqueue flag, x=1 set, x=0 reset"
234 "SHUTDOWN"
235 "act"
236 "Shutdown iroffer, <act> is \"now\", \"delayed\", or \"cancel\""
237 "DUMP"
238 "Write a dump into the logfile"
239 "CRASH"
240 "Write a dump into the logfile and exit"
241 "string too long!"
242 "Write failed: %s"
243 ","
244 "** Missing Command, try again"
245 "** User Command Not Recognized, try \"HELP\""
249 "-- %s Commands --"
250 "Info"
251 "Transfer"
252 "Pack"
253 "Misc"
254 "Bot"
255 "<Unknown>"
256 " %s %-*s : %s"
257 " %-20s : %s"
258 "For additional help, see the documentation at "
259 "\2#%-*u\2 %*ux [%s]%s %s%s%s"
260 " [%1.1fK Min]"
261 " [%1.1fK Max]"
262 " [%u of %u DL left]"
263 "%s"
264 " \2^-\2%*s%s"
265 "\2**\2 %s \2**\2"
266 "\2**\2 To stop this listing, type \"/MSG %s XDCC STOP\" \2**\2"
267 "\2**\2 %u %s \2**\2 %u of %u %s open"
268 "s"
269 ", Queue: %u/%u"
270 ", Min: %1.1fkB/s"
271 ", Max: %1.1fkB/s"
272 ", Record: %1.1fkB/s"
273 "\2**\2 Bandwidth Usage \2**\2 Current: %1.1fkB/s,"
274 " Cap: %u.0kB/s,"
275 " Record: %1.1fkB/s"
276 "\2**\2 To request a file, type \"/MSG %s XDCC SEND x\" \2**\2"
277 "\2**\2 To request details, type \"/MSG %s XDCC INFO x\" \2**\2"
278 "\2**\2 To list a group, type \"/MSG %s XDCC LIST group\" \2**\2"
279 "\2**\2 For a listing type: \"/MSG %s XDCC LIST\" \2**\2"
280 "Total Offered: %sB Total Transferred: %sB"
281 "group: %s%s%s"
282 "Sorry, nothing was found, try a XDCC LIST"
283 "%s %s"
284 "group: %s"
285 "No active transfers"
286 "Current %s"
287 " ID User Pack File Status"
288 "Listening"
289 "Sending"
290 "Finishing"
291 "Closing"
292 "Unknown!"
293 " %3i %-9s %-4d %-32s %s %2.0f%%"
294 " %3i %-9s %-4d %-32s %s"
296 " ID User File Status"
297 "Connecting"
298 "Getting"
299 "Done"
300 " %2i %-9s %-32s %s %2.0f%%"
301 " %2i %-9s %-32s %s"
302 " ID User Pack File Status"
303 " ^- Speed Current/ End Start/Remain Min/ Max Resumed"
304 " --------------------------------------------------------------------"
305 "network: %u: %s"
306 "%3i %-9s %-4d %-32s %s %2.0f%%"
307 "%3i %-9s %-4d %-32s %s"
308 "%1.1fK"
309 "%6liK"
310 " ^- %5.1fK/s %6"
311 "dK/%6"
312 "dK %2i%c%02i%c/%2i%c%02i%c %5s/%5s %7s"
313 "no"
314 " ^- ----- -------/------- -----/------ -----/----- ---"
315 " ID User File Status"
316 " ^- Speed Current/ End Start/Remain"
317 " --------------------------------------------------------------"
318 " %2i %-9s %-32s %s %2.0f%%"
319 " %2i %-9s %-32s %s"
320 "dK %2i%c%02i%c/%2i%c%02i%c"
321 "No Users Queued"
322 "Current Main Queue:"
323 " # User Pack File Waiting Left"
324 " %2i %-9s %-4d %-32s %2lih%2lim %2lih%2lim"
325 " %2i %-9s %-4d %-32s %2lih%2lim Unknown"
326 "Invalid ID number, Try \"%s\" for a list"
327 "Owner Requested Close"
329 "** Removed From Queue: Owner Requested Remove"
330 "Pack Info for Pack #%u:"
331 " Filename %s"
332 " Sendname %s"
333 " Description %s"
334 " Note %s"
335 " Filesize %"
336 "d [%sB]"
337 " Last Modified %s"
338 " Device/Inode %"
339 "u/%"
340 "u"
341 " Gets %u"
342 " Minspeed %1.1fkB/sec"
343 " Maxspeed %1.1fkB/sec"
344 " md5sum "
345 " crc32 "
346 "%s/%s"
347 "Can't Access Directory: %s %s"
348 "Deleted all %u lines of console history"
349 "Sending %s pack %d"
350 "man"
351 "Try Specifying a Channel"
352 "No PLIST style specified. Using style full"
353 "full"
354 "minimal"
355 "summary"
356 "Summary Plist makes no sense with restrictprivlist set and no creditline or headline"
357 "PLIST format is not (full|minimal|summary)"
362 "Sending PLIST with style %s to %s on network %s"
363 "MESSAGE FROM OWNER: %s"
364 "Sent message to %u %s"
365 "DCC CHAT: QUIT"
366 "Bye."
371 "Pack file changed"
372 "%s: [Pack %u] Old: %s New: %s"
374 "Try Specifying a Description"
377 "Try Specifying a Minspeed"
378 "%s: [Pack %u] Old: %1.1f New: %1.1f"
379 "Try Specifying a Maxspeed"
381 "Try Specifying a Count"
382 "%s: [Pack %u] Old: %u New: %u"
383 "Sending You A DCC Chat Request"
384 "[Failed to listen, try again]"
385 "No Active DCC Chats"
386 "DCC CHAT %u:"
387 " Chat sent to %s. Waiting for inbound connection."
388 " Chat received from %s. Waiting for outbound connection."
389 " Chat established with %s. Waiting for password."
390 " Chat established with %s."
391 "Unexpected dccchat state %u"
392 " Connected at %s"
393 " Last contact %s"
394 " Local: %s, Remote: %s"
396 "Disconnecting yourself."
397 "Disconnected due to CLOSEC\n"
398 "Caught SIGUSR2, Rehashing..."
399 "Reloading %s ..."
400 "Cant Access File '%s', Aborting rehash: %s"
401 "**WARNING** Missing vital information: %s, fix and re-rehash ASAP"
402 "Reconfiguring..."
403 "vhost changed, reconnecting"
404 "network dropped, reconnecting"
405 "PART %s"
406 "1 = %s parted"
407 "2 = %s common"
408 "3 = %s new"
409 "could not add channel %s twice!"
410 "pidfile changed, switching"
411 "user_nick missing! keeping old nick!"
412 "user_nick changed, renaming nick to %s"
413 "NICK %s"
414 "Checking for completeness of config file ..."
415 "**WARNING** incomplete upload information, fix and re-rehash ASAP"
416 "**WARNING** no download hosts defined"
417 "**WARNING** no state file defined"
418 "Done."
419 "BotInfo:"
420 "iroffer-dinoex "
421 "http://iroffer.dinoex.net/"
422 " - "
423 "iroffer started up %s ago"
424 "total running time of %s"
425 "cpu usage: %2.2fs user (%2.5f%%), %2.2fs system (%2.5f%%)"
426 "configured nick: %s, actual nick: %s, realname: %s, modes: %s"
427 "??"
428 "current server: %s:%u (%s)"
429 "current server: %s:%u (%s at %s:%i with %s)"
430 "current server: %s:%u (%s at %s:%i)"
433 "current server actual name: %s "
434 "<unknown>"
435 "channel %10s: joined: %3s"
438 ", key: %s"
439 ", plist every %2i min (%s)"
440 "bandwidth: lowsend: %i, minspeed: %1.1f, maxspeed: %1.1f, overallmaxspeed: %i"
441 " default max: %i, day max: %i ( %i:00 -> %i:00, days=\"%s%s%s%s%s%s%s\" )"
442 "M"
443 "T"
444 "W"
445 "R"
446 "F"
447 "S"
448 "U"
449 " default max: %i, day max: (same)"
450 "transferlimit: %7s (ends %s): used %"
451 "uMB, limit %"
452 "uMB"
453 "uMB, limit unlimited"
454 "files: pid: %s, log: %s, state: %s, xdcclist: %s"
455 "(none)"
456 "config %s: %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s"
457 ", "
458 "%"
460 "upload allowed, dir: %s, max size: %s"
461 "none"
462 "console buffering: %u written, %u flushed, %u dropped (%u queued)"
463 "transfer method: %s (blocksize %d)"
464 "linux-sendfile"
465 "freebsd-sendfile"
466 "mmap/write"
467 "read/write"
468 "unknown"
469 "NOTICE: Delayed shutdown activated, iroffer will shutdown once there are no active transfers"
470 "NOTICE: To cancel the delayed shutdown, issue \"SHUTDOWN CANCEL\""
471 "No Hosts Ignored or Watched"
472 "Current Ignore List:"
473 " Last Request Un-Ignore Type Hostmask"
474 " %4i%c%02i%c ago %4i%c%02i%c %6s %-32s"
475 "manual"
476 "auto"
477 "Current Watch List:"
478 " Last Request Un-Watch Hostmask"
479 " %4i%c%02i%c ago %4i%c%02i%c %-32s"
480 "Try specifying an amount of time to ignore"
481 "Try specifying a hostmask longer than 4 characters"
482 "Ignore activated for %s which will last %u min"
483 "Try specifying a hostmask to un-ignore"
484 "Ignore removed for %s"
485 "Hostmask not found"
486 "AutoSave has been"
487 "XDCC SEND has been"
488 "XDCC LIST and PLIST have been"
490 "** Moved pack %u to %u"
491 "%s: %s"
492 " ^- %s"
493 "msglog: %i %s in log%s%s"
494 ", use MSGDEL to remove "
495 "them"
496 "it"
497 "msglog: deleted %u messages"
498 "iroffer memory usage:"
499 "rusage: maxrss %li, ixrss %li, idrss %li, "
500 "isrss %li, minflt %li, majflt %li, nswap %li"
501 " inbloc %li, oublock %li, msgsnd %li, "
502 "msgrcv %li, nsignals %li, nvcsw %li, nivcsw %li"
503 "gdata: %ld bytes"
504 "heap: %li bytes, %i allocations (%li created in past 10 min) (depth %d)"
505 "mmaps: %i kbytes, %u file mappings"
506 "list"
507 "iroffer heap details:"
508 " id | address | size | when | where"
509 "%3u %3u | 0x%8.8lX | %6iB | %7"
510 "iroffer memmap details:"
511 " pack | location | address | references"
512 " %4i | 0x%8.8"
513 "X .. 0x%8.8"
514 "X | %p | %10d"
515 "for a detailed listing use \"memstat list\""
516 "Too many transfers"
517 "NOW"
518 "DELAYED"
519 "CANCEL"
520 "Usage: SHUTDOWN <now|delayed|cancel>"
521 "Delayed shutdown activated, iroffer will shutdown once there are no active transfers"
522 "To cancel the delayed shutdown, issue \"SHUTDOWN CANCEL\""
523 "Delayed shutdown canceled"
524 "Cleared server queue of %u lines"
525 "Try specifying a valid server number, use \"servers\" for a list"
526 "Server List:"
527 " Num Server Port Password"
528 " %3i %-27s %6u %s"
529 "(hidden)"
530 "Current Server: %s:%u (%s)"
531 "Try Specifying a Valid Transfer Number"
532 "Transfer Info for ID %i:"
533 "User %s, Hostname %s, Status %s"
534 "File: %s"
535 "Start %"
536 "dK, Current %"
537 "dK, End %"
538 "dK (%2.0f%% File, %2.0f%% Xfer)"
539 "%1.1fK/s"
540 "Min %s, Current %1.1fK/s, Max %s, In Transit %"
541 "dK"
542 "Transfer started %i%c %i%c ago, Finish in %i%c %i%c, Last contact %i%c %i%c ago."
543 "Local: %s, Remote: %s"
544 "Sockets: Listen %i, Transfer %i, File %i"
545 "MMAP: [%p] 0x%.8"
546 "X .. 0x%.8"
547 "X"
548 "."
549 ".."
550 "Upload directory is empty"
551 "Listing '%s':"
552 "cannot access '%s', ignoring: %s"
553 "%9s %s"
554 "=DIR="
555 "=CHAR="
556 "=BLOCK="
557 "=FIFO="
558 "=SYMLINK="
559 "=SOCKET="
560 "???"
561 "Unable to determine device sizes: %s"
562 "Device size: %s, used %s, free %s, reserved %s"
565 "/"
566 "Filename contains invalid characters"
567 "Unable to remove the file"
568 "Deleted"
569 "That filename doesn't exist"
570 "Channel Members:"
571 "%s: "
572 "%s%s "
573 "%s: %i %s"
575 "Could Not Create Socket, Aborting: %s"
576 "Couldn't Bind to Socket, Aborting: %s"
577 "Couldn't Listen, Aborting: %s"
578 "DCC CHAT CHAT %s"
579 "DCC CHAT sent to %s on %s, waiting for connection on %s"
580 "Accept Error, Aborting: %s"
581 "DCC CHAT connection received, authenticating"
582 "Couldn't Set Non-Blocking"
583 "Welcome to %s\n"
584 "%s%s\n"
585 " running %s\n"
586 " \n"
587 "Enter Your Password:\n"
588 "Socket Error: %s"
589 "Couldn't Bind To Virtual Host: %s"
590 "Connection to DCC Chat Failed: %s"
591 "Couldn't get sock name: %s"
592 "dccchat socket = %d"
593 "DCC CHAT received from %s on %s, attempting connection to %s"
594 "DCC CHAT connection succeeded, authenticating"
595 "DCC CHAT Correct password"
596 "Entering DCC Chat Admin Interface\n"
597 "For Help type \"help\"\n"
598 "** You have %u %s in the message log%s\n"
599 ", use MSGREAD to read them"
600 "DCC CHAT: Incorrect password"
601 "Incorrect Password\n"
602 ">DCC>: %s"
603 "DCCCHAT: Output too large, ignoring!"
604 "<DCC<: %s"
605 "%s\n"
607 "cannot use foreground mode on a non-terminal"
608 "can't get terminal settings: %s"
609 "can't set terminal settings: %s"
610 "[ %-*s ]"
613 "** Window Size Changed To: %ux%u\n"
615 "[ iroffer (%s) > %-*s]"
617 "read from stdin failed: %s"
618 "EOF!"
619 ", see "
620 "Usage: %s [-vc] [-bdkn"
621 "]"
622 " [-u user]"
623 " [-t dir]"
624 " configfile [ configfile ... ]\n"
625 " -v Print version and exit.\n"
626 " -c Generate encrypted password and exit.\n"
627 " -d Increase debug level\n"
628 " -b Go to background mode\n"
629 " -k Attempt to adjust ulimit to allow core files\n"
630 " -n No colors in foreground mode\n"
631 " -s No screen manipulation in foreground mode\n"
632 " -u user Run as user (you have to start as root).\n"
633 " -t dir Chroot to dir (you have to start as root).\n"
636 "%s: no configuration file specified\n"
637 "select %s: [read"
638 " %d"
639 "] [write"
640 "try"
641 "Select returned an error: %s"
642 "got"
644 "host not found"
645 "no ip address"
646 "non-recoverable name server"
647 "try again later"
650 "exit"
651 "signaled"
652 "gettimeofday() failed! %s\n"
653 "System Time Changed Backwards %lim %lis!!\n"
654 "System Time Changed Forward or Mainloop Skipped %lim %lis!!\n"
655 "Closing Server Connection on %s: %s"
656 "Closed"
657 "Couldn't determine connection status: %s on %s"
658 "Server Connection Failed: %s on %s"
659 "Server Connection to %s Established, Logging In"
661 "ourip = "
662 "couldn't get ourip on %s"
663 "Error resolving server %s on %s"
664 "Server Resolve Timed Out (%u seconds) on %s"
665 "Server Connection Timed Out (%u seconds) on %s"
666 "Couldn't determine upload connection status on %s: %s"
667 "Upload Connection Failed status:"
668 "Upload Connection Failed"
669 "Upload Connection Established on %s"
670 "DCC Connection Established"
671 "Upload Connection Timed Out"
672 "Couldn't determine dcc connection status on %s: %s"
673 "DCC Chat Connect Attempt Failed: %s"
674 "DCC Chat Connect Attempt Failed on %s: %s"
675 "DCC Chat Lost on %s: %s"
676 "DCC Chat Lost: %s"
677 "Delayed Shutdown Activated, No Transfers Remaining"
678 "Resetting %s transfer limit, used %"
679 "uMB of the %"
680 "uMB limit"
681 "unknown type %u"
682 "All %"
683 "uMB of the %s transfer limit used. Stopping transfers."
684 "Sorry, I have exceeded my %s transfer limit of %"
685 "uMB. Try again after %s."
686 "No longer over any transfer limits. Transfers are now allowed."
687 "PING %s\n"
688 "<NORES<: %s"
689 "Closing Server Connection on %s: No Response for %u minutes."
690 "Can't send Summary Plist to %s (restrictprivlist is set and no creditline or headline, summary makes no sense!)"
691 "Plist sent to %s (summary)"
692 "Plist sent to %s (full)"
693 "Plist sent to %s (minimal)"
694 "notifications skipped on %s, server queue is rather large"
696 "[ %%-%us ]"
706 "iroffer exited, Closing DCC Chat\n"
707 "iroffer exited\n\n"
708 "Reconnecting to server (%u seconds) on %s"
710 ">IRC>: %u, %s"
711 "NOTICE"
712 "001"
713 "Server welcome: %s"
714 "IP From Server: %s"
715 "MODE %s %s"
716 "005"
717 "PREFIX=("
718 "Server prefix list on %s doesn't make sense, using defaults: %s"
719 "CHANMODES="
720 "433"
721 "*"
722 "Nickname %s already in use on %s, trying %s%u"
723 "NICK %s%u"
724 "353"
725 "Got name data for %s which is not a known channel on %s!"
726 "ERROR :Closing Link"
727 "Server Closed Connection on %s: %s"
728 "PING :"
729 "Server Ping on %s: %s"
730 "PO%s"
731 "JOIN"
732 "Joined %s on %s"
733 "%s is not a known channel on %s!"
734 "PART"
735 "NICK"
736 "KICK"
737 "Kicked on %s: %s"
738 "Kicked on %s, Rejoining: %s"
739 "MODE"
740 "PRIVMSG"
741 ":"
743 "Auto-ignore activated for %s (%s) lasting %i%c%i%c"
744 ". Further messages will increase duration."
748 ":Use CTCP CLIENTINFO <COMMAND> to get more specific information"
749 "PING"
750 "CLIENTINFO PING returns the arguments it receives"
751 "DCC"
752 "CLIENTINFO DCC requests a DCC for chatting or file transfer"
753 "VERSION"
754 "CLIENTINFO VERSION shows information about this client's version"
755 "XDCC"
756 "CLIENTINFO XDCC LIST|SEND list and DCC file(s) to you"
757 "UPTIME"
758 "CLIENTINFO UPTIME shows how long this client has been running"
759 "[CTCP] %s in %s: CLIENTINFO"
763 " "
764 "[CTCP] %s on %s: PING"
767 "VERSION iroffer-dinoex "
768 ""
769 "[CTCP] %s on %s: VERSION"
773 "[CTCP] %s on %s: UPTIME"
777 "[CTCP] %s on %s: STATUS"
780 "You can't resume the transfer at a point greater than the size of the file"
781 "XDCC [%02i:%s on %s]: Resume attempted beyond end of file ( %"
782 "d >= %"
783 "d )"
785 "XDCC [%02i:%s on %s]: Resumed at %"
786 "Couldn't find transfer that %s on %s tried to resume!"
790 "DCC Chat denied from %s"
792 "DCC Send Denied, I don't accept transfers from %s"
793 "DCC Send Denied from %s on %s"
794 "I don't accept transfers that big"
795 "too big"
796 "I can't accept transfers that large"
797 "too large"
798 "I'm already getting too many files"
799 "too many uploads"
800 "not enough free space on disk"
801 "disk full"
802 "DCC Send Accepted from %s on %s: %s (%"
803 "dkB)"
807 "DCC Send Resumed from %s on %s: %s (%"
808 "d of %"
809 "dkB left)"
810 "DCC Resume Denied, unable to find transfer"
811 "Couldn't find upload that %s on %s tried to resume!"
813 "ADMIN: Incorrect Password"
814 "Incorrect ADMIN Password (%s on %s)"
815 "ADMIN: %s is not allowed to issue admin commands"
816 "Incorrect ADMIN Hostname (%s on %s)"
822 "** XDCC LIST Denied. %s"
823 "Wait for the public list in the channel."
826 "I'm rather busy at the moment, try again later"
827 "ALL"
829 "XDLGROUP %s"
831 "ignored"
832 "denied"
833 "queued"
834 "GET"
839 "Transfer canceled by user"
841 "Removed you from the queue for \"%s\", you waited %li %s."
842 "You Don't Appear To Be In A Queue"
846 "Owner for this bot is: %s"
847 "(unknown)"
849 "Searching for \"%s\"..."
850 " - Pack #%u matches, \"%s\""
853 "Sorry, this command is unsupported"
855 "Trigger:\2(\2/MSG %s XDCC LIST\2)\2 "
856 "\2(\2XDCC\2)\2 Packs:\2(\2%u\2)\2 "
857 "%s%s"
858 "Sends:\2(\2%u/%u\2)\2 "
859 "Queues:\2(\2%u/%u\2)\2 "
860 "Record:\2(\2%1.1fkB/s\2)\2 "
861 "%s%s%s\2=\2iroffer\2=\2"
862 "Note:\2(\2"
863 "\2)\2 "
866 "@FIND %s (%s on %s) - %u %s found."
867 "%s from %s on %s logged, use MSGREAD to display it."
868 "%s on %s: %s"
869 "** Sending You %s by DCC"
870 "AutoSend"
871 "Denied (host denied)"
873 "Denied (restricted)"
876 "Denied (offline)"
878 "(Bad Pack Number)"
879 "** Invalid Pack Number, Try Again"
880 "Denied (pack locked)"
881 "** XDCC SEND denied, this pack is locked"
882 "Denied (dup)"
883 "** You already requested that pack"
884 "(No New Cons)"
885 "** The Owner Has Requested That No New Connections Are Made In The Next %li Minutes%s%s"
886 "(Over Transfer Limit)"
888 "(Over Pack Transfer Limit)"
889 "** Sorry, This Pack is over download limit for today. Try again tomorrow."
890 "** You can only have %u %s at a time, %s"
891 "** All Slots Full, %s"
892 "requested"
893 "** Sending you pack #%u (\"%s\")"
894 "%s, which is %sB. (resume supported)"
898 "unlimitedhost found: %s (%s on %s)"
899 "** XDCC INFO denied, disabled by configuration"
905 "Denied (queue/dup)"
906 "Denied, You already have that item queued."
907 "Denied (user/queue)"
908 "Denied, You already have %u items queued, Try Again Later"
909 "Denied (slot/queue)"
910 "Main queue of size %u is Full, Try Again Later"
911 "Queued (slot)"
912 "Added you to the main queue for pack %u (\"%s\") in position %u. To Remove yourself at "
913 "a later time type \"/MSG %s XDCC REMOVE %u\"."
914 " (low bandwidth)"
915 " (manual)"
916 "QUEUED SEND%s: %s (%s on %s), Pack #%u"
917 "%s!*@%s"
918 "** Sending you queued pack #%u (\"%s\")"
919 "** Loading %s ... \n"
920 "Cant Access Config File '%s': %s"
921 "** Checking for completeness of config file ...\n"
922 "Missing vital information: %s"
923 "Config File Missing Upload Information"
924 "Config File Missing Download Host Information"
925 "Config File Missing State File Information"
1003 "%s:%ld ignored '%s' because it has unknown args: '%s'"
1004 "%s:%ld ignored '%s' because it has no args."
1005 "%s:%ld ignored '%s' because it has invalid args: '%s'"
1006 "%s:%ld '%s': %d is out-of-range"
1010 "%s:%ld ignored network '%s' because we have to many."
1011 "%d"
1027 "%s:%ld channel '%s' on %s: plistoffset must be less than plist time, ignoring offset"
1031 "%s:%ld unable to have slotsmax of %u, using %u instead"
1039 "daily"
1040 "weekly"
1041 "monthly"
1067 "%s:%ld Invalid connectionmethod %s in config file, defaulting to direct"
1068 "%s:%ld ignored invalid line in config file: %s"
1069 " (direct)"
1070 " (bnc at %s:%i with %s)"
1071 " (bnc at %s:%i)"
1072 " (wingate at %s:%i)"
1073 " (custom at %s:%i)"
1074 "Attempting Connection to %s:%u from %s%s"
1075 "Attempting Connection to %s:%u%s"
1076 "socketpair(): %s"
1077 "fork(): %s"
1078 "Invalid DNS response, Ignoring: %s"
1079 "Socket Error"
1081 "Couldn't Bind To Virtual Host"
1082 "Connection to Server Failed: %s"
1083 "ircserver socket = %d"
1084 "%u"
1085 "%s %u"
1086 "PASS %s"
1087 "USER %s 32 . :%s"
1088 "VIP %s"
1089 "CONN %s %d"
1090 "WRITESERVER: Output too large, ignoring!"
1091 "<SND<: %u: %s"
1092 "<QUEF<: %s"
1093 "Message Truncated!"
1094 "Server queue is very large. Dropping additional output."
1095 "<QUEN<: %s"
1096 "<QUES<: %s"
1097 "Unknown type %u"
1098 "Connection to %s (%s) Closed"
1099 "<IRC<: %u, %s"
1100 "PING %s"
1101 ".tmp"
1102 "~"
1103 "Cant Create XDCC List File '%s': %s"
1107 "Writing pid file..."
1108 "Cant Create PID File '%s': %s"
1109 "%i\n"
1110 "\n** Entering Background Mode\n"
1111 "** All Commands must be issued by remote administration\n"
1112 "Unable to Fork: %s"
1113 "Couldn't get rlimit"
1114 "Couldn't setsid: %s"
1115 "/dev/null"
1116 "Entered Background Mode"
1117 "iroffer"
1118 "--background-mode--"
1119 "iroffer exited (signal forced!)\n\n"
1120 "iroffer exited (signal forced!)\n"
1121 "!!! iroffer has received a fatal signal. !!!"
1122 "Signal %d (%s)"
1123 "Faulting Address: 0x%.8lX"
1124 "invalid address alignment"
1125 "non-existent physical address"
1126 "object specific hardware error"
1127 "Unknown"
1128 "Code: %s"
1129 "illegal opcode"
1130 "illegal operand"
1131 "illegal addressing mode"
1132 "illegal trap"
1133 "privileged opcode"
1134 "privileged register"
1135 "co-processor error"
1136 "internal stack error"
1137 "integer divide by zero"
1138 "integer overflow"
1139 "floating point divide by zero"
1140 "floating point overflow"
1141 "floating point underflow"
1142 "floating point inexact result"
1143 "floating point invalid operation"
1144 "subscript out of range"
1145 "address not mapped to object"
1146 "invalid permissions for mapped object"
1147 "Context Trace:"
1148 "Crashing... Please report this problem to dinoex"
1149 "Flood Protection Activated"
1150 "Flood Protection Deactivated"
1151 "JOIN %s %s"
1152 "JOIN %s"
1153 "Shutting Down (FORCED)"
1154 "Shutting Down"
1155 "iroffer exited (shutdown), Closing DCC Chat\n"
1156 "iroffer exited (shutdown)\n\n"
1157 "Shutting Down... (Issue \"SHUTDOWN\" again to force quit)"
1158 "Server Shutting Down. (Resume Supported)"
1162 "QUIT :iroffer-dinoex "
1163 "%s%s - running %s"
1164 "Waiting for Server Queue To Flush..."
1165 "QUIT :Changing Servers"
1166 "Changing Servers on %s"
1168 "uK, %1.1fK/s, %1.1fK/s Up, %1.1fK/s Down)"
1169 "Stat: %u/%u Sls, %u/%u Q, %1.1fK/s Rcd, %u SrQ (Bdw: %"
1170 "uK, %1.1fK/s, %1.1fK/s Rcd)"
1171 "stat %u %1.0f %u %1.0f %u %u %u %u %u %u %1.1f %u %"
1172 "u %1.1f %1.1f"
1173 "Not Sending XDCC LIST to: %s (nolist set)"
1174 "The Owner Has Requested That No Lists Be Sent In The Next %li %s"
1175 "Sending XDCC LIST to: %s"
1178 "Welcome to iroffer-dinoex - "
1179 "Version "
1181 "** iroffer-dinoex is distributed under the GNU General Public License.\n"
1182 "** please see the LICENSE for more information.\n"
1183 "\n** Starting up...\n"
1184 "Can't lookup user: %s"
1185 "Can't lookup group list: %s"
1186 "** Changing root filesystem to '%s'\n"
1187 "Can't chroot: %s"
1188 "Can't chdir: %s"
1189 "** Dropping root privileges to user %s (%u/%u, groups:"
1190 ").\n"
1191 "Can't change group: %s"
1192 "Can't set group list: %s"
1193 "Can't change to user: %s"
1194 "iroffer should not be run as root!"
1195 "** Window Size: %ux%u\n"
1196 "** Started on: %s\n"
1197 "Unable to adjust fd limit to %u: %s"
1198 "Unable to read fd limit: %s"
1199 "fd limit of %u is too small"
1200 "Unable to set core limit: hard limit is 0"
1201 "Unable to adjust core limit: %s"
1202 "Unable to read core limit: %s"
1203 "iroffer-dinoex started "
1204 "Cant set console non-blocking!: %s"
1206 "Rotating Log to '%s'"
1207 "Unable to rename log '%s' -> '%s': %s"
1208 "Logfile rotated to '%s'"
1209 "Unable to remove old log '%s' : %s"
1210 "Rotated Log to '%s'"
1211 "\niroffer-dinoex "
1213 " Configuration File Password Generator\n"
1214 "This will take a password of your choosing and encrypt it.\n"
1215 "You should place the output this program generates in your config file.\n"
1216 "You can then use your password you enter here over irc.\n"
1217 "Your password must be between 5 and 59 characters\n"
1218 "Please Enter Your Password: "
1219 "Couldn't Read Your Password, Try Again\n"
1220 "Wrong Length, Try Again\n"
1221 "And Again for Verification: "
1222 "The Password Didn't Match, Try Again\n"
1223 "To use \"%s\" as your password use the following in your config file:\n"
1224 "adminpass %s\n"
1225 "The crypt() function does not appear to be working correctly\n"
1226 "iroffer was compiled without encrypted password support. You do not need to encrypt your password.\n"
1228 "Notifying %u Queued Packs on %s"
1229 "Queued %lih%lim for \"%s\", in position %u of %u. %lih%lim or %s remaining. (at %s)"
1230 "more"
1231 "less"
1232 "%s bandwidth limit: %2.1f of %2.1fkB/sec used. Your share: %2.1fkB/sec."
1233 "Pack bandwidth limit: %2.1f of %2.1fkB/sec used."
1234 "Pack %u: File '%s' can no longer be accessed: %s"
1235 "File '%s' has size of 0 byte"
1236 "File '%s' is too large"
1237 "File '%s' has changed"
1239 "** Removed From Queue: To many requests"
1240 "Removed From Queue: To many requests for %s on %s."
1241 "You are no longer on a known channel"
1242 "** Removed From Queue: You are no longer on a known channel"
1243 "Removed From Queue: %s on %s not in known Channel."
1244 "Cant Write To State File (%d != %d) %s"
1245 "Saving State File... "
1246 "Cant Create State File '%s': %s"
1247 ", %s"
1252 "Cant Remove Old State File '%s': %s"
1253 "Cant Backup Old State File '%s' -> '%s': %s"
1254 "Cant Save New State File '%s': %s"
1255 "Bad Header From State File (%u < %u)"
1256 "Loading State File... "
1257 "Cant Access State File '%s': %s"
1258 "State File: Too small, Skipping"
1259 "Cant Read State File (%u != %u) %s"
1260 "\"%s\" Appears corrupt or is not an iroffer state file"
1261 "\"%s\" Does not appear to be an iroffer state file"
1262 " [Version %u State File]"
1270 " [Total Runtime %s]"
1273 " [Written by %s]"