-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang.txt
5064 lines (4216 loc) · 244 KB
/
lang.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
# To use a translation, set 'lang' in the pisg configuration file, e.g.:
#
# <set lang="DA">
#
# to get a page in Danish.
#
# Translations in this file with current maintainers:
#
# (EN) English
# (DE) German - Christoph Berg <[email protected]> (2005-07-28)
# (NO) Norwegian - Andreas Blaafladt <[email protected]>
# (PT) Portuguese - MrWho <[email protected]>
# (PT_BR) Portuguese/BR(Brazil) - francisco lopes <[email protected]>
# (DA) Danish - Morten Brix Pedersen <morten at wtf dot dk>
# (FR) French - Molator <[email protected]>
# (ES) Spanish - Sheuron Azxe <[email protected]>
# last update: 2005-01-14 by Anonymous
# (PL) Polish - Gandalf the Grey <[email protected]>
# (NL_BE) Flemish - Tiniduske <[email protected]> (2004-10-15)
# (NL) Dutch - Jeroen van Nimwegen <[email protected]> (2005-02-17)
# (SE) Swedish - Andreas Henriksson <[email protected]> (2005-01-12)
# (FI) Finnish - Kirler@paincreators <[email protected]>
# last update: Mikko Nissinen <[email protected]> (2005-07-10)
# (SI) Slovenian - Ales Tepina <??> (2005-01-09: bounces)
# (HU) Hungarian - Gyuri Horak <??> (2005-01-09: bounces)
# (EE) Estonian - Hannes Tarien <[email protected]> (2005-09-06)
# (IT) Italian - Michele Venturi (2005-04-29)
# (CA) Catalan - Nikoru Kimochi <??> (2005-01-09: bounces)
# (TR) Turkish - cti- <??> (2005-01-09: bounces)
# (RO) Romanian - Parcalabior Vald <[email protected]>
# (IS) Icelandic - Birkir Hreinsson <[email protected]>
# (CZ) Czech - Jaroslav Ostadal <??> (2005-01-14: bounces)
# last update: Pavel Kouril <[email protected]> (2006-04-30)
# (SK) Slovak - Gabriel Svajko <[email protected]>
# (RU) Russian - Anton Tretiakov <[email protected]>
# (GR) Greek - Konstantinos Tzanidis <[email protected]> (2005-07-22)
# (HE) Hebrew - Shimi <[email protected]>
# (BG) Bulgarian - Dimitar <[email protected]> (2005-01-24)
# last update: elseif <[email protected]> (2005-02-19)
# (SR_EC) Serbian cyrillic - Sasa Stefanovic <[email protected]> (2006-07-22)
# (SR_EL) Serbian latin - Sasa Stefanovic <[email protected]> (2006-07-22)
# (SQ) Albanian - h3li0s <[email protected]>
#
# A list of charsets is at http://www.w3.org/International/O-charset-list.html.
### English
<lang name="EN" charset="us-ascii">
mostop1 = "<b>[:nick]</b> donated [:ops] ops in the channel..."
mostop2 = "<b>[:nick]</b> was also very polite: [:ops] ops from [:him:her:]."
mostop3 = "Strange, no op was given on [:channel]!"
mostdeop1 = "<b>[:nick]</b> is the channel sheriff with [:deops] deops."
mostdeop2 = "<b>[:nick]</b> deoped [:deops] users."
mostdeop3 = "Wow, no op was taken on [:channel]!"
mostvoice1 = "<b>[:nick]</b> donated [:voices] voices in the channel..."
mostvoice2 = "<b>[:nick]</b> was also very polite: [:voices] voices from [:him:her:]."
mostvoice3 = "Strange, no voices were given on [:channel]!"
mostdevoice1 = "<b>[:nick]</b> likes taking voice from people, [:devoices] devoices."
mostdevoice2 = "<b>[:nick]</b> was close to the same, devoiced [:devoices] users."
mostdevoice3 = "No voices were taken on [:channel]!"
mosthalfop1 = "<b>[:nick]</b> donated [:halfops] halfops in the channel..."
mosthalfop2 = "<b>[:nick]</b> was also very polite: [:halfops] halfops from [:him:her:]."
mosthalfop3 = "Strange, no halfop was given on [:channel]!"
mostdehalfop1 = "<b>[:nick]</b> is the channel sheriff with [:dehalfops] dehalfops."
mostdehalfop2 = "<b>[:nick]</b> dehalfoped [:dehalfops] users."
mostdehalfop3 = "Wow, no halfop was taken on [:channel]!"
action1 = "<b>[:nick]</b> always lets us know what [:he:she:]'s doing: [:actions] actions!"
action2 = "Also, <b>[:nick]</b> tells us what's up with [:actions] actions."
action3 = "No actions in [:channel]!"
actiontext = "<b>For example, like this:</b><br /> [:line]"
question1 = "Is <b>[:nick]</b> stupid or just asking too many questions? [:per]% lines contained a question!"
question2 = "<b>[:nick]</b> didn't know that much either. [:per]% of [:his:her:] lines were questions."
question3 = "Nobody asked questions here; just geniuses in this channel?"
shout1 = "The loudest one was <b>[:nick]</b>, who yelled [:per]% of the time!"
shout2 = "Another <i>old yeller</i> was <b>[:nick]</b>, who shouted [:per]% of the time!"
shout3 = "Nobody shouted at all, wow."
allcaps1 = "It seems that <b>[:nick]</b>'s shift-key is hanging: [:per]% of the time [:he:she:] wrote UPPERCASE."
allcaps2 = "<b>[:nick]</b> just forgot to deactivate [:his:her:] Caps-Lock. [:He:She:] wrote UPPERCASE [:per]% of the time."
allcaps3 = "Everybody had their shift-key under control. :)"
allcapstext = "<b>For example, like this:</b><br /> [:line]"
violent1 = "<b>[:nick]</b> is a very aggressive person. [:He:She:] attacked others <b>[:attacks]</b> times."
violent2 = "<b>[:nick]</b> can't control [:his:her:] aggressions, either. [:He:She:] picked on others <b>[:attacks]</b> times."
violent3 = "Nobody beat anyone up. Everybody was friendly."
violenttext = "<b>For example, like this:</b><br /> [:line]"
attacked1 = "Poor <b>[:nick]</b>, nobody likes [:him:her:]. [:He:She:] was attacked <b>[:attacks]</b> times."
attacked2 = "<b>[:nick]</b> seems to be unliked too. [:He:She:] got beaten <b>[:attacks]</b> times."
attackedtext = "<b>For example, like this:</b><br /> [:line]"
gotkick1 = "<b>[:nick]</b> wasn't very popular, getting kicked [:kicks] times!"
gotkick2 = "<b>[:nick]</b> seemed to be hated too: [:kicks] kicks were received."
kicktext = "<b>For example, like this:</b><br /> [:line]"
joins = "<b>[:nick]</b> couldn't decide whether to stay or go. [:joins] joins during this reporting period!"
kick1 = "<b>[:nick]</b> is either insane or just a fair op, kicking a total of [:kicked] people!"
kick2 = "[:oldnick]'s faithful follower, <b>[:nick]</b>, kicked about [:kicked] people."
kick3 = "Nice opers here, no one got kicked!"
words1 = "<b>[:nick]</b> spoke a total of [:words] words!"
words2 = "[:oldnick]'s faithful follower, <b>[:nick]</b>, didn't speak so much: [:words] words."
words3 = "Nobody said anything... What a strange channel..."
mono1 = "<b>[:nick]</b> talks to [:him:her:]self a lot. [:He:She:] wrote over 5 lines in a row [:monos] times!"
mono2 = "Another lonely one was <b>[:nick]</b>, who managed to hit [:monos] times."
wpl1 = "<b>[:nick]</b> wrote an average of [:wpl] words per line."
wpl2 = "Channel average was [:avg] words per line."
long1 = "<b>[:nick]</b> wrote the longest lines, averaging [:letters] letters per line."
long2 = "[:channel] average was [:avg] letters per line."
short1 = "<b>[:nick]</b> wrote the shortest lines, averaging [:letters] characters per line."
short2 = "<b>[:nick]</b> was tight-lipped, too, averaging [:letters] characters."
foul1 = "<b>[:nick]</b> has quite a potty mouth. [:per]% words were foul language."
foul2 = "<b>[:nick]</b> also makes sailors blush, [:per]% of the time."
foul3 = "Nobody is foul-mouthed in [:channel]! Get out much?"
foultext = "<b>For example, like this:</b><br /> [:line]"
smiles1 = "<b>[:nick]</b> brings happiness to the world. [:per]% lines contained smiling faces. :)"
smiles2 = "<b>[:nick]</b> isn't a sad person either, smiling [:per]% of the time."
smiles3 = "Nobody smiles in [:channel]! Cheer up guys and girls."
sad1 = "<b>[:nick]</b> seems to be sad at the moment: [:per]% lines contained sad faces. :("
sad2 = "<b>[:nick]</b> is also a sad person, crying [:per]% of the time."
sad3 = "Nobody is sad in [:channel]! What a happy channel. :-)"
month = "January February March April May June July August September October November December"
day = "Sunday Monday Tuesday Wednesday Thursday Friday Saturday"
## Topics
bignumtopic = "Big numbers"
othernumtopic = "Other interesting numbers"
latesttopic = "Latest Topics"
activetimestopic = "Most active times"
activenickstopic = "Most active nicks"
activenickbyhourtopic = "Most active nicks by hours"
mostwordstopic = "Most used words"
referencetopic = "Most referenced nicks"
smileytopic = "Smileys :-)"
karmatopic = "[:channel] karma"
urlstopic = "Most referenced URLs"
chartstopic = "[:channel] Music Charts"
notopic = "A topic was never set on this channel."
mostnickstopic = "Users with most nicknames"
bylinetopic = "[:date] at [:time] by [:nick]"
dailyactivitytopic = "Daily activity (last [:n] days)"
activegenderstopic = "Most active gender"
## Other text
totallines = "Total number of lines: [:lines]."
totalnicks = "By the way, there were [:totalnicks] other nicks."
totaltopic = "The topic was set [:total] times."
nick = "Nick"
names = "Names Used"
url = "URL"
numberlines = "Number of lines"
randquote = "Random quote"
userpic = "Userpic"
nottop = "These didn't make it to the top:"
word = "Word"
numberuses = "Number of Uses"
show_words = "Number of Words"
show_time = "When?"
show_wpl = "Words per line"
show_cpl = "Chars per line"
show_lastseen = "Last seen"
lastused = "Last Used by"
smiley = "Smiley"
karma = "Karma"
goodkarma = "Good karma by"
badkarma = "Bad karma by"
lastseen1 = "yesterday"
lastseen2 = "[:days] days ago"
today = "today"
pagetitle1 = "[:channel] @ [:network] stats by [:maintainer]"
pagetitle2 = "Statistics generated on "
pagetitle3 = "During this [:days]-day reporting period, a total of <b>[:nicks]</b> different nicks were represented on [:channel]."
stats_gen_by = "Stats generated by [:pisg_url] v[:version]"
author = "pisg by [:author_url] and others"
stats_gen_in = "Stats generated in [:time]"
hours = "hours"
minutes = "minutes"
seconds = "seconds"
and = "and"
names1 = "names"
names2 = "name"
gender = "Gender"
gender_f = "Female"
gender_m = "Male"
gender_b = "Bot"
song = "Song"
numberplayed = "How Often Played"
playedby = "Last Played by"
# Mouse-over titles
pisghomepage = "Go to the pisg homepage"
authorhomepage = "Go to the authors homepage"
newwindow = "Open in new window:"
mailto = "Mail to"
</lang>
### German
<lang name="DE" charset="iso-8859-1">
mostop1 = "<b>[:nick]</b> vergab [:ops] Ops im Channel..."
mostop2 = "<b>[:nick]</b> war auch sehr zuvorkommend, [:ops] Ops von [:ihm:ihr:]."
mostop3 = "Komisch, kein Op wurde in [:channel] vergeben!"
mostdeop1 = "<b>[:nick]</b> ist die Channel-Polizei. [:Er:Sie:] hat [:deops] Usern das @ wieder weggenommen..."
mostdeop2 = "<b>[:nick]</b> nahm [:deops] Usern das @ wieder weg."
mostdeop3 = "Wow, niemand wurde in [:channel] deopped!"
mosthalfop1 = "<b>[:nick]</b> empfand sehr viele Leute als hilfreich. [:Er:Sie:] hat [:halfops] Usern ein % verpasst..."
mosthalfop2 = "<b>[:nick]</b> verteilte [:halfops] mal Halfop."
mosthalfop3 = "Keiner hat in [:channel] bis jetzt ein % bekommen!"
mostdehalfop1 = "<b>[:nick]</b> hat am meisten User dehalfopped: genau [:dehalfops] Stück an der Zahl."
mostdehalfop2 = "<b>[:nick]</b> hat immerhin schon [:dehalfops] Usern das % wieder geklaut."
mostdehalfop3 = "Bis jetzt wurde in [:channel] keinem das % weggenommen!"
mostvoice1 = "<b>[:nick]</b> hat [:voices] Voices im Channel vergeben..."
mostvoice2 = "<b>[:nick]</b> war auch sehr höflich: [:voices] Voices von [:ihm:ihr:]."
mostvoice3 = "Seltsam, bisher wurden keine Voices in [:channel] vergeben!"
mostdevoice1 = "<b>[:nick]</b> ist der Wachtmeister des Channels mit [:devoices] entfernten Voices."
mostdevoice2 = "<b>[:nick]</b> hat [:devoices] Nutzer devoiced."
mostdevoice3 = "Wow, niemandem wurde in [:channel] das Voice genommen!"
action1 = "<b>[:nick]</b> hält uns immer auf dem Laufenden, was [:er:sie:] gerade tut: [:actions] Actions!"
action2 = "Auch <b>[:nick]</b> verät uns, was los ist: [:actions] Actions von [:ihm:ihr:]."
action3 = "Keine Actions in [:channel]!"
actiontext = "<b>Zum Beispiel so:</b><br /> [:line]"
question1 = "<b>[:nick]</b> hat wohl in der Schule nicht gut aufgepasst... [:per]% [:seiner:ihrer:] Zeilen enthielten eine Frage!"
question2 = "<b>[:nick]</b> weiss wohl auch nicht viel, [:per]% [:seiner:ihrer:] Zeilen waren Fragen."
question3 = "Niemand hat hier was gefragt, sollte das etwa ein Channel voller Genies sein? ;)"
shout1 = "Am lautesten war <b>[:nick]</b> [:der:die:] [:per]% der Zeit geschrien hat!"
shout2 = "Ein anderer <i>Schreihals</i> war <b>[:nick]</b>, [:der:die:] [:per]% der Zeit rumgeschrien hat!"
shout3 = "Niemand hat ein Ausrufezeichen benutzt, wow... Zurückhaltende User im Channel ;)"
allcaps1 = "Anscheinend klemmte die Shift-Taste von <b>[:nick]</b>, denn [:per]% der Zeit schrieb [:er:sie:] in GROSSBUCHSTABEN."
allcaps2 = "<b>[:nick]</b> hat auch wohl vergessen CAPS-Lock auszuschalten, von [:ihm:ihr:] kamen [:per]% der Zeit GROSSBUCHSTABEN."
allcaps3 = "Alle hatten ihre Shift-Taste gut unter Kontrolle. :)"
allcapstext = "<b>Zum Beispiel so:</b><br /> [:line]"
violent1 = "<b>[:nick]</b> ist etwas agressiv. [:Er:Sie:] schlug <b>[:attacks]</b> mal wild um sich herum."
violent2 = "Auch <b>[:nick]</b> hat einige Probleme [:seine:ihre:] Aggressionen unter Kontrolle zu halten, <b>[:attacks]</b> Schläge von [:ihm:ihr:]."
violent3 = "Alle waren friedlich im Channel, niemand hat jemanden geschlagen."
violenttext = "<b>Zum Beispiel so:</b><br /> [:line]"
attacked1 = "<b>[:nick]</b> ist der Sündenbock im Channel, [:er:sie:] wurde <b>[:attacks]</b> mal geschlagen."
attacked2 = "<b>[:nick]</b> hat auch [:sein:ihr:] Fett weg bekommen, [:er:sie:] hat <b>[:attacks]</b> mal Schläge bekommen."
attackedtext = "<b>Zum Beispiel so:</b><br /> [:line]"
gotkick1 = "<b>[:nick]</b> war wohl der Channelclown, [:er:sie:] wurde [:kicks] mal gekickt!"
gotkick2 = "<b>[:nick]</b> konnte sich scheinbar auch nicht benehmen, [:kicks] Kicks für [:ihn:sie:]."
kicktext = "<b>Zum Beispiel so:</b><br /> [:line]"
joins = "<b>[:nick]</b> konnte sich nicht entscheiden im Channel zu bleiben oder zu gehen, [:joins] Joins während des Statistik-Zeitraums!"
kick1 = "Ist <b>[:nick]</b> jetzt einfach nur ein fairer Op oder macht [:ihm:ihr:] das Spass? [:Er:Sie:] kickte [:kicked] Personen!"
kick2 = "[:oldnick]s würdiger Nachfolger, <b>[:nick]</b>, [:er:sie:] kickte [:kicked] User."
kick3 = "Nette Opper hier, niemand wurde gekickt!"
words1 = "<b>[:nick]</b> war mit [:words] Worten sehr mitteilungsbedürftig!"
words2 = "[:oldnick]s würdiger Nachfolger, <b>[:nick]</b>, schaffte es auf immerhin [:words] Worte."
words3 = "Niemand hat etwas gesagt? Seltsamer Channel..."
mono1 = "<b>[:nick]</b> spricht viel mit sich selbst, [:er:sie:] schrieb über 5 Zeilen hintereinander und das [:monos] mal!"
mono2 = "Ein anderes einsames Herz ist <b>[:nick]</b>, [:der:die:] [:monos] mal mit sich selbst redete."
wpl1 = "<b>[:nick]</b> schrieb im Schnitt [:wpl] Worte pro Zeile..."
wpl2 = "Der Channeldurchschnitt lag bei [:avg] Worten/Zeile."
long1 = "<b>[:nick]</b> ist die Labertasche im Channel. [:Er:Sie:] schrieb die längste Zeile mit durchschnittlich [:letters] Buchstaben pro Zeile."
long2 = "Channel-Durchschnitt in [:channel] war [:avg] Buchstaben pro Zeile."
short1 = "<b>[:nick]</b> ist nicht sehr mitteilungsbedürftig. [:Er:Sie:] schrieb die kürzeste Zeile mit durchschnittlich [:letters] Buchstaben pro Zeile."
short2 = "<b>[:nick]</b> fasste sich auch sehr kurz, durchschnittlich [:letters] Buchstaben pro Zeile."
foul1 = "<b>[:nick]</b> hat in [:seiner:ihrer:] Jugend keine Erziehung genossen, [:per]% von dem was [:er:sie:] sagte waren Schimpfworte!"
foul2 = "<b>[:nick]</b> war [:per]% der Zeit unartig (Ob da der Weihnachtsmann noch kommt?)"
foul3 = "Alle gut erzogen in [:channel], niemand hat Schimpfworte benutzt!"
foultext = "<b>Zum Beispiel so:</b><br /> [:line]"
smiles1 = "<b>[:nick]</b> ist ein fröhlicher Mensch, [:per]% [:seiner:ihrer:] Zeilen enthielt ein fröhliches Smily :)"
smiles2 = "<b>[:nick]</b> scheint auch glücklich zu sein. [:Er:Sie:] lächelte [:per]% der Zeit."
smiles3 = "Niemand lächelt in [:channel]! Los Leute, legt mal wieder ein Lächeln auf :)"
sad1 = "<b>[:nick]</b> scheint im Moment nicht gut drauf zu sein, [:per]% [:seiner:ihrer:] Zeilen enthielten ein trauriges Smily :("
sad2 = "<b>[:nick]</b> ist auch eine traurige Person, die [:per]% der Zeit geweint hat."
sad3 = "Niemand ist traurig in [:channel]! Was für ein fröhlicher Channel :)"
month = "Januar Februar März April Mai Juni Juli August September Oktober November Dezember"
day = "Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag"
## Topics
bignumtopic = "Die Zahlen sprechen für sich :)"
othernumtopic = "Andere interessante Zahlen"
latesttopic = "Letzte Topics"
activetimestopic = "Wann war am meisten los?"
activenickstopic = "Wer quatscht am meisten?"
activenickbyhourtopic = "Wer war wann am aktivsten?"
mostwordstopic = "Am meisten benutzte Wörter"
referencetopic = "Begehrte Nicks :)"
smileytopic = "Smileys :-)"
karmatopic = "[:channel]-Karma"
urlstopic = "Am meisten benutzte URLs"
chartstopic = "Ohrwürmer auf [:channel]"
notopic = "In diesem Channel wurde kein Topic gesetzt."
bylinetopic = "[:date] um [:time] von [:nick]"
dailyactivitytopic = "Tägliche Aktivität (letzte [:n] Tage)"
mostnickstopic = "Chatter mit den meisten Nicks"
activegenderstopic = "Aktivste Geschlechter"
## Other text
totallines = "Gesamtanzahl der Zeilen: [:lines]"
totalnicks = "Ach ja, da waren noch [:totalnicks] andere, die nicht erwähnenswert sind."
totaltopic = "Ingesamt wurde das Topic [:total] mal gesetzt."
nick = "Nick"
names = "Benutzte Namen"
url = "URL"
numberlines = "Anzahl der Zeilen"
randquote = "Zufallsquote"
userpic = "Userbild"
nottop = "Sie haben es nicht an die Spitze geschafft:"
word = "Wort"
show_words = "Anzahl der Worte"
show_time = "Wann?"
show_wpl = "Worte pro Zeile"
show_cpl = "Zeichen pro Zeile"
numberuses = "Wie oft benutzt"
show_lastseen = "Zuletzt gesehen"
lastused = "Zuletzt benutzt von"
smiley = "Smiley"
karma = "Karma"
goodkarma = "Gutes Karma von"
badkarma = "Schleches Karma von"
lastseen1 = "gestern"
lastseen2 = "vor [:days] Tagen"
today = "heute"
pagetitle1 = "[:channel] @ [:network]-Statistik von [:maintainer]"
pagetitle2 = "Statistik erstellt am "
pagetitle3 = "Während des Statistikzeitraums von [:days] Tage(n) wurden <b>[:nicks]</b> verschiedene Nicks in [:channel] gezählt."
stats_gen_by = "Die Statistik wurde mit [:pisg_url] v[:version] erstellt."
author = "pisg von [:author_url] und anderen"
stats_gen_in = "Die Statistik wurde in [:time] generiert."
hours = "Stunden"
minutes = "Minuten"
seconds = "Sekunden"
and = "und"
names1 = "Nicks"
names2 = "Nick"
gender = "Geschlecht"
gender_f = "Weiblich"
gender_m = "Männlich"
gender_b = "Bot"
song = "Song"
numberplayed = "Wie oft gespielt"
playedby = "Zuletzt gespielt von"
# Mouse-over titles
pisghomepage = "pisg-Homepage öffnen"
authorhomepage = "Homepage des Autors öffnen"
newwindow = "In einem neuen Fenster öffnen:"
mailto = "Mail an"
</lang>
### Danish
<lang name="DA" charset="iso-8859-1">
mostop1 = "<b>[:nick]</b> gav [:ops] op status i kanalen..."
mostop2 = "<b>[:nick]</b> var også venlig at gi': [:ops] fra sig"
mostop3 = "Underligt, ingen har fået op på [:channel] endnu!"
mostdeop1 = "<b>[:nick]</b> holder orden på [:channel] med [:deops] deops..."
mostdeop2 = "<b>[:nick]</b> deoppede [:deops] brugere"
mostdeop3 = "Hmm, der var ingen som blev deopped på [:channel]!"
mostvoice1 = "<b>[:nick]</b> gav [:voices] voice i kanalen..."
mostvoice2 = "<b>[:nick]</b> var også venlig at gi': [:voices] fra sig"
mostvoice3 = "Underligt, ingen har fået voice på [:channel] endnu!"
mostdevoice1 = "<b>[:nick]</b> holder orden på [:channel] med [:devoices] -v's"
mostdevoice2 = "<b>[:nick]</b> devoicede [:devoices] brugere"
mostdevoice3 = "Hmm, der var ingen som blev devoiced på [:channel]!"
mosthalfop1 = "<b>[:nick]</b> gav [:halfops] halfop status i kanalen..."
mosthalfop2 = "<b>[:nick]</b> var også venlig at gi': [:halfops] halfops fra sig"
mosthalfop3 = "Underligt, ingen har fået halfop på [:channel]!"
mostdehalfop1 = "<b>[:nick]</b> er kanal sheriffen med [:dehalfops] dehalfops."
mostdehalfop2 = "<b>[:nick]</b> fjernede halfop fra [:dehalfops] brugere."
mostdehalfop3 = "Wow, ingen halfop blev taget fra nogen på [:channel]!"
action1 = "<b>[:nick]</b> bruger /me meget tit, ialt [:actions] gange!"
action2 = "<b>[:nick]</b> fortæller os også hvad [:han:hun:] laver.. [:actions] /me's"
action3 = "Ingen /me's i [:channel] !"
actiontext = "<b>For eksempel sådan her:</b><br /> [:line]"
question1 = "<b>[:nick]</b> må være rimelig dum eller efterligner bare Spørge-Jørgen... [:per]% af [:hans:hendes:] linjer var spørgsmål!"
question2 = "<b>[:nick]</b> var heller ingen Einstein, [:per]% af [:hans:hendes:] linjer var også spørgsmål"
question3 = "Ingen spørgsmål på denne kanal. De må sørme være kloge!"
shout1 = "Den mest larmende var <b>[:nick]</b>, som råbte [:per]% af tiden!"
shout2 = "En anden skrigehals var <b>[:nick]</b>, som råbte [:per]% af tiden!"
shout3 = "Der er ingen som råber. Leger de stilleleg?"
gotkick1 = "<b>[:nick]</b> er ret upopulær, blev sparket ud [:kicks] gange!"
gotkick2 = "<b>[:nick]</b> er heller ikke nogen Elvis, [:kicks] gange fik [:han:hun:] sparket"
kicktext = "<b>F.eks. sådan her:</b><br /> [:line]"
joins = "<b>[:nick]</b> er lidt forvirret. [:Han:Hun:] har været inde og ude af kanalen [:joins] gange!"
kick1 = "<b>[:nick]</b> er magtsygt eller ved hvordan [:han:hun:] skal kontrollere sine fjender. [:Han:Hun:] har sparket [:kicked] folk ud af kanalen!"
kick2 = "[:oldnick] har en efterfølger. <b>[:nick]</b> sparkede [:kicked] folk ud af kanalen"
kick3 = "Venlige operatører må man sige. Ingen har fået sparket!"
mono1 = "<b>[:nick]</b> snakker meget med sig selv. [:Han:Hun:] har skrevet over 5 linjer på en gang, [:monos] gange!"
mono2 = "En anden ensom person var <b>[:nick]</b>, som snakkede til sig selv [:monos] gange"
wpl1 = "<b>[:nick]</b> skrev i gennemsnit [:wpl] ord pr. linje.."
wpl2 = "Kanalens gennemsnit var [:avg] ord pr. linje."
long1 = "<b>[:nick]</b> skriver meget lange sætninger. Gennemsnittet var [:letters] bogstaver pr. linje..."
long2 = "Gennemsnittet på [:channel] er [:avg] bogstaver pr. linje"
short1 = "<b>[:nick]</b> skrev de korteste linjer. Gennemsnittet er [:letters] bogstaver pr. linje..."
short2 = "<b>[:nick]</b> skriver også korte linjer, med et gennesnit på [:letters]"
foul1 = "<b>[:nick]</b> er lidt stor i munden, [:per]% af ordene var uhøfligt sprog"
foul2 = "<b>[:nick]</b> burde også vaske munden med sæbe med alt det [:han:hun:] fyrer af, [:per]% af tiden"
foul3 = "Ingen rapkæftede på [:channel]!"
foultext = "<b>For eksempel sådan her:</b><br /> [:line]"
smiles1 = "<b>[:nick]</b> er altid glad, [:per]% af linjerne havde glade ansigter :)"
smiles2 = "<b>[:nick]</b> er heller ikke en trist person, som smilede [:per]% af tiden"
smiles3 = "Ingen smiler på [:channel]! Op med humøret drenge og piger."
sad1 = "<b>[:nick]</b> er meget ked af det for tiden, [:per]% af linjerne havde sørgelige ansigter :("
sad2 = "<b>[:nick]</b> er også en trist person, som græd [:per]% af tiden"
sad3 = "Ingen er kede af det på [:channel]! Sikke en glad kanal :-)"
allcaps1 = "Ser ud til at <b>[:nick]</b> har en voldsom trang til at råbe konstant, [:per]% af de gange [:han:hun:] skrev var med stort"
allcaps2 = "<b>[:nick]</b> glemte vidst at Caps-Lock var slået til, [:per]% af de gange [:han:hun:]han skrev var med stort"
allcaps3 = "Ser ud til at alle har deres shift under kontrol :)"
allcapstext = "<b>For eksempel sådan her: </b><br /> [:line]"
violent1 = "<b>[:nick]</b> er en meget aggresiv person, [:han:hun:] delte <b>[:attacks]</b> slaps ud."
violent2 = "<b>[:nick]</b> er ude af kontrol. [:Han:Hun:] slog andre folk <b>[:attacks]</b> gang(e)."
violent3 = "Alle er glade ... endnu 8)"
violenttext = "<b>For eksempel sådan her:</b><br /> [:line]"
attacked1 = "Ærgeligt. Ingen kan li' <b>[:nick]</b>. [:Han:Hun:] blev banket <b>[:attacks]</b> gange."
attacked2 = "<b>[:nick]</b> er vidst heller ikke for polulær, [:han:hun:] fik tæsk <b>[:attacks]</b> gang(e)."
attackedtext = "<b>For eksempel sådan her:</b><br /> [:line]"
words1 = "<b>[:nick]</b> er meget aktiv med [:words] skrevne ord!"
words2 = "[:oldnick] blev tæt forfulgt af <b>[:nick]</b>, med [:words] ord."
words3 = "Hmmm ingen har sagt noget endnu... underlig kanal..."
month = "Januar Februar Marts April Maj Juni Juli August September Oktober November December"
day = "Søndag Mandag Tirsdag Onsdag Torsdag Fredag Lørdag"
## Topics
bignumtopic = "Store numre"
othernumtopic = "Andre interessante numre"
latesttopic = "Sidst nyeste topics"
activetimestopic = "Mest aktive tider"
activenickstopic = "Mest aktive nicks"
activenickbyhourtopic = "Mest aktive nicks i timer"
mostwordstopic = "Mest brugte ord"
referencetopic = "Mest tiltalte nicks"
karmatopic = "[:channel] karma"
urlstopic = "Mest brugte URLs"
notopic = "Et topic blev aldrig sat på denne kanal."
mostnickstopic = "Brugere med flest nicks"
bylinetopic = "[:date] kl. [:time] af [:nick]"
dailyactivitytopic = "Daglig aktivitet (sidste [:n] dage)"
activegenderstopic = "Mest aktive køn"
smileytopic = "Smiley'er :-)"
chartstopic = "[:channel] Musik hitliste"
## Other text
totallines = "Hele antal linjer: [:lines]"
totalnicks = "Forresten var der [:totalnicks] andre nicks"
totaltopic = "Topic'et blev sat [:total] gange"
nick = "Nick"
names = "Navne Brugt"
url = "URL"
numberlines = "Antal linjer"
randquote = "Tilfældig sætning"
userpic = "Brugerbillede"
nottop = "Disse nåede ikke til tops:"
word = "Ord"
numberuses = "Antal forbrug"
show_words = "Antal af ord"
show_time = "Hvornår?"
show_wpl = "Ord pr. linje"
show_cpl = "Bogstaver pr. linje"
show_lastseen = "Sidst set"
lastused = "Sidst brugt af"
karma = "Karma"
goodkarma = "God karma af"
badkarma = "Dårlig karma af"
lastseen1 = "i går"
lastseen2 = "[:days] dage siden"
today = "I dag"
pagetitle1 = "[:channel] @ [:network] statistikker af [:maintainer]"
pagetitle2 = "Statistikker genereret "
pagetitle3 = "Igennem denne [:days]-dages periode, har der været <b>[:nicks]</b> forskellige nicks på [:channel]."
stats_gen_by = "Stats genereret af [:pisg_url] v[:version]"
author = "pisg af [:author_url] og andre"
stats_gen_in = "Stats genereret på [:time]"
hours = "timer"
minutes = "minutter"
seconds = "sekunder"
and = "og"
names1 = "nicks"
names2 = "nick"
gender = "Køn"
gender_f = "Hun"
gender_m = "Han"
gender_b = "Bot"
numberplayed = "Hvor ofte spillet"
song = "Sang"
playedby = "Sidst spillet af"
smiley = "Smiley"
# Mouse-over titles
pisghomepage = "Gå til pisg hjemmesiden"
authorhomepage = "Gå til forfatterens hjemmeside"
newwindow = "Åben i nyt vindue:"
mailto = "Mail til"
</lang>
### French
<lang name="FR" charset="iso-8859-1">
mostop1 = "<b>[:nick]</b> a donné [:ops] ops sur le canal..."
mostop2 = "<b>[:nick]</b> est aussi très poli[::e:(e):] : [:ops] ops de sa part."
mostop3 = "Étrange, aucun op n'a été donné sur [:channel] !"
mostdeop1 = "<b>[:nick]</b> est l[:e:a:e:] sherif du canal avec [:deops] deops..."
mostdeop2 = "<b>[:nick]</b> a déopé [:deops] utilisateurs."
mostdeop3 = "Wow, aucun op n'a été retiré sur [:channel] !"
mosthalfop1 = "<b>[:nick]</b> a donné [:halfops] halfops sur le canal..."
mosthalfop2 = "<b>[:nick]</b> est aussi très poli[::e:(e):] : [:halfops] halfops de sa part."
mosthalfop3 = "Étrange, aucun halfop n'a été donné sur [:channel] !"
mostdehalfop1 = "<b>[:nick]</b> est l[:e:a:] sherif du canal avec [:dehalfops] dehalfops..."
mostdehalfop2 = "<b>[:nick]</b> a dehalfopé [:dehalfops] utilisateurs."
mostdehalfop3 = "Wow, aucun halfop n'a été retiré sur [:channel] !"
mostvoice1 = "<b>[:nick]</b> a donné [:voices] fois le +v sur le canal..."
mostvoice2 = "<b>[:nick]</b> est aussi très poli[::e:(e):]: [:voices] +v de sa part."
mostvoice3 = "C'est curieux, on n'a jamais donné un seul +v sur [:channel] !"
mostdevoice1 = "<b>[:nick]</b> est l[:e:a:] sherif du canal avec [:devoices] -v."
mostdevoice2 = "<b>[:nick]</b> a dévoicé [:devoices] personnes."
mostdevoice3 = "Wow, aucun +v n'a été retiré sur [:channel] !"
action1 = "<b>[:nick]</b> aime bien faire savoir ce qu'[:il:elle:] fait, avec [:actions] actions !"
action2 = "Egalement <b>[:nick]</b> qui n'est pas en reste avec [:actions] actions !"
action3 = "Aucune action sur [:channel] !"
actiontext = "<b>Exemple :</b><br /> [:line]"
question1 = "<b>[:nick]</b> est soit stupide soit trop curieu[:x:se:x(se):]... [:per]% de ses lignes contiennent une question !"
question2 = "<b>[:nick]</b> n'en connait pas davantage, [:per]% de ses lignes étaient des questions."
question3 = "Personne ne pose de question ici, tous des génies sur ce canal ?"
shout1 = "[:Le:La:] plus bruyant[::e:(e):] est <b>[:nick]</b> qui gueule [:per]% du temps !"
shout2 = "<b>[:nick]</b> est aussi un[::e:(e):] <i>[:vieux raleur:mégère:]</i> qui braille [:per]% du temps !"
shout3 = "Personne ne s'exclame ici, wow."
allcaps1 = "Il semblerait que le CAPS-LOCK soit bloqué chez <b>[:nick]</b>, qui écrit en majuscules [:per]% du temps."
allcaps2 = "<b>[:nick]</b> a oublié de désactiver son CAPS-LOCK, qui écrit en majuscules [:per]% du temps."
allcaps3 = "Tous les CAPS-LOCK sont sous contrôle :)"
allcapstext = "<b>Exemple :</b><br /> [:line]"
violent1 = "<b>[:nick]</b> est une personne agressive, qui a déja donné <b>[:attacks]</b> tapes à quelqu'un."
violent2 = "<b>[:nick]</b> ne peut contrôler son agressivité, en tapant <b>[:attacks]</b> fois quelqu'un."
violent3 = "Personne ne se donne des tapes, tout le monde est sympa."
violenttext = "<b>Exemple :</b><br /> [:line]"
attacked1 = "Pauvre <b>[:nick]</b>, personne ne l'aime, en étant tapé[::e:(e):] <b>[:attacks]</b> fois."
attacked2 = "<b>[:nick]</b> n'a pas l'air apprécié[::e:(e):] non plus, qui a déjà été tapé[::e:(e):] <b>[:attacks]</b> fois."
attackedtext = "<b>Exemple :</b><br /> [:line]"
gotkick1 = "<b>[:nick]</b> n'est pas très populaire, kické[::e:(e):] [:kicks] fois !"
gotkick2 = "<b>[:nick]</b> n'a pas d'ami non plus, [:kicks] kicks reçus."
kicktext = "<b>Exemple :</b><br /> [:line]"
joins = "Rester ou partir est un choix difficile : <b>[:nick]</b> a fait [:joins] visites durant cette période !"
kick1 = "<b>[:nick]</b> est malade ou alors aime bien jouer, son kick a sévi [:kicked] fois !"
kick2 = "Un[::e:] disciple de [:oldnick], <b>[:nick]</b> a kické [:kicked] personnes."
kick3 = "Les ops sont sympas ici, personne n'a été kické !"
words1 = "<b>[:nick]</b> a dit un total de [:words] mots !"
words2 = "Et juste derrière [:oldnick], <b>[:nick]</b>, avec quand même [:words] mots à son actif."
words3 = "Personne ne dit rien... Quel canal étrange..."
mono1 = "<b>[:nick]</b> se parle tout[::e:(e):] seul[::e:(e):] très souvent, en écrivant plus de 5 lignes d'un coup à [:monos] reprises !"
mono2 = "Un[::e:(e):] autre incompris[::e:(e):] est <b>[:nick]</b>, qui a tenté de se prendre la tête à [:monos] reprises."
wpl1 = "<b>[:nick]</b> écrit en moyenne [:wpl] mots par ligne..."
wpl2 = "La moyenne du canal est de [:avg] mots par ligne."
long1 = "<b>[:nick]</b> a écrit des lignes bien longues ! [:letters] lettres par ligne !"
long2 = "La moyenne sur [:channel] est de [:avg] lettres par ligne."
short1 = "<b>[:nick]</b> a écrit les lignes les plus courtes, avec en moyenne [:letters] lettres par ligne..."
short2 = "<b>[:nick]</b> n'a pas grand chose à dire non plus, en moyenne [:letters]."
foul1 = "<b>[:nick]</b> est bien vulgaire, [:per]% de ses mots étaient des gros mots."
foul2 = "<b>[:nick]</b> parle aussi comme un charretier, [:per]% du temps."
foul3 = "Personne n'est grossier sur [:channel] ! Pendant combien de temps encore ?"
foultext = "<b>Exemple :</b><br /> [:line]"
smiles1 = "<b>[:nick]</b> apporte un peu de gaieté dans le monde, [:per]% de ses lignes contiennent un smiley :)"
smiles2 = "<b>[:nick]</b> n'est pas triste non plus, qui sourit [:per]% du temps."
smiles3 = "Personne ne sourit sur [:channel] ! Allez faites un effort quoi !"
sad1 = "<b>[:nick]</b> semble un peu déprimé[::e:(e):] en ce moment, [:per]% de ses lignes contiennent un smiley :("
sad2 = "<b>[:nick]</b> est aussi bien triste, en pleurant [:per]% du temps."
sad3 = "Personne n'est triste sur [:channel] ! Quel canal merveilleux :-)"
month = "janvier février mars avril mai juin juillet août septembre octobre novembre décembre"
day = "Dimanche Lundi Mardi Mercredi Jeudi Vendredi Samedi"
## Topics
bignumtopic = "Les gros chiffres"
othernumtopic = "D'autres chiffres intéressants"
latesttopic = "Les derniers topics"
activetimestopic = "Les périodes d'intense activité"
activenickstopic = "Les nicks les plus actifs"
activenickbyhourtopic = "Les nicks les plus actifs par heure"
mostwordstopic = "Les mots les plus utilisés"
referencetopic = "Les nicks les plus utilisés dans la conversation"
smileytopic = "Smileys :-)"
karmatopic = "Le karma de [:channel]"
urlstopic = "Les URLs les plus citées"
notopic = "Il n'y a jamais eu de topic sur ce canal"
mostnickstopic = "Ceux qui ont le plus de nicks"
bylinetopic = "[:date] par [:nick] à [:time]"
dailyactivitytopic = "Activité journalière (des [:n] derniers jours)"
activegenderstopic = "Le sexe dominant"
chartstopic = "[:channel] Hit parade des chansons"
## Other text
totallines = "Nombre total de lignes: [:lines]"
totalnicks = "Il y a également eu [:totalnicks] autres nicks sur le canal"
totaltopic = "Il y a eu [:total] topics différents sur le canal"
nick = "Nick"
names = "Les différents nicks utilisés"
url = "URL"
numberlines = "Nb de lignes"
randquote = "Citation typique"
userpic = "Image"
nottop = "Ne sont pas dans le classement"
word = "Mot"
numberuses = "Nb d'occurences"
show_words = "Nb de Mots"
show_time = "Quand ?"
show_wpl = "Mots par ligne"
show_cpl = "Lettres par ligne"
show_lastseen = "Dernière venue"
lastused = "Dernière utilisation par"
smiley = "Smiley"
karma = "Karma"
goodkarma = "Bon karma par"
badkarma = "Mauvais karma par"
lastseen1 = "hier"
lastseen2 = "avant [:days] jours"
today = "Aujourd'hui"
pagetitle1 = "[:channel] @ [:network] stats par [:maintainer]"
pagetitle2 = "Statistiques générées le "
pagetitle3 = "Durant cette période de [:days] jours, <b>[:nicks]</b> nicks différents sont apparus sur [:channel]."
stats_gen_by = "Stats générées par [:pisg_url] v[:version]"
author = "pisg de [:author_url] et autres"
stats_gen_in = "Stats générées en [:time]"
hours = "heures"
minutes = "minutes"
seconds = "secondes"
and = "et"
names1 = "noms"
names2 = "nom"
gender = "Sexe"
gender_f = "Femme"
gender_m = "Homme"
gender_b = "Bot"
numberplayed = "Jouée combien de fois"
song = "Chanson"
playedby = "Jouée la dernière fois par"
# Mouse-over titles
pisghomepage = "Aller sur le site de pisg"
authorhomepage = "Aller sur le site de l'auteur"
newwindow = "Ouvrir dans une nouvelle fenêtre :"
mailto = "Envoyer un mail"
</lang>
### Spanish
<lang name="ES" charset="iso-8859-1">
mostop1 = "<b>[:nick]</b> ha dado [:ops] ops en el canal..."
mostop2 = "<b>[:nick]</b> también reparte ensaimadas: [:ops] nada menos."
mostop3 = "¡Aún no se han repartido arrobas en [:channel]!"
mostdeop1 = "<b>[:nick]</b> es el malo del canal, le ha quitado la @ a [:deops] personas."
mostdeop2 = "<b>[:nick]</b> le ha quitado la @ a [:deops] personas."
mostdeop3 = "¡Por el momento no se le ha quitado la arroba a nadie en [:channel]!"
mostvoice1 = "<b>[:nick]</b> ha dado [:voices] +v en el canal..."
mostvoice2 = "<b>[:nick]</b> también repartió [:voices] +v."
mostvoice3 = "¡Aún no se han concedido +v en [:channel]!"
mostdevoice1 = "<b>[:nick]</b> disfruta quitándole a la gente su +v, en [:devoices] ocasiones."
mostdevoice2 = "<b>[:nick]</b> es de la misma calaña, se lo hizo a [:devoices] personas."
mostdevoice3 = "¡Nadie quitó +v en [:channel]!"
mosthalfop1 = "<b>[:nick]</b> ha dado [:halfops] halfops en el canal..."
mosthalfop2 = "<b>[:nick]</b> también repartió [:halfops] halfops."
mosthalfop3 = "¡Todavía no se han repartido halfop en [:channel]!"
mostdehalfop1 = "<b>[:nick]</b> parece el jefe del canal, elimino halfop a [:dehalfops] personas."
mostdehalfop2 = "<b>[:nick]</b> debe ser su fan, también lo hizo [:dehalfops] veces."
mostdehalfop3 = "¡Increible, la gente no quita halfop en [:channel]!"
question1 = "<b>[:nick]</b> necesitaba más horas de guardería cuando era pequeño/a, ¡el [:per]% de sus líneas contienen una pregunta!"
question2 = "<b>[:nick]</b> tampoco se entera de mucho, el [:per]% de sus líneas son preguntas."
question3 = "Nadie hace preguntas aquí, ¡esto parece un canal de genios!"
shout1 = "Me parece que <b>[:nick]</b> está algo exaltado/a. ¡Escribe con exclamaciones el [:per]% del tiempo!"
shout2 = "A <b>[:nick]</b> también le gusta afirmar con rotundidad lo que dice. ¡Escribe con exclamaciones el [:per]% del tiempo!"
shout3 = "Nadie ha escrito frases con exclamaciones."
allcaps1 = "A <b>[:nick]</b> se le ha atascado el bloqueo de mayúsculas, el [:per]% del tiempo escribe CON ESTE ESTILO TAN PECULIAR."
allcaps2 = "<b>[:nick]</b> debe tener vicio con la tecla shift, el [:per]% del tiempo hace lo mismo."
allcaps3 = "Todo el mundo tiene su tecla shift bajo control :)"
allcapstext = "<b>Como por ejemplo, esto:</b><br /> [:line]"
violent1 = "<b>[:nick]</b> es el/la más agresivo/a del canal, ha repartido tortas <b>[:attacks]</b> veces."
violent2 = "<b>[:nick]</b> tiene la mano floja. Ha repartido tortas <b>[:attacks]</b> veces."
violent3 = "Nadie ha repartido tortas en este canal, todo el mundo parece amigable."
violenttext = "<b>Como muestra:</b><br /> [:line]"
attacked1 = "Pobre <b>[:nick]</b>, No le gusta a nadie. Ha sido abofeteado/a <b>[:attacks]</b> veces."
attacked2 = "<b>[:nick]</b> tiene marcas de dedos en la cara. Ha sido abofeteado/a <b>[:attacks]</b> veces."
attackedtext = "<b>Ejemplo:</b><br /> [:line]"
gotkick1 = "<b>[:nick]</b> ha sido algo capullo/a y por eso lo/la echamos [:kicks] veces!"
gotkick2 = "<b>[:nick]</b> también nos toca bastante las narices, por eso lo/la echamos [:kicks] veces"
joins = "<b>[:nick]</b> no sabe si irse o quedarse, lo/la he visto [:joins] veces entrando en el canal!"
kick1 = "<b>[:nick]</b> actúa como operador/a con mano dura, ¡ha echado a [:kicked] personas!"
kick2 = "[:oldnick] tiene un seguidor acérrimo, <b>[:nick]</b> ha echado a [:kicked] personas."
kick3 = "Es maja la gente de aquí, ¡nadie ha sido kickeado!"
kicktext = "<b>Aquí está la prueba:</b><br /> [:line]"
action1 = "<b>[:nick]</b> quiere mantenernos informados de lo que hace en todo momento. ¡Ha escrito [:actions] acciones!"
action2 = "Y por supuesto <b>[:nick]</b> también nos los ha dicho [:actions] veces."
action3 = "¡No se han mostrado acciones en [:channel]!"
actiontext = "<b>Aquí va un ejemplo:</b><br /> [:line]"
words1 = "¡<b>[:nick]</b> ha dicho un total de [:words] palabras!"
words2 = "El mayor fan de [:oldnick] es <b>[:nick]</b>, que ha escrito [:words] palabras."
words3 = "Nadie dice nada... que canal más misterioso..."
wpl1 = "<b>[:nick]</b> Ha escrito una media de [:wpl] palabras por línea..."
wpl2 = "La media del canal es de [:avg] palabras por línea."
mono1 = "<b>[:nick]</b> no tiene amigos, ha escrito más de 5 líneas seguidas en [:monos] ocasiones!"
mono2 = "Otra persona solitaria es <b>[:nick]</b>, que ha hecho lo mismo [:monos] veces."
long1 = "<b>[:nick]</b> escribe las líneas más largas: [:letters] letras por línea..."
long2 = "La media de [:channel] es de [:avg] letras por línea."
short1 = "<b>[:nick]</b> es la persona más vaga escribiendo, con una media de [:letters] letras por línea..."
short2 = "<b>[:nick]</b> no se queda atrás, con una media de [:letters] letras."
foul1 = "<b>[:nick]</b> necesita que le laven la boca con jabón lagarto, un [:per]% de sus líneas contienen palabrotas y tacos."
foul2 = "<b>[:nick]</b> también es algo bestia, dice tacos el [:per]% del tiempo."
foul3 = "Parece que todo el mundo habla correctamente en [:channel]! ¿Se desahogan fuera?"
foultext = "<b>Por ejemplo, como esto:</b><br /> [:line]"
smiles1 = "<b>[:nick]</b> parece que se hubiera fumado una compresa usada, el [:per]% de sus líneas contienen caritas sonrientes :)"
smiles2 = "<b>[:nick]</b> habrá fumado otra cosa, está sonriendo el [:per]% del tiempo."
smiles3 = "¡Nadie ha sonreído en [:channel]! ¡¡Arriba esos ánimos!!"
sad1 = "<b>[:nick]</b> parece disgustado, el [:per]% de sus líneas contienen caras tristes :("
sad2 = "<b>[:nick]</b> también está triste el [:per]% del tiempo."
sad3 = "Nadie está triste en [:channel]! Aquí somos todos felices :)"
month = "Enero Febrero Marzo Abril Mayo Junio Julio Agosto Septiembre Octubre Noviembre Diciembre"
day = "Domingo Lunes Martes Miércoles Jueves Viernes Sábado"
## Topics
bignumtopic = "Acerca de nuestra gente"
othernumtopic = "Otras cosas interesantes"
latesttopic = "Últimos Topics"
activetimestopic = "Horas más frecuentadas"
activenickstopic = "La gente que más habla"
activenickbyhourtopic = "La gente que más habla por horas"
mostwordstopic = "Las palabras más utilizadas"
referencetopic = "Las personas de las que más se habla"
karmatopic = "Karma de [:channel]"
urlstopic = "URLs más frecuentemente mencionados"
notopic = "Aún no se ha utilizado el topic del canal"
bylinetopic = "por [:nick] a las [:time]"
dailyactivitytopic = "Actividad diaria ([:n] últimos días)"
mostnickstopic = "La gente que más nicks usa"
activegenderstopic = "Sexo más activo"
smileytopic = "Emoticonos :-)"
chartstopic = "[:channel] Éxitos musicales"
## Other text
totallines = "Número total de líneas: [:lines]"
totalnicks = "Ha habido otros [:totalnicks] nicks que han pasado por el canal"
totaltopic = "Ha habido [:total] cambios de topic"
nick = "Nick"
names = "Nombres usados"
url = "URL"
numberlines = "Líneas"
randquote = "Frase al azar"
userpic = "Avatar"
nottop = "Ellos también están, aunque hablan menos:"
word = "Palabra"
show_wpl = "Palabras por línea"
show_cpl = "letras por línea"
show_lastseen = "Visto por última vez"
show_time = "Hora"
numberuses = "Número de usos"
show_words = "palabras"
lastused = "Usada por última vez"
lastseen1 = "día atrás"
lastseen2 = "días atrás"
karma = "Karma"
goodkarma = "Karma positivo por"
badkarma = "Karma negativo por"
today = "Hoy"
pagetitle1 = "[:channel] @ [:network] estadísticas por [:maintainer]"
pagetitle2 = "Estadísticas generadas en "
pagetitle3 = "Durante los [:days] días de estadísticas, [:nicks] nicks distintos han pasado por [:channel]."
stats_gen_by = "Estadísticas generadas con [:pisg_url] v[:version]"
author = "creado por [:author_url] y otros"
stats_gen_in = "Estadísticas generadas en [:time]"
hours = "horas"
minutes = "minutos"
seconds = "segundos"
and = "y"
names1 = "nombres"
names2 = "nombre"
gender = "Sexo"
gender_f = "Mujer"
gender_m = "Hombre"
gender_b = "Bot"
smiley = "Emoticono"
numberplayed = "Veces escuchada"
song = "Canción"
playedby = "Tocada última vez por"
# Mouse-over titles
pisghomepage = "Página de pisg"
authorhomepage = "Página de los autores"
newwindow = "Abrir en ventana nueva:"
mailto = "Enviar a"
</lang>
### Polish
<lang name="PL" charset="utf-8">
mostop1 = "<b>[:nick]</b> lubi rozdawaÄ opy robiÄ
c to [:ops] razy..."
mostop2 = "Kolejnym dobroczyÅcÄ
jest <b>[:nick]</b> - zyskuje popularnoÅÄ nadajÄ
c [:ops] opów."
mostop3 = "Dziwne, nikt nie dostaÅ opa na [:channel]!"
mostdeop1 = "<b>[:nick]</b> jest kanaÅowym szeryfem odbierajÄ
c [:deops] opów..."
mostdeop2 = "<b>[:nick]</b> zdeopowaÅ[::a:] [:deops] ircowników."
mostdeop3 = "Wow, żaden op nie zostaŠodebrany na [:channel]!"
mostvoice1 = "<b>[:nick]</b> lubi rozdawaÄ voice'y robiÄ
c to [:voices] razy..."
mostvoice2 = "<b>[:nick]</b> również byÅ[::a:] bardzo uprzejm[:y:a:]: rozdaÅ[::a:] [:voices] voice'ów"
mostvoice3 = "Dziwne, nikt nie dostaÅ voice'a na [:channel]!"
mostdevoice1 = "<b>[:nick]</b> lubi zabieraÄ ludziom voice'y, [:devoices] devoice'ów."
mostdevoice2 = "<b>[:nick]</b> ma prawie taki sam wynik, zabraÅ[::a:] voice'y [:devoices] ircownikom."
mostdevoice3 = "Żaden voice nie zostaŠodebrany na [:channel]!"
action1 = "<b>[:nick]</b> zawsze mówi nam co robi: [:actions] âakcjiâ!"
action2 = "Również <b>[:nick]</b> mówi nam co jest grane. [:actions] âakcjiâ."
action3 = "Nie byÅo żadnych âakcjiâ na kanale [:channel]!"
actiontext = "<b>Na przykÅad coÅ takiego:</b><br /> [:line]"
mosthalfop1 = "<b>[:nick]</b> rozdaÅ[::a:] [:halfops] halfopów na kanale..."
mosthalfop2 = "<b>[:nick]</b> również byÅ[::a:] bardzo uprzejm[:y:a:]: rozdaÅ[::a:] [:halfops] halfopów."
mosthalfop3 = "Dziwne, nikt nie dostaÅ halfopa na [:channel]!"
mostdehalfop1 = "<b>[:nick]</b> jest kanaÅowym szeryfem odbierajÄ
c [:dehalfops] halfopów..."
mostdehalfop2 = "<b>[:nick]</b> zdeopowaÅ[::a:] [:dehalfops] ircowników."
mostdehalfop3 = "Wow, nikt nikomu nie odebraÅ halfopa na [:channel]!"
question1 = "<b>[:nick]</b> jest gÅupi[::a:] albo zadaje zbyt wiele pytaÅ... [:per]% linii zawieraÅo pytania!"
question2 = "<b>[:nick]</b> też nie wie zbyt wiele, [:per]% linii byÅo pytaniami."
question3 = "Nikt o nic nie pyta na kanale - czyżby sami geniusze?"
shout1 = "NajwiÄkszym kanaÅowym krzykaczem jest <b>[:nick]</b>, wykrzykiwaÅ[::a:] przez [:per]% czasu."
shout2 = "Na dalszej pozycji plasuje siÄ <b>[:nick]</b>, któr[:y:a:] krzyczaÅ[::a:] przez [:per]% czasu."
shout3 = "Wow, nikt nie krzyczaÅ, wszyscy jacyÅ tacy spokojni..."
allcaps1 = "WydawaÄ by siÄ mogÅo, że <b>[:nick]</b> ma zaciÄtego shifta, [:per]% czasu używaÅ[::a:] wielkich liter."
allcaps2 = "<b>[:nick]</b> za to zapomniaÅ[::a:] wyÅÄ
czyÄ Caps-Locka, [:per]% czasu używaÅ[::a:] wielkich liter."
allcaps3 = "Wszyscy posiadajÄ
kontrolÄ nad swoimi shiftami :)"
allcapstext = "<b>Na przykÅad coÅ takiego:</b><br /> [:line]"
violent1 = "<b>[:nick]</b> jest bardzo agresywnÄ
osobÄ
, atakowaÅ[::a:] okoÅo <b>[:attacks]</b> razy."
violent2 = "<b>[:nick]</b> nie potrafi kontrolowaÄ swojej agresji. ZaczepiaÅ[::a:] innych okoÅo <b>[:attacks]</b> razy."
violent3 = "Nikt nikogo nie atakowaÅ, wszyscy zachowywali siÄ przyjaźnie."
violenttext = "<b>Na przykÅad coÅ takiego:</b><br /> [:line]"
attacked1 = "Biedn[:y:a:] <b>[:nick]</b>, nikt [:go:jej:] nie lubi. ByÅ[::a:] atakowan[:y:a:] <b>[:attacks]</b> razy."
attacked2 = "<b>[:nick]</b> wydaje siÄ też nie byÄ zbyt lubian[:y:a:], zaczepiali [:go:jÄ
:] <b>[:attacks]</b> razy."
attackedtext = "<b>Na przykÅad coÅ takiego:</b><br /> [:line]"
gotkick1 = "<b>[:nick]</b> nie zaÅapaÅ[::a:] o co chodziÅo opom za pierwszym razem i zostaÅ[::a:] wykopan[:y:a:] [:kicks] razy!"
gotkick2 = "<b>[:nick]</b> nie jest tu chyba zbyt lubian[:y:a:] - wylatywaÅ[::a:] [:kicks] razy."
kicktext = "<b>Na przykÅad coÅ takiego:</b><br /> [:line]"
joins = "<b>[:nick]</b> nie [:mógÅ:mogÅa:] siÄ zdecydowaÄ czy zostaÄ, [:joins] razy wchodziÅ[::a:] na kanaÅ!"
kick1 = "<b>[:nick]</b> jest szalony lub stara siÄ byÄ konsekwentny, wykopaÅ[::a:] [:kicked] osob(y)."
kick2 = "<b>[:nick]</b>, idÄ
c w Ålad za [:oldnick], wykopaÅ[::a:] [:kicked] osob(y)."
kick3 = "Mamy tutaj miÅych operatorów, nikt nie zostaÅ wykopany!"
words1 = "<b>[:nick]</b> powiedziaÅ[::a:] ÅÄ
cznie [:words] sÅów!"
words2 = "PróbujÄ
c[:y:a:] go dogoniÄ <b>[:nick]</b>, nie powiedziaÅ[::a:] zbyt wiele, tylko [:words] sÅów."
words3 = "Nikt nic nie mówi... co za dziwny kanaÅ!"
wpl1 = "<b>[:nick]</b> pisaÅ[::a:] Årednio [:wpl] sÅów na linie."
wpl2 = "Årednia kanaÅu to [:avg] sÅów na linie."
mono1 = "<b>[:nick]</b> uwielbia mówiÄ sam[::a:] do siebie albo inni za [:nim:niÄ
:] nie nadÄ
żajÄ
, pisaÅ[::a:] monologi [:monos] razy!"
mono2 = "Kolejnym samotnikiem okazaÅ[::a:] siÄ <b>[:nick]</b>, któr[:y:a:] pisaÅ[::a:] bez towarzystwa [:monos] razy"
long1 = "<b>[:nick]</b> pisaÅ[::a:] najdÅuższe linie o Åredniej dÅugoÅci [:letters] liter..."
long2 = "Årednia dla kanaÅu [:channel] to [:avg] liter w linii."
short1 = "<b>[:nick]</b> staraÅ[::a:] siÄ pisaÄ zwieźle, Årednio [:letters] liter w linii..."
short2 = "[:nick] wybÄ
kiwaÅ[::a:] krótkie wypowiedzi Årednio po [:letters] liter."
foul1 = "<b>[:nick]</b> ma niewyparzonÄ
gÄbÄ, [:per]% linii zawieraÅo bluzgi!"
foul2 = "<b>[:nick]</b> klnie jak szewc (albo i gorzej) przez [:per]% czasu."
foul3 = "Nikt nie klnie na [:channel]! Sami spokojni ludzie."
foultext = "<b>Na przykÅad coÅ takiego:</b><br /> [:line]"
smiles1 = "<b>[:nick]</b> usmiechaÅ[::a:] siÄ gÅupawo albo byÅ[::a:] bardzo szczÄÅliw[:y:a:], bo [:per]% linii zawieraÅo uÅmiechniÄte miny :)"
smiles2 = "<b>[:nick]</b> najwyraźniej miaÅ[::a:] powody do radoÅci ÅmiejÄ
c siÄ przez [:per]% czasu spÄdzonego na kanale."
smiles3 = "Nikt siÄ nie uÅmiechaÅ na [:channel]! ProszÄ o uÅmiech Panie i Panowie."
sad1 = "<b>[:nick]</b> wyglÄ
da na smutnÄ
osobÄ, [:per]% linii zawieraÅo smutne miny :("
sad2 = "<b>[:nick]</b> nie czuje siÄ najlepiej na kanale smucÄ
c siÄ przez [:per]% czasu."
sad3 = "Nikt nie jest smutny na [:channel]! Cóż za szczÄÅliwy kanaÅ :)"
month = "stycznia lutego marca kwietnia maja czerwca lipca sierpnia wrzeÅnia października listopada grudnia"
day = "niedzielÄ, poniedziaÅek, wtorek, ÅrodÄ, czwartek, piÄ
tek, sobotÄ,"
## Topics
bignumtopic = "Wielkie liczby"
othernumtopic = "Inne interesujÄ
ce liczby"
latesttopic = "Ostatnie tematy"
activetimestopic = "Najaktywniejsze pory dnia"
activenickstopic = "Najaktywniejsze nicki"
activenickbyhourtopic = "Najaktywniejsze nicki w przedziaÅach godzin"
mostwordstopic = "NajczÄÅciej używane sÅowa"
referencetopic = "NajczÄÅciej wywoÅywany nick"
urlstopic = "NajczÄÅciej wywoÅywany URL"
notopic = "Żaden temat nie zostaŠustawiony na kanale."
mostnickstopic = "Ircownicy z najwiÄksza iloÅciÄ
nicków"
bylinetopic = "ustawiony [:date] przez [:nick] o [:time]"
dailyactivitytopic = "Dzienna aktywnoÅÄ (ostatnie [:n] dni)"