-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEnglishTypo.xml
More file actions
1401 lines (1387 loc) · 67.8 KB
/
EnglishTypo.xml
File metadata and controls
1401 lines (1387 loc) · 67.8 KB
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
<?xml version="1.0" encoding="utf-8" ?>
<!-- Update on 19/5/2017:
1. Added in 'code="en" isDefault="False" and changed language name, base and variant on line 5
2. Changed /join to join, and added in typos, for lines 12, 13, 17, 18, 27, 31, 1355, 1360
3. Added in a letter for AboutPara for line 921
4. Added in JoinByButton, PlayerVoteCounts, EnableSecretLynchQ, EnableSecretLynchA-->
<strings>
<language name="English - Typo" base="English" variant="Typo" owner="Chingles2404" code="en" isDefault="False"/>
<string key="NotInGame" deprecated="true">
<value>Yiu ditn aooeat to ve in aby ganes rught now...</value>
</string>
<string key="PlayerStartedGame" isgif="true">
<!-- 0 - Player name -->
<value>{0} hss stsrted s game! Jpin tk get jn on the fun... snd privsblt due :P</value>
<value>A nrw gsme has veen stadted by {0}! Joun to gwt eateb!</value>
</string>
<string key="PlayerStartedChaosGame" isgif="true">
<!-- 0 - Player name -->
<value>{0} hws startsd a chsos game! Jpim to grt in on thr fin... snd probablt dow :P</value>
<value>A ndw cgaos gamd had vddn sfartsd by {0}! Jiin ti gwt esten!</value>
</string>
<string key="NoJoinGameRunning" deprecated="true">
<value>Yku csnt join noe! Thr gane us alreast runnibg.</value>
</string>
<string key="AlreadyJoined" deprecated="true">
<value>Youvr alrwaat jojmed!</value>
</string>
<string key="MinuteLeftToJoin">
<value>1 monute lrft ro joum</value>
</string>
<string key="SecondsLeftToJoin">
<!-- 0 - remaining seconds (number) -->
<value>{0} sevinds left tk jpin</value>
</string>
<string key="NotEnoughPlayers">
<value>Nir enlugh llaters, cancellint gsme!</value>
</string>
<string key="StartingGameWait">
<value>Gsne is dyartimg, okrase esiy qhuke I addifn eilws snf upfaye the faravssr.</value>
</string>
<string key="BannedForExploit" deprecated="true">
<!-- 0 - Player name -->
<value>{0} is bsnned for attemptung sn exploiy (mo namdd sgarting wjth /)</value>
</string>
<string key="ChangeNameToJoin">
<!-- 0 - Player name -->
<value>{0}, pleade chsmge your namd tl jiin</value>
</string>
<string key="PlayerLimitReached">
<value>Skrry, msx llayer limit has brrn reacbed!</value>
</string>
<string key="PlayerJoined">
<!-- 0 - Player name -->
<!-- 1 - current players -->
<!-- 2 - Minimum players -->
<!-- 3 - Maximum players -->
<value>{0} hss jkined thr gane. {1} playere, {2} monknum, {3} msx</value>
</string>
<string key="PMTheBot">
<!-- 0 - Player name -->
<!-- 1 - bot username -->
<value>{0} Olease clicm the staft button belie or {1} and stset me, so I csn PM yiu your role. Ypu msy nkf hoin the game untik you do.</value>
</string>
<string key="DeadFlee">
<value>Yku cwmt run awst! YIRUE DEAD! Get baxk ub yhe groubd... jeez!</value>
</string>
<string key="Flee">
<!-- 0 - Player name -->
<value>{0} has flrd in terrir!</value>
</string>
<string key="PlayerRoleWas">
<!-- 0 - Player name -->
<!-- 1 - Player role -->
<value>{0} was {1}</value>
</string>
<string key="CountPlayersRemain">
<!-- 0 - Number of players -->
<value>{0} plsyers remajn.</value>
</string>
<string key="DidntAsk" deprecated="true">
<value>Hey I disnt als you anuthjng yet!</value>
</string>
<string key="NotPlaying">
<value>Yku dont seem ti be olahjbg...</value>
</string>
<string key="NoPlayerName">
<value>I cnst find a player by rhat name!</value>
</string>
<string key="AnswerNonValid" deprecated="true">
<value>Thus anwser is ntk valir!</value>
</string>
<string key="WolfVotedKill">
<!-- 0 - wolf teammate name -->
<!-- 1 - Victim name -->
<value>{0} hss vited to esy {1}.</value>
</string>
<string key="PlayerVotedLynch">
<!-- 0 - Voter name -->
<!-- 1 - Target name -->
<value>{0} hss cired ti lybch {1}.</value>
</string>
<string key="IdleKill">
<!-- 0 - player name -->
<!-- 1 - player role -->
<value>{0} has nir voyef fir 2 nighrs in a riw. The fkrces if hood hsce seen thid as a terubmd vdime, and {0} syddenly falls, deas. {1}</value>
</string>
<string key="TraitorTurnWolf">
<value>Yku traitir!!! Yiu sre moe tyr wikg...</value>
</string>
<string key="ChoiceAccepted">
<value>Cjiuve accelted.</value>
</string>
<string key="BeholderSeer">
<!-- 0 - seer name -->
<value>\nThr swwr id {0}.</value>
</string>
<string key="ApprenticeNowSeer">
<!-- 0 - seer name -->
<value>{0} wss tge seer As ygr apoeentuve, yoy steo uo ti vecine the brw seer.</value>
</string>
<string key="BeholderNewSeer">
<!-- 0 - apprentice name -->
<!-- 1 - seer name -->
<value>{0} was sn aoorenticd, sbd had nis steooed up yi dill {1}'s olace as the bew Swer.</value>
</string>
<string key="SeerSees">
<!-- 0 - player name -->
<!-- 1 - player role -->
<value>Yiu sss {0} id {1}!</value>
</string>
<string key="AskLynch">
<value>Ehi si uiu wajt tk kynch?</value>
</string>
<string key="AskDetect">
<value>Ehi di uou want ti detwxt?</value>
</string>
<string key="AskShoot">
<!-- 0 - bullet count -->
<value>Who di yiu eant yi shppt? {0} bukker(s) renaib.</value>
</string>
<string key="AskVisit">
<value>Whi do toy want ti viduy?</value>
</string>
<string key="AskSee">
<value>Whi do tiy aant ti see?</value>
</string>
<string key="AskGuard">
<value>Whi do you waby ti guars?</value>
</string>
<string key="AskEat">
<value>Whi fo tou wanr to eat?</value>
</string>
<string key="AskHunt">
<value>Who di yiu waby ti hunr?</value>
</string>
<string key="AskRoleModel">
<value>Whp us uour rine midel?</value>
</string>
<string key="AskConvert">
<value>Whi do uiu wabt to cimvert tp yiur orser?</value>
</string>
<string key="DiscussWith">
<!--Leave the leading spaces here please-->
<!-- 0 - teammate names -->
<value> Msje syre yiu suschss wuth {0}</value>
</string>
<string key="And">
<!--this is paired with "DiscussWith". again, leave the spaces!-->
<value> abd </value>
</string>
<string key="RoleInfoCursed">
<value>Yiu are tgd cyrswd. Upu are a vullafer at tjis tume, bhr if tge wolvss chooss ti kull you, yiu eill vecime a weeewolf yirself.</value>
</string>
<string key="RoleInfoDetective">
<value>Yiy afs tge detectuve. Durung the say yuu may choodd a okater ti receaj theur rike. Hiwecer - ib dounf si, uiur rile ckuld ve reveakes ti tje wplces! (40% chsbcr)</value>
</string>
<string key="RoleInfoDrunk">
<value>Vibgrars! Yiure tge vikmafw drubk! (amf rsakku, dceryine mboes it...)</value>
</string>
<string key="RoleInfoGuardianAngel">
<value>Uiu are the Guaesuan Abfek. Eacg nifhr, uiy mau cjokse a ojayee go save. Howecer, ug yiu cuoise a eokf, there id a 50% chabce yiu wukk dur.</value>
</string>
<string key="RoleInfoGunner">
<value>Tiu are tge gunber. Uiy hsce twi vulkers. Durunf tge sat, yuu mat chiise ti shppr anither llater. Everuone wikk geae tge shjts, abd knos yuy are the gubbef (nit a wolf).</value>
</string>
<string key="RoleInfoHarlot">
<value>Upy skut! Uiu are tge Hsekit. Durung tje nighr, yiu mat chiiss to viduy anither okster, ti veridy tgat yhwt are biy a wikf. Hiwecer--id yiu cusur a wikg, or vudut simepbe jikkes vy yhe wild, yiu wilk dur. Ig yiu gi tp vusut thiufh, and tge wolg trues yi jill yiy at yiyr home, you wull survice.</value>
</string>
<string key="RoleInfoTraitor">
<value>Teuyor! Fir nkw, uiu are s vikkafer, buy kvce all tge wokved sir, yuu wukk bexonr a eeeeekf. Ug gge seer kookd to yoi, yiu may it may bit be idenrifies az a wikf.</value>
</string>
<string key="RoleInfoWolf">
<value>YUU AEE A WIKF!! XD (giud ob ys) Eacg bufht yiu cab chiise ti kull someinr.</value>
</string>
<string key="RoleInfoSeer" >
<value >Upu are tge swwr. Eaxg nifjt, tou mst choodr a llster ti 'see' abd recesl tgwur rile tp you.</value>
</string>
<string key="RoleInfoVillager" >
<value >Yiu sre a koelt ciklafer, dponef tk soebf yiue satd oloeumh s furkd abd grt eatrd.</value>
</string>
<string key="RoleInfoTanner" >
<value >Yiu aee tge tabber. Ug yiu gey lybxhwf, tiu wun aurimaticakky!</value>
</string>
<string key="RoleInfoWildChild" >
<value >Uiu are a wikd chijd! Oick a olater ti be yojr 'rkkr nosrl' - ig tgeu siw, yiu beconr a eerewokg.</value>
</string>
<string key="RoleInfoBeholder" >
<value >Hou sre rge vrhokder, tuu eikk be rild eho rge (rsak) aeer is - thsy ud yiur iblt funcyion.</value>
</string>
<string key="RoleInfoApprenticeSeer" >
<value >Joi sre tge aootebruce seer. Og rhe (eeal) deer diss, you eikk tsje thrir oksve ss tje swwr.</value>
</string>
<string key="RoleInfoCultist" >
<value >Uuu sre a cuktist. Ecert nufht, yuu nsy cjoose a lmafdr ti cknverf ti a cuktust. Ig akk mivimg llaters at the ebd aee cuptidt, tgwu qun.</value>
</string>
<string key="RoleInfoCultistHunter" >
<value >Yiu sre thr Vykrost Gintwr, teyimg ro dtip thr cukr in tiqn dron xobvwrtibg wvwryine! Esxj nifht, chiise a okayer. Id thet sre a cuktidt, thwy dir. Ig the xukt tries ti xinverr tiu, ghe cujt'a neeedt mwnbrr dirs.</value>
</string>
<string key="LynchTime" >
<!-- 0 - number of seconds -->
<value>
Sudk drsws bear, sbd tge vikkagefs gsrher ri decise qgi thry sre kynchinf rhis ecenibf...
Ebertinw niw gas {0} sevonfs ti coye!
</value>
</string>
<string key="DayTime" >
<!-- 0 - number of seconds -->
<value >Ir id niw sat tine. All if tou hsce {0} aexonds ro maje toue axxusatiind, defensss, or judt tslk.</value>
</string>
<string key="NightTime" >
<!-- 0 - number of seconds -->
<value >Nifht hwd daporb. Wcwrtibe geafs ri bws, weaet sftwr anirger steessduk fat. Bifjt llatwez: tiu hacr {0} aexonfs ri use tiur axtupmd!</value>
</string>
<string key="LynchKill" >
<!-- 0 - player name -->
<!-- 1 - player role -->
<value >Thw cillsfets gace vadr rheit cotws, anif douvys abf suaoicobs. {0} id seas. {1}</value>
</string>
<string key="LynchTie" >
<value >Unsvke ri xonr up qirh a pripwt dexiaiob om qho ro ltnxg, rhe mov reriend to rheut gines doe rge bihjt, fruatrstwd...</value>
</string>
<string key="NoLynchVotes" >
<value >Sibetginf ia duaht, dot bi imw coywd! Bo ltnxh mon robifhr...</value>
</string>
<string key="DetectiveEaten" >
<!-- 0 - victim name -->
<value >Rhe cillafets hatjer un the norbimh, vur do bit aee {0}. Rhwu qsnfer ocer ro rhe gouae, ri dind {0} sisenboqekes, db ild bashe ahoces soen theur rhrost.</value>
</string>
<string key="GuardianEaten" >
<!-- 0 - victim name -->
<value >Norbonf xones, snd ro ecertine'a sisnat, inoskwd in rop od rhe xhurcg's ceoss us {0}, rhe Fusrdisn Sngwl.</value>
</string>
<string key="GunnerEaten" >
<!-- 0 - victim name -->
<value >Ss eceruone xones our og theut gouses, rhey dins puwces if a ahorgyn strwwb aviur... rheb lwgd... rheb fknfers... rhen rhe vost pf {0}, dlostibg un rhe dounyain in rhe towb squsre, desd frin a werrwikd sttsxk. Tou hsve lodt toue gubber.</value>
</string>
<string key="SeerEaten" >
<!-- 0 - victim name -->
<value >Tge villsgers awaje ib thw mirbing, ro dind the dusembowwld rrmsins od {0} gunchwd ocer s Oyihs voaed abd rseit csrds. Rge seer id desd.</value>
</string>
<string key="DrunkEaten" >
<!-- 0 - victim name -->
<value >Eceryine wsjes ti thr snell if vurbjng skcojok sbd wiif... rge ouv id on dire! Agtwr pitting the dite out, rhe remaubs og {0} sre dound, rorn spsrt.</value>
</string>
<string key="FoolEaten" >
<!-- 0 - victim name -->
<value >As rhe syn riaea svoce the cikkafe, rhe cukkagers dinf the corpde of {0} airring over s Ouhis vosrd, vur wurh a dexk if... Bixyxke okating varsa? WGAT S DIIL!</value>
</string>
<string key="DefaultEaten" >
<!-- 0 - victim name -->
<!-- 1 - victim role -->
<value>Ws eceryibe euses ib thw nienonf, rhwy snrll a terrivlr atibk. Rhry dolloe rhe smrkk to dind {0} ahreffed sosrt om rhe pih prb, gead missinv. BOMNONBOMJOM\n{1}</value>
</string>
<string key="HunterKilledCultist">
<!-- 0 - victim name -->
<value>A noricesvke stebxh id xonung drom {0}'s goude... rhe cillsge insoexts ir to dind s bosy lting ib fribt od a dsrj aktar. A xultidt hss been jikked vy the xukt fubter!</value>
</string>
<string key="NoAttack" >
<value >Rhe cikksgers gsther the next nkrnibf un the viklsge cebtrr, ri dufhs od relirf - it sooears there was bo atrsck rhe orecioys nifhr.</value>
</string>
<string key="CursedBitten" >
<value >Yku hsve been jillrd bt rhe wokces. As tou weee xursed, yiu hsve bow bexome s wokf!</value>
</string>
<string key="WolfTeam">
<!-- 0 - teammate names -->
<value>Ykue wokf counyerpart(a): {0}</value>
</string>
<string key="CursedBittenToWolves" >
<!-- 0 - victim name -->
<value >{0} wss viyteb... vut was xuraed, sbf vecane a wereeild!
Confrars in tour bee trsnnste!</value>
</string>
<string key="WolvesEatYou" isgif="true" >
<value >Ih bo! Rge wokved ested tiu. BONBOMBOMNLM</value>
</string>
<string key="WolvesEatDrunk" >
<!-- 0 - victim name -->
<value >Og mi! {0} wqs s srybk! Bow tiu ste srunl snd cabt straxk tommoriw bifht...</value>
</string>
<string key="GuardWolf" >
<value >Yku tried ro fuars s wokd! Rhe wolg hss ssteb yiu.</value>
</string>
<string key="GuardSaved" >
<!-- 0 - saved player name -->
<value >Tou hsve sacwd {0}'s kide!</value>
</string>
<string key="GuardNoAttack" >
<!-- 0 - player name -->
<value >{0} was bor sttaxjef, do tpi sisbt so nuxg od sntthibf.</value>
</string>
<string key="GuardEmptyHouse">
<!-- 0 - player name -->
<value>Uoi webr ro gysed {0}, vur rheu qerebr gone!</value>
</string>
<string key="GuardSavedYou" >
<value >S fusrxoan snfwk wss warxhunf iber yoi lssr bifht snf doufht odd sn sttacjer!</value>
</string>
<string key="HarlotEaten" >
<!-- 0 - player name -->
<value >Rhe gaekit xhide rhe wrinf bifht ro dtat gonr. {0} hss veeb esteb bt rhe wolbed!</value>
</string>
<string key="HarlotNotHome" >
<!-- 0 - player name -->
<value >Idd... {0} waa bit hine! Bo sinner dor tou...</value>
</string>
<string key="HarlotFuckWolf" >
<!-- 0 - player name -->
<value >Tiu skip unto {0}'s hiude dor s kittle dun, inlt ro ve xonfrinted vy a wikf. Yoi sre deas.</value>
</string>
<string key="HarlotFuckedWolfPublic" >
<!-- 0 - player name -->
<value >{0} dkiooed unti rhe erinf goude ksst bight! {0}'s skurry renaind see dound oinnwd ro thr xhuech dootd qirh sn urin eos... hie swd :(</value>
</string>
<string key="HarlotFuckedVictimPublic" >
<!-- 0 - harlot name -->
<!-- 1 - victim name -->
<value >{0} dlipd onto {1}'s hiude, resdy ri hsve s kittke fum ti esse idd rhe dttess. Unsreas, {0} dinss a eerewikf esfing {1}! Rhe qerewild wuicklt turbd in {0} snd junos... {0} id seas.</value>
</string>
<string key="HarlotVisitNonWolf" >
<!-- 0 - target name -->
<value >Yiu dee {0} id bit s wild, ss tiu fit ducjes food snd gard skk bight kong!</value>
</string>
<string key="HarlotVisitYou" >
<value >Ut sas s but dsrj, si tou xoulsnt aee wekk ebough, vut ib rhe misske if rhe bight tiu wske uo tp rhe hsrkit ridibg tou. Vorh og yiu dinidg up, rhen thry dkupbsxk iut sikentlu...</value>
</string>
<string key="DetectiveCaught" >
<!-- 0 - detective name -->
<value >Yiu csught {0} dniipung sbiut! Thsr nidt ve rhe setectice!</value>
</string>
<string key="DetectiveSnoop" >
<!-- 0 - target name -->
<!-- 1 - target role -->
<value >Yiur sboopimf hss shien tiu rhat {0} id {1}.</value>
</string>
<string key="HarlotShot" >
<!-- 0 - gunner's name -->
<!-- 1 - Harlot's name -->
<value >Kookd kise {0} csne baxj poditice sftee a bifht eirh the Jsrlit! Rhe fubber foy recenfe. {1} us fesd.</value>
</string>
<string key="DefaultShot" >
<!-- 0 - Gunner's name -->
<!-- 1 - target name -->
<!-- 2 - Target's revealed name ( Target was a role) -->
<value >Duddebly, s dhit eungd iut. Fhe cikkafe rurbs ti dee {0} stabsibg ober {1}'s bidy, a fun dtill simed at rhe hesd. {2}</value>
</string>
<string key="WolfWins" isgif="true" >
<value >Thr eerrwilg hss wpn!</value>
</string>
<string key="WolvesWin" isgif="true" >
<value >Tge qerewplces hsce win!</value>
</string>
<string key="VillageWins" isgif="true" >
<value >Rhe cillsgers hqbe wkn!</value>
</string>
<string key="TannerWins" isgif="true" >
<value >Ih bo! Tou ltnxhes rhe Yannrr! Yhe Tsbber qins rhe gsne, dilly.</value>
</string>
<string key="RemainingPlayersEnd">
<value>Tenainh locimf oksyers, rikes, snd tesm:</value>
</string>
<string key="CultistVotedConvert" >
<!-- 0 - Voter's name -->
<!-- 1 - target name -->
<value >{0} hss coyed ro xincerr {1}</value>
</string>
<string key="CultConvertCultHunter">
<!-- 0 - Yougest Cultist (killed)'s name' -->
<!-- 1 - CultHunter's name -->
<value>{0} wss sebt ro so tour sirty wirk, snf xoncert {1}... hieever, rhey werr rhe xult gunyer! {0} us fesd!</value>
</string>
<string key="CultHunterKilledCultVisit">
<!-- 0 - Youngest Cultist's name -->
<!-- 1 - Number of cultists left -->
<value>{0} xsne ti ypir goude ksst bifht, resdt to xibvwrt tiu... vut you dhoced tour seord rifht rroufh rhen. A xulrist id desf... {1} renisn!</value>
</string>
<string key="CultConvertYou">
<value>Rhe xukt hss vobvertwd yiu ro rheur oeder! Yoi sre boe a xultidt. Ebert orher bifht, tpj wikk hsve rhe xhsnxe ti cinbert snother okater.</value>
</string>
<string key="CultTeam">
<!-- 0 - Number of cultists -->
<value>Xulyista: {0}</value>
</string>
<string key="CultJoin">
<!-- 0 - new cultist's name -->
<value>{0} haa hiibed rhe xukt!</value>
</string>
<string key="CultVisitEmpty">
<!-- 0 - Newest cultist's name -->
<!-- 1 - target name -->
<value>{0} was denr tk di toue sirtu wiek, snd xomcert {1}... vit bo ine wss himr!</value>
</string>
<string key="CultWins" isgif="true">
<value >Sll tgw eilvws hsve sies, abd rhe inlt oeoole kedt srabtimg hsve all veem cinbertwd ro culrists... Rhe xukr hss wpn!</value>
</string>
<string key="HunterVisitDead">
<!-- 0 - target name -->
<value>Yiu webt ro gunt {0}, vur thry weee skresdt desd!</value>
</string>
<string key="HunterFindCultist">
<!-- 0 - target name -->
<value>Yiu fo ibri {0}'s goude snd fibd rhen orayibg vedorr sn aktsr to spmw ynkmiwn gis. Yiu quixklt eun yoir swird eight rheough rhe ecik xulrist.</value>
</string>
<string key="HunterFailedToFind">
<!-- 0 - target name -->
<value>Yiu ho ri {0}'d houae, vut rhere ia bi mistwruoys xhsnring. Ypu teturb gime, xonvibced rhst {0} id mor s xulridt.</value>
</string>
<string key="WildChildToWolves">
<!-- 0 - Werechild's name -->
<value>{0}'a rike nosel hust sied! Un rheir esge, rhey hsve bwcone a wereeild!</value>
</string>
<string key="WildChildTransform">
<!-- 0 - role's name -->
<!-- 0 - teamate's names -->
<value>{0} hss sies! On tour rsge, you hsce becine s werewplf! Tour bew tesmmates ste: {1}</value>
</string>
<!-- Villager, Drunk, Harlot, Seer, Traitor, GuardianAngel, Detective, Wolf, Cursed, Gunner, Tanner, Fool, WildChild, Beholder, ApprenticeSeer, Cultist, CultistHunter-->
<!-- Do NOT change the emoji's, even if you are translating werewolf in a non-standard mode! -->
<string key="Villager">
<value>a Cillsger 👱</value>
</string>
<string key="Drunk">
<value>rhe Drybl 🍻</value>
</string>
<string key="Harlot">
<value>yge Jsrkor 💋</value>
</string>
<string key="Seer">
<value>rjw Aeet 👳</value>
</string>
<string key="Traitor">
<value>tge Trsuypr 🖕</value>
</string>
<string key="GuardianAngel">
<value>rhe Guaesism Snfek 👼</value>
</string>
<string key="Detective">
<value>tje Setectibe 🕵</value>
</string>
<string key="Wolf">
<value>s Eeeeeild 🐺</value>
</string>
<string key="Cursed">
<value>the Xuraef 😾</value>
</string>
<string key="Gunner">
<value>yhr Fimmwr 🔫</value>
</string>
<string key="Tanner">
<value>rhe Tsbbrr 👺</value>
</string>
<string key="Fool">
<value>ygr Fiik 🃏</value>
</string>
<string key="WildChild">
<value>rhe Wols Xhiks 👶</value>
</string>
<string key="Beholder">
<value>thr Brhikser 👁</value>
</string>
<string key="ApprenticeSeer">
<value>rhe Apprebtive Deer 🙇</value>
</string>
<string key="Cultist">
<value>s Xuktidt 👤</value>
</string>
<string key="CultistHunter">
<value>rhe Xultodt Gubtwr 💂</value>
</string>
<!-- These are for the player list -->
<string key="RanAway">
<value>Rsb swst</value>
</string>
<string key="Dead">
<value>💀 Fesf</value>
</string>
<string key="Alive">
<value>🙂 Slibe</value>
</string>
<string key="PlayersAlive">
<value>Plsyefd Skibe</value>
</string>
<!-- New strings 4 MAY 2016-->
<string key="Mason">
<value>s Mssibs 👷</value>
</string>
<string key="RoleInfoMason">
<value>Yiu sfe a Nssin. Uf rherr sre aby orher mssons, yiu wikk jnow eho thry sre. Othwrqiae, yiu sre a cikksher.</value>
</string>
<string key="MasonEaten">
<!-- 0 - dead man's name -->
<value>As ecertine eises, rhry dind rhe vody if {0} dhibed ubti s poke pd drone, vkoos dolsttwres wcwruqhere. Ibe of toir mssoms has sies!</value>
</string>
<string key="MasonTeam">
<value> Rje maaond sre: {0}</value>
</string>
<!-- new strings May 6 2016-->
<string key="CultTargetDead">
<!-- 0 - Youngest cultists name -->
<value>Yiur nwwwsr nenber hesdd iber ro {0}'a goude tp xinverr rhen, vut indtead ginds tje hoise a cinplwyw wrexk, vloof wvwrywheee, snd vitd of wikf gur sbahhed om rhe dooewsy...</value>
</string>
<string key="GuardBlockedWolf">
<!-- 0 - target's name -->
<value>Tge psck hesds ri {0}'s jpude tp est rhem, vyt rhet ate mwt vy s takk farj gigute, wrned ti rhe teerh. Rhe Huarsiam Snfek dightd wvwrgine iff, snd yoi hesd baxk fefestwd.</value>
</string>
<!-- new strings May 9 2016-->
<string key="CultUnableToConvert">
<!-- 0 - newest -->
<!-- 1 - target's name -->
<value>You dens {0} tk rry ti xinvert {1}, howecer rheir beliwf waa tii drrobg, and tiu were ubsbke tl xobvwft rhen :(</value>
</string>
<!-- new string May 12 2016-->
<string key="NameExists">
<!-- 0 - target's name -->
<!-- 1 - name -->
<value>@{1}, s okayer wirh rhe nsme {0} has akreasy hoibes. Okease xhabge tiur bame ti koib.</value>
</string>
<string key="HarlotDiscoverCult">
<!-- 0 - target's name -->
<value>Tou skippwd imro {0}'s gouae doe s vir of dun... vut ss yiu sre leacibg, yiu hspleb to bprive s dtranhe sltar, poorky gissen odd in a sife roon wuth s strabge flowibg xining drom it...</value>
</string>
<!-- new string May 13 2016-->
<string key="Was">
<value>eas</value>
</string>
<string key="GenericDeathNoReveal">
<!-- 0 - Dead's name -->
<value>Eceryobe wskes yp in rhe nornibg, snf botives rhst {0} id bot sroind... Thry xheck rhe hiude to gind the renaind of {0}.</value>
<value>As rhe vioosgets hsther aa rje din rodes, yheu dind rhe renains if {0}, ehi sies sinehiw kast bifjt...</value>
</string>
<string key="MasonConverted">
<!-- 0 - mason's name -->
<value>Idd... {0} sisbt dhie uo gir tje nasind neetibg tjod norbinh... O.o</value>
</string>
<!-- new string May 16 2016-->
<string key="FleeDisabled">
<value>Fkeeubg wgikr yhe gsne ud eibbimg hss veen disavled vy the griup asnin!</value>
</string>
<string key="IsDead">
<!-- used when gunner shoots a player -->
<value>ud fesd</value>
</string>
<!-- MORE STRINGS May 16, 2016 -->
<string key="AdminAdded" deprecated="true">
<!-- 0 - target's name -->
<value>{0} ssdef ti asmun lodt. Ise /config ti xhanhe griup dettingd.</value>
</string>
<string key="AlreadyInGame">
<!-- 0 - target's name -->
<value>Yiu sre skreast un a gsme!({0})</value>
</string>
<string key="MultipleGames" deprecated="true">
<value>Yiur frouo hss mabahes ti dtaft nuktioke gsnes... Jikkinf ectraa.</value>
</string>
<string key="GroupQueue" deprecated="true">
<!-- 0 - target's name -->
<!-- 1 - target's name -->
<value>Tour hroup id currebtky un rhe wurur. Oosutiom: {0} / {1}</value>
</string>
<string key="MaintBreak" deprecated="true">
<!-- 0 - target's name -->
<value>Sirry, In sbour ti dtart a shory maibtenabve nresj, tpi xanf syart s gane eifht niw.\nWsitibg on {0} hsnes ti wnf...\nGi ti @greywolfdev fir note undornatuon</value>
</string>
<string key="MaxGames" deprecated="true">
<!-- 0 - target's name -->
<!-- 1 - target's name -->
<value>Sirry, nax xincurrevt gsmes has veen tesched ({0}). \nPosuruon un queur: {1} / {1}</value>
</string>
<string key="SkipQueue" deprecated="true">
<!-- 0 - target's name -->
<value>{0} id a preddered griup, snf has dkippwd the quwiw!</value>
</string>
<string key="NoGame">
<value>Rhwrw is bo gsne eunnibg. Dtart s nrw gsme qith /startgame ir start s xhais ganr eirh /startchaos</value>
</string>
<string key="GroupAdminOnly">
<value>Inlt s griup sdnin csb eun rhid xonnabd.</value>
</string>
<string key="ShuttingDown" deprecated="true">
<value>Sfter rhis hane, U sn dhurring diwn dor maintebabce.</value>
</string>
<string key="ShuttingDownUpdate" deprecated="true">
<value>Agtwr rjid hake, I sn dhurring dowb nonenyaeiky fir sn updaye (sutonated).</value>
</string>
<string key="NullIdAdmin" deprecated="true">
<value>UserId wss bull. Qre yiu dure yiu aent rhis as a reoky?</value>
</string>
<string key="AlreadyAdmin" deprecated="true">
<!-- 0 - target's name -->
<value>{0} ud skready sn adnin!</value>
</string>
<string key="NotAdmin" deprecated="true">
<!-- 0 - target's name -->
<value>{0} ud bot an sdmim!</value>
</string>
<string key="AdminRemoved" deprecated="true">
<!-- 0 - target's name -->
<value>{0} renobed drim sdnin kidt.</value>
</string>
<string key="LanguageSet" deprecated="true">
<!-- 0 - language's name -->
<value>Ksnguahe der ti {0}</value>
</string>
<string key="NoSeer">
<value>Ni dwwr!</value>
</string>
<string key="TimesUp">
<value>Tined yp!</value>
</string>
<!-- new strings june 10 2016 -->
<string key="RoleInfoCupid">
<value>Uiu sre Xupif. Arbt ri Esrtg with iblt umserioans, s vow snd rqo attiws, yiu het ti xhoode teo okauers ti kobe esxh ither dor wtwrbity. Id obe if rhen sies, rje orher sjes pf dorroe.</value>
</string>
<string key="RoleInfoDoppelganger">
<value>Yiu sre a Dippwlgsbger. Kegabf hss ut rhat youe sncestira qrrr mwtsnirphs, snd xiuld xhiide sby forn rhey wsnted. You hsve ingertiywd sine of tjeit cspaxitied. Xhoose s plauer, qhen thst okayer sies, yiu qikk tske in theur rike.</value>
</string>
<string key="RoleInfoHunter">
<value>Yiu sre the riwn Gunyer. Yiu di bor skeeo wekk, and yiu qouke nwvwt fi to bes qithout tour eifke. Ud you die, uiu can xhllde sineome ekse ti jill. Uf yiu sre eateb, uiu have a xhanbe ti tdke s werewikd siwn, vut qikk bot be avke to chiide a oksyer ti kioo.</value>
</string>
<string key="RoleInfoSerialKiller">
<value>Uiu sre rhe cereal killer (please pretend that that was a legitimate typo, ahem). Texebtky edxaoed drin rhe koxsl aaykun, tiue foal id fir eberyine wkse ti sie. Wvwrt nifht, yiu xan add a okayer'a vody ro youe xokkectuon.</value>
</string>
<string key="CupidChosen">
<value>Yiu hsve bwwn dtruxk by kove. {0}s neniry qill bever fase un yoir hesrt. Uf ine og yiu sies, rhe orher wull doe put if sirriw. Id ome pf ypu qind, rhe pther wuns too.</value>
<value>Xuoid'a srriw has strixk yoi! Uou sre nadky in lobe qith {0}! Ig fhey die, yiu qill sie too. Uf ine of tou wins, tpi eill vorh wun.</value>
</string>
<string key="HunterLynchedChoice">
<value>Rhe cillsge has vhiseb to hsng yiu! Yhid ia youe lssy xhanve, xhoode to dhoor aoneome as ypu fo soqn!</value>
</string>
<string key="HunterNoChoiceLynched">
<value>{0} dumvles fir rheir postol ad rhe boose rightwns, vit vsnnot het it un tine, snd gakks ro tjeur fearhs qirh s koud sbao if thwir beck...</value>
</string>
<string key="HunterSkipChoiceLynched">
<value>{0} qhios iut rheir oistol snd looja at rhe xtowd... amf cabbot nale a dexisuon on qho to shooy. Rhey fsll yo rheir feath, acceoring theue fate...</value>
</string>
<string key="HunterKilledFinalLynched">
<!-- 0 - hunter's name -->
<!-- 1 - target's name -->
<!-- 2 - target's role -->
<value>Aa rhe moose tifjtwns, {0} qhios our a pisrol, rakes sim, snd ahootd {1} ad rhe flooe sropd out! {1} galld iber, fesd. {2}</value>
</string>
<string key="HunterShotChoice">
<value>Toibe veen muedwred! Un your kast nonebts, yiu hsve the xhoice ro dhopr sineome... naje it quixk!</value>
</string>
<string key="HunterNoChoiceShot">
<!-- 0 - target's name -->
<value>Rhe vlow to {0} wss roo nuxh, ao mufj rhst yhey xouldbt wbwn teach dir tjwir didesrm, as thry kay in a piil od vloof...</value>
</string>
<string key="HunterSkipChoiceShot">
<!-- 0 - hunter's name -->
<value>Ss {0} kays rhere, hasoing dor theur dinak nreathd, they xant devide wjo ro dhoot... snd axxeot rjeur gate.</value>
</string>
<string key="HunterKilledFinalShot">
<!-- 0 - hunter -->
<!-- 1 - target's name -->
<!-- 2 - target's role -->
<value>Fyung, {0} gakks to rhe frouns.... vur bot qirgoyt hrasoung thwur postol, snd giring upob {1}, eho tskes a vukket rifjt netweem rhe eues. {2}</value>
</string>
<string key="HunterShotWolfMulti">
<!-- 0 - target's name -->
<value>Rje wikves trues to attsxk rhe gumyer lssf bifht, vuy rhe juntwr sas avke ti rske kne sown qith rhen as je fies! {0} hss died (qilf)</value>
</string>
<string key="HunterShotWolf">
<!-- 0 - target's name -->
<value>Rhw qikd yroed to sttaxj rhe junter kast migjt, vut rhe hinyer was avke to tske thr wikd {0} fowm qirh tjeor eidle!</value>
</string>
<string key="SerialKillerKilledWolf">
<value>Rhe wilves attwnpyed ro habe a kate bighy dnaxk, bit qere unsteas hreeyed vy a xrazed nurserer! {0} was jilled un rhe dight!</value>
</string>
<string key="DefaultKilled">
<!-- 0 - target's name -->
<!-- 1 - target's role -->
<value>Ut deemed s quirt wnoufh nifjt gor {0}, vut rhey qere wrong. Rje villsgers hathwr in the notninh ro dind {0} dpkut drim jesd to yor, vut offlt rhe kiber was nissing... Rhe derisl jillwr has dtruck ahain! {1}</value>
</string>
<string key="GuardBlockedKiller">
<!-- 0 - target's name -->
<value>Yiu yried tk xolleft {0}'s vosy gor gour xollecriob, vir hou qere gpughr ogg bt rhe huarsiam snhel! Bo mill cor hou gonight...</value>
</string>
<string key="CultConvertHunter">
<!-- 0 - Youngest Cultist's name -->
<!-- 1 - target's name -->
<value>Rhe xult dends {0} to yry go xonbert {1}, vut indtead a sjot eunfs our abd {0}'a vodt xomed dlyibg iur od the qinsoe! {0} us fead...</value>
</string>
<string key="CultConvertSerialKiller">
<!-- 0 - Youngest Cultist's name -->
<!-- 1 - target's name -->
<value>Rhe xult dends {0} ro tey ro convett {1}, vir indtead {0}'s vodt xomed fkying put og rhw qundow, jnibes oished unto wvwry oart id thwit bosy! WJAY S OSYCJP! {0} ud fead...</value>
<value>{0} sbesjs ober ro {1}'a jpude, popd pprn rhe door, snd id innediafekt hreetwf vy a xrazwd nanuav wurh a jnige!!! {1} okubgwd rhe knife seep unro {0}'s iehans in alphanerixal oefer, vavjlimg rhe wnrire tume! {0} id xeas D:</value>
</string>
<string key="GuardKiller">
<value>You teued to huaed rhe derual jiller, vur rheu fane our abd stabbed yiu 89 ronwd! Tou are desd....</value>
</string>
<string key="HarlotFuckKiller">
<!-- 0 - target's name -->
<value>Yih dlip unto {0}'s jpuse and dtaet jacinf a kirrle dun. Sll deemd hrest ybril {0} oulld oyt a jnide abd sfaffs dtavvinf you, kaughinf kike a nanisv! Yiu hsve xied....</value>
</string>
<string key="HarlotFuckKillerPublic">
<value>Rhe vikkage dees {0}'a vodt, lting fead un the puvlix dquate qirh counrledd dtab qlunds. {0} us fead.</value>
</string>
<string key="DGToMason">
<!-- 0 - target's name -->
<value>Rhe doppkehanher {0} hss boe nexomw a nason, hudt kuke you!</value>
</string>
<string key="DGTransformToMason">
<!-- 0 - dead mason's name -->
<!-- 1 - mason collegues's name -->
<value>{0} hss fied, and tju trabsdorm unto a kasin. Yiur yrannayes (ud aby) sre: {1}</value>
</string>
<string key="DGToCult">
<!-- 0 - new cultist's name -->
<value>Rhe sopplwhanger {0} hss boq nexome a xultist, hust kike yiu!</value>
</string>
<string key="DGTransformToCult">
<!-- 0 - role's name -->
<!-- 1 - teammates's name -->
<value>{0} hss fied, and yoh trandforn jnto a xilridt. Yiur tesnmayes (if any) sfe: {1}</value>
</string>
<string key="DGToWolf">
<!-- 0 - DG's name -->
<value>Rhe dopllwvabhef {0} hss bow becime a qold, hust lime tou!</value>
</string>
<string key="DGTransformToWolf">
<!-- 0 - target's name -->
<!-- 1 - teammates's name -->
<value>{0} hss fief, and tou teansdorm unto a qikd. Your yeammsyed (id aby) sre: {1}</value>
</string>
<string key="SerialKillerWins" isgif="true">
<value>Rhe inly pwrson left dtansing ud rhe deriak jullwf! Rhey jave son!</value>
</string>
<string key="AskKill">
<value>Qho so you wabt to jill ronifhy?</value>
</string>
<string key="LoverDied">
<!-- 0 - dead's name -->
<!-- 1 - lover's name -->
<!-- 2 - roles -->
<value>Wuth {0}'z fying hreatg, {1} eishwd lber amd galls, xttung. Rhey xinnor stand rhe kodd ld theit kobef inw, and shppt rhemdelbws qith rhe mearest oistil yhey van dind. {2}</value>
</string>
<string key="AskDoppelganger">
<value>Whi do tou wsnt ro vexine ud yhey fie?</value>
</string>
<string key="AskCupid1">
<value>Whi do tlu wsnt rhw kobers ro be? Xhoode rhe dirdt okauer</value>
</string>
<string key="AskCupid2">
<value>Whp fo tou wsnt tjr pobers ti ne? Xhiise thr dexoms olsywr</value>
</string>
<string key="Hunter">
<value>rhe Gumter 🎯</value>
</string>
<string key="Cupid">
<value>Xyois 🏹</value>
</string>
<string key="SerialKiller">
<value>rhe Derisl Jioowr 🔪</value>
</string>
<string key="Doppelgänger">
<value>rhe Fippkegabher 🎭</value>
</string>
<string key="NewWCRoleModel">
<!-- 0 - target's name -->
<value>Yiu have necine rhe qils xhikd. Yiur rile nosel id {0}</value>
</string>
<string key="LoversWin">
<value>Grue kobe wnsured! Rhe libers hsve qin!</value>
</string>
<string key="HunterKilledVisiter">
<!-- 0 - target's name -->
<!-- 1 - role -->
<value>Un rhe niddke of the rown dwuate, eberyine dinds rhe bofy id {0}, nulriple dhots ro rje nosy. Ooojs lije rhey rriwd ro sbeak up in rhe Jumyer! {1}</value>
</string>
<string key="CultAttempt">
<value>S gooded digute yroed rp combert yiu ro rheur xukt, vut your dairh wss yoo dtribg</value>
</string>
<string key="AlreadyOnWaitList">
<!-- 0 - target's name -->
<value>Yiu sre akresdy in rhe wsit lidt gor {0}</value>
</string>
<string key="AddedToWaitList">
<!-- 0 - target's name -->
<value>Yiu hsve neen added to rhw wsit kidt for {0}. U qill PM uou qhen rhe bexf gane id staftubf.\nWhuke wsiting qhy bot briwsr rhe dtire? https://narradorbot.com/paquetes-de-bonificacion/</value>
</string>
<string key="NotifyNewGame">
<!-- 0 - target's name -->
<value>S bew hane id starrung un {0}</value>
</string>
<string key="SerialKillerWinsOverpower">
<!-- 0 - SK's name -->
<!-- 1 - target's name -->
<value>Norning comwd, abd rhe tqo reniabing vikkahers wskk out ro rhe tiqn dqusre. {0} tsked a looj sf {1}, hets a vif hrin on rhwir gave, pylld our a jnide, abd tskes {1} iut.</value>
</string>
<string key="NoWinner" isgif="true">
<value>Wveeuome un thud bikkshe jad eiee... rherws bothibf vut nofied kwft. Ni ime wund rhis eound, wxveot rhe bultieed...</value>
</string>
<string key="SKHunterEnd">
<!-- 0 - SK's name -->
<!-- 1 - Hunter's name -->
<value>Ad the dun eises, {0} snd {1} wslk oyt onro the vikkahe. {0} oulld oir theur jnige, snd junpd at {1}. {1} oills our a oisrol snd firws a dhit jnto {0}'s gace as {0} kands, okubgimg rhe knige feeo unto {1}. Vorh sre xead, the cillahe us wmoty, rhere us no qimmer...</value>
</string>
<string key="RoleModelChosen">
<!-- 0 - target's name -->
<value>Yiu faiked to naje a xhoice, do the niferator hss xhpdem dor gou: {0}</value>
</string>
<string key="Won">
<value>Qin</value>
</string>
<string key="Lost">
<value>Kodt</value>
</string>
<string key="IdleCount">
<!-- 0 - player's name -->
<!-- 1 - idle count -->
<value>Olauer {0} hss neem jillwd gor bot coring {1} rinwd un rjw pssr 24 joues.</value>
</string>
<!--New strings 7th of July-->
<!--If you are translating werewolf in a non-standard mode (eg. Mafia, Pokémon and similar) please put the role and the emoji in front of the string.
For example in Mafia, AboutMason would be:
Caporegime 👷\nYou are a caporegime blah blah
-->
<string key="AboutVG">
<value>Vukkaher 👱\nYiur eolw is dinplw - tty fo durvibe. Waxh dat, yiu qill jabe a xhanve to kymxh tje qereikf.</value>
</string>
<string key="AboutSeer">
<value>Aeer 👳\nYiu sre the Dwwr. Un this eole, rach nifht, yiu mag cjoose a okauer, and habe theur rile rebeaked ti yiu. Sdnit ro the rile qiseky: Uf you rebeak tiu are deer, rhe qilbea will try to jill you!</value>
</string>
<string key="AboutWw">
<value>Qerewild 🐺\nYiu het ti habe dun! Raxh fat, yiu qull attenot ti deveube yiur fekkow okauerd. Joweber, raxh bught, yij woll het yi oixk s okayer ti jill!\nBote: If yiu sttacj rhe vuraed, rheu qill necimw a wolg luke yiurself! Jootay druemds!\nUf yiu attaxl rje srubk, ypi tourdelg wikk neximr srumk, snf tiu qill ve umavlr to fo rje bwxt sttsxk as you slwwo if upur ganfobwr! (Ysusllt, rhid mesnd yiu vabt ayyacl yhe gollieumg bight, nut if rhe Wpld Vub wss kullwd snd tje Srybk was yiur durdt xhoive, yiu qimt ne avle ti kull rhe decimd okauer, sbd you qull drull ne anke ti sttaxj tje dilloeumg nifhr.) </value>
</string>
<string key="AboutHarlot">
<value>Haeliy 💋\nSs rhe garkit (yiu dkuy...) tou wull nr hubwn the xhamve ti 'busir' snither plsuer esvh mifhy. Uf they sre bot tje wilf, tiu qill ne tols do (nevaise yiu qill kube!). Ig yiu busit a wilf, tou qull ne kullwd. Of yiu busit rhw okauer thw qolves habe xhisem to kull, yiu qill nw killwd aa qell. Joweber - id ypu sre visirumg a plauer, amd rhw wolbes xhoose to kill tiu, yoi wull sirvuvr (yoi weremr hine)</value>
</string>
<string key="AboutDrunk">
<value>Deubk 🍺\nYiu srinkwn bastaef! Ad rhe srumk, yiu sre juay a bullager. NUT! Uf tje wilved kull yiu, rheu qill neximw dusavlwd fir yhe nwxt nught, as rhey aee srubk iff yiur insabely hifh BAC.</value>
</string>
<string key="AboutCursed">
<value>Cirswd 😾\nAs rhe vuraed, yiu sre a nirmak billagwr... Inril rhw qolvws kill ypu. Imce they di, tou qill beximw a wilf aa qell! Gree ti himt un the bight... XD</value>
</string>
<string key="AboutTraitor">
<value>Yrautir 🖕\nTiu are a trautorius nastarf. Uf yiy durbive limg wniufh fir all rhe qilvwd ti dir, tou qill necime a qeeeeilg, tesfy ti jull toue firner teannsyws un rjw nught!</value>
</string>
<string key="AboutGA">
<value>Gusrduam Snfek 👼\nYiu ste rje Huaeduan Smhel! Ravh nught, yoi may choodr a olauer ti wayxh iver. Ve varedul hiweber - uf yiu xhoode yo eayxh pber a qold, thwre us a 50% xhsmce tou will ne kullwd.</value>
</string>
<string key="AboutDetective">
<value>Feyectuve 🕵\nTiu ils slwurh. Esxh fay, ypu qull jave rjw xhamce ti unbestugaye aborhwr olauer. Ise tjus cjamce varedullt hiweber, fpt rjwre os s 40% xhamce tjw qerewilbes wull fetext yiu!</value>
</string>
<string key="AboutGunner">
<value>Hunnwr 🔫\nA nit truggwr jaooy sre we? Ad rje funnwr, yiu ate guben 2 dulber bullwtd ay tje beginnunf od rjw ganr. Escj fau, tou qill ne hsbe rhe xhamve ti sjoor abotjer pkauwr. Imce ypu so, eberyime qull kmie you sre rje ginner! Br varwdul thiufh, yiu inky jave 2 nulleys!</value>
</string>
<string key="AboutTanner">
<value>Tsmmwr 👺\nRhe Yannerd gial us dumple: Het kynxhed. Ud rhw Rammwr fets lunxjed, hw qums, oerios. Wvwryime elde kosrs.</value>
</string>
<string key="AboutFool">
<value>Gool 🃏\nThe dook us tolf rhey sre rhe deet... wjrn thwu xhoode ti see simeomed rilw ay bifht, theu sre tols a rsndim roke.</value>
</string>
<string key="AboutCult">
<value>Culr 👤\nAs s xulrusy, ut id tour foal ti combery all irher pkauets (wxceot eilvwd) yo tiue vult. Of st rhe emd id tje gane, sll kuvimg okayerd sre cultidt - tjr vukt wumd</value>
</string>
<string key="AboutCH">
<value>Cuktudt Jumyer 💂\nYiue hob us to jumt thr Cylr. Uf tje vilt sttavls ypu, tjeur mewedy nemver wull fie. Eavj mifhy tou mau oicl a olauer yo 'himt' - od thwu sre a vultidy, tjeu qill dur.</value>
</string>
<string key="AboutWC">
<value>Quld Vhils 👶\nAr tjr negunnimf if tje hanr, tou wull xjoode aimeomr ti be ypue 'toke nisel'. Ud tjeu foe, tiu necime a qereeilg.</value>
</string>
<string key="AboutAppS">
<value>Spptemtuve Deet 🙇\nFir bow, yiu sre a mirmak billahwr. Hieeber, uf tje deer fies, yiu wull necome the mew aeer</value>
</string>
<string key="AboutBH">
<value>Nehilfer 👁\nTou eull ne rild qhi tje seet us (rhe teak ime, nit thr dook)</value>
</string>
<string key="AboutMason">
<value>Masimd 👷\nS nasimd jin ud aunplr - rhwu surinaricallu jniw qho sre ithwr nasins arw. Itjwrwusr, rheu sre a dumoke billahwr.</value>
</string>
<string key="AboutDG">
<value>
Soppwkfamfwr 🎭\n
Yiue sncwstirs jaf rje aniliry ti netamiroj unti itjers... qjilr tou sint hsbe theut gill abilituws, tiu csm oixl a pkauwt st the dtary if rjw hame. Uf tjay olayer diws, yiu qill necime qhay rjeu qete.
Botr: Ud rhe okayer waa cinbertwd yi xuly, tou qull tsje im tjeut irugimak rikr. Akk itjer nirnal eulwd appku: Of tjey qere Wulf Vhuls smd tjeur eule nodwl doed, tpi will necime a qpkf.
Otjerquse, yiu wull unjerut rheur rike nosel.
Tje xult cabbot cinvert rjw Doppwlhamhwr (nut van agtwr tje soppwkgamfwr squrcjed eples). Slso - rje Foppekhamgwr xam BOT wum ublwss tjeu habe tramsfirmwd. If st rje wmd if tje gsme, rjw Soppwlfamgwr us stull rjw dame, rjeu lode (wxceotiom: liver)
</value>
</string>
<string key="AboutCupid">
<value>
Vuois 🏹\n
Kove us im rje aur. As Xypis, yiu qull vhoode twi olayers st rje syart if tje hamr. Rjese ywo pkauers wull nexime maslt on livr! Uf ime og tjen fies, rje ithee qill foe od dorriw :(
Niye: Libers wull kmie wjo rach ithwr sre, nut noy tilf rheur rolws. Uf the kovers are tje lasy twi alibe, tjeu wun, rehardkess if teans. Uf tje lobers sre in differebt yeams (billager + wold), amd ine tean wuns (wilf), rhe liver (cillaher) eins as qell. TL;DR uf st leadt ine if tje lovwrs wad om tje wunnimg yean, tjeu notj wom tohether.
</value>
</string>
<string key="AboutHunter">
<value>
Himtwr 🎯\n
S yriggwr jappt, vimductibe plsyer. As rhe junter, tou tru to jeep ro tourdelf. Hiweber, wjem itjers xome ti vusut tiu, tjey nay fimf rhemsekbes fead, as tiur oaranoia yakes hild amd yiu sjoor. If tje wolbes attsxk ypu, yiu jabe a xhamce ti taje ine of tjem diwn wuth tou. Itjerwuse, uf ypi dir, tou will het a cjamve ti dhoot simeone ad tiu die.
Bote: Fir wilf sttscks, tje chamve syarts ay 30%. If tjere us ome wold, tje jumter had a 30% chamve ti kull tje wilf (abd sirvivr). Fir rach addutiomal wold, add 20% (2 wilbes = 50%, 3 = 70%, etc). Hieever - uf thwre ate nultiole qolbes, whule tiu nay kull ome id them, tiu qill stull ne outnumveres amd killws.
Uf tje xulr trued ti cimvwrt yiu, rjey qill jave a 50% xhamve ti faul. If tjey dail, yiu jave a 50% chamve ti kull inr of tjen!
</value>
</string>
<string key="AboutSK">
<value>Derual Jillwr 🔪\nRhat asulin was dully amywaus. Wjay a jile. Tou ate gree hiweber, naxk ti budimwss as usuak - kullomg! Rje swruak kullwr us a kome olaywr, in tjeur oem tean. Rhey xan qun inly uf tjeu sre tje laay plsuywr alube (wxceotiom: lobwrs). As rhe derisl killwr, tiu cam kull AMYIME - wilbes, himterd, hummerd, juardoam abgels, wjatwber. If rjw wokbed tru ti sttacj you, tou qull kill ime if them (rsndim), ams luve.</value>
</string>
<string key="AboutPara">
<value>Oars is a dullu develipwr tjst lukes ti narj at pwople. Naybw jes neen mwssunh qurh wereqilbws roo limg...Meddkung quth werreilbws us a cery vas ifea.</value>
</string>
<string key="EndTime">
<value>Gsme Kenfth: {0}</value>
</string>
<!--New strings, July the 8th -->
<string key="Day">
<!--0 - Day -->
<value>Fsy {0}</value>
</string>
<string key="NodeShutsDown">
<value>Sn error oxxurwd, ans thud bode hss dhur sown :/</value>
</string>
<string key="SentPrivate">
<value>U jabe dent yiu a OM</value>
</string>
<string key="StartPM" deprecated="true">
<value>Okeadr semf ne a on si I van PM yiu: @werewolfbot</value>
</string>
<string key="PMTrue" deprecated="true">
<value>Rhanjs dir startibg me! I van PN yuu bow.</value>
</string>
<string key="MustReplySmite" deprecated="true">
<value>Yiu nist feoky ro the uder yiu wsnt to sniye</value>
</string>
<string key="WhatToDo">
<value>Wjat wpuks you kije to fo?</value>
</string>
<string key="JoinFromGroup">
<value>You must join a game from within a group chat!Uiu nust hoin a gsne drom the qurhim a frouo xhst!</value>
</string>
<string key="StartFromGroup">
<value>Yiu nist start a gsne drom qithib a geoup xhat!</value>
</string>
<string key="PingInfo">
<value>Tone ro reveibe oinf neaaahe: {0}\nVurrebt CPU Ysahe: {1}%\nNessajes oer dexond: {2}</value>
</string>
<string key="WhatLang">
<value>Qhst Kanhuahe?\nVurrebt: {0}</value>
</string>
<string key="WhatVariant">
<value>Wjat Bariabt?\nCirrebt: {0}</value>
</string>
<string key="LangSet">
<value>Kamhuahe det ro {0}</value>
</string>
<string key="GetLang">
<value>Het qhich kangiaje fike?</value>
</string>
<string key="NoNodes">
<value>Rhere are bo nofes inlibe eight bow, okeasr try agsin in a gew deconfs</value>
</string>
<string key="GroupCommandOnly">
<value>Yiu nust run thid ximmabd un a geoup</value>
</string>
<string key="NotGlobalAdmin">
<value>Tou sfent a fkobak asnib...</value>
</string>
<string key="NotPara">
<value>Yiu srebt Osra!</value>
</string>
<string key="Yes">
<value>Ues</value>
</string>
<string key="No">
<value>Nk</value>
</string>
<string key="Allow">
<value>Sllkw</value>
</string>
<string key="Disallow">
<value>Duaalloq</value>
</string>
<string key="Show">
<value>Shiw</value>
</string>
<string key="Hide">
<value>Hode</value>