-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPVPSound_Localizations.lua
More file actions
1723 lines (1690 loc) · 104 KB
/
PVPSound_Localizations.lua
File metadata and controls
1723 lines (1690 loc) · 104 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
local addon, ns = ...
local PVPSound = { }
ns.PVPSound = PVPSound
PVPSoundOptions = { }
ns.PVPSoundOptions = PVPSoundOptions
local PS = { }
ns.PS = PS
local L = setmetatable({ }, {__index = function(t, k)
local v = tostring(k)
rawset(t, k, v)
return v
end })
ns.L = L
local Locale = GetLocale()
function PVPSound:English()
-- Messages
L["Streak1Male"] = "just drew his"
L["Streak1Female"] = "just drew her"
L["Streak2"] = "is on"
L["Streak3"] = "is on"
L["Streak4"] = "is"
L["Streak5"] = "is"
L["Streak6"] = "is"
L["Streak7"] = "committed a"
L["Streak8"] = "committed a"
L["Streak9"] = "committed a"
L["Streak10"] = "committed a"
L["'s"] = "'s"
L["was over by"] = "was over by"
L["You got killed by"] = "You got killed by"
-- Options
-- Sound Packs
L["Devil May Cry"] = "Devil May Cry"
L["Dota 2"] = "Dota 2"
L["Unreal Tournament 3"] = "Unreal Tournament 3"
L["Halo 4"] = "Halo 4"
L["Heroes of the Storm"] = "Heroes of the Storm"
L["Custom"] = "Custom"
-- Languages
L["Default"] = "Default"
L["English"] = "English"
L["German"] = "German"
L["Spanish"] = "Spanish"
L["French"] = "French"
L["Italian"] = "Italian"
L["Russian"] = "Russian"
-- Sound Pack Types
L["Axe"] = "Axe"
L["Bastion"] = "Bastion"
L["Glados"] = "Glados"
-- Sound Channels
L["Master"] = "Master"
L["Sound"] = "Sound"
L["Music"] = "Music"
L["Ambience"] = "Ambience"
-- Mode
L["PVP"] = "PVP"
L["PVE"] = "PVE"
L["PVP and PVE"] = "PVP and PVE"
-- Button Labels
L["Addon Language"] = "Addon Language"
L["Enable addon"] = "Enable addon"
L["Kill Sound Pack"] = "Kill Sound Pack"
L["Kill Sound Pack Language"] = "Kill Sound Pack Language"
L["Kill Sound Pack Type"] = "Kill Sound Pack Type"
L["BG Sound Pack"] = "BG Sound Pack"
L["BG Sound Pack Language"] = "BG Sound Pack Language"
L["Sound Channel"] = "Sound Channel"
L["Mode"] = "Mode"
L["Enable Kill Sounds"] = "Enable Kill Sounds"
L["Enable Multi Kill Sounds"] = "Enable Multi Kill Sounds"
L["Enable Execute Sounds"] = "Enable Execute Sounds"
L["Enable Payback Sounds"] = "Enable Payback Sounds"
L["Enable BG Sounds"] = "Enable BG Sounds"
-- Button Tooltips
L["Select a Language for the addon to use."] = "Select a Language for the addon to use."
L["Enables or disables the addon completely."] = "Enables or disables the addon completely."
L["Select a Sound Pack to use for kill sounds."] = "Select a Sound Pack to use for kill sounds."
L["Select a Sound Pack to use for battleground sounds."] = "Select a Sound Pack to use for battleground sounds."
L["Select a Language/Type from the Sound Pack to use for kill sounds."] = "Select a Language/Type from the Sound Pack to use for kill sounds."
L["Select a Language/Type from the Sound Pack to use for battleground sounds."] = "Select a Language/Type from the Sound Pack to use for battleground sounds."
L["Select a Sound Channel to use."] = "Select a Sound Channel to use."
L["Select a mode to use."] = "Select a mode to use."
L["Enables or disables Kill Sounds."] = "Enables or disables Kill Sounds."
L["Enables or disables Multi Kill Sounds."] = "Enables or disables Multi Kill Sounds."
L["Enables or Disables Execute sounds."] = "Enables or Disables Execute sounds."
-- Tab Labels
L["General"] = "General"
L["AV"] = "AV"
L["AB"] = "AB"
L["DG"] = "DG"
L["EOTS"] = "EOTS"
L["IOC"] = "IOC"
L["SM"] = "SM"
L["SOTA"] = "SOTA"
L["TOK"] = "TOK"
L["TBFG"] = "TBFG"
L["TP"] = "TP"
L["WSG"] = "WSG"
L["TB"] = "TB"
L["WG"] = "WG"
-- Frame Labels
L["Alterac Valley"] = "Alterac Valley"
L["Arathi Basin"] = "Arathi Basin"
L["Deepwind Gorge"] = "Deepwind Gorge"
L["Eye of the Storm"] = "Eye of the Storm"
L["Isle of Conquest"] = "Isle of Conquest"
L["Silvershard Mines"] = "Silvershard Mines"
L["Strand of the Ancients"] = "Strand of the Ancients"
L["Temple of Kotmogu"] = "Temple of Kotmogu"
L["The Battle for Gilneas"] = "The Battle for Gilneas"
L["Twin Peaks"] = "Twin Peaks"
L["Warsong Gulch"] = "Warsong Gulch"
L["Tol Barad"] = "Tol Barad"
L["Wintergrasp"] = "Wintergrasp"
L["Ashamane's Fall"] = "Ashamane's Fall"
L["Blade's Edge Arena"] = "Blade's Edge Arena"
L["Dalaran Arena"] = "Dalaran Arena"
L["Nagrand Arena"] = "Nagrand Arena"
L["Ruins of Lordaeron"] = "Ruins of Lordaeron"
L["The Tiger's Peak"] = "The Tiger's Peak"
L["Tol'viron Arena"] = "Tol'viron Arena"
-- Slash Options
L["[Enable]"] = "[Enable]"
L["[Disable]"] = "[Disable]"
L["Mode"] = "Mode"
L["[PVP]"] = "[PVP]"
L["[PVE]"] = "[PVE]"
L["[PVP and PVE]"] = "[PVP and PVE]"
L["[Emote]"] = "[Emote]"
L["[Chat Message]"] = "[Chat Message]"
L["[Master]"] = "[Master]"
L["[Sound]"] = "[Sound]"
L["[Music]"] = "[Music]"
L["[Ambience]"] = "[Ambience]"
L["[Unreal Tournament 3]"] = "[Unreal Tournament 3]"
L["[Custom]"] = "[Custom]"
L["[Default]"] = "[Default]"
L["[Deutsch]"] = "[Deutsch]"
L["[English]"] = "[English]"
L["[Spanish]"] = "[Spanish]"
L["[France]"] = "[France]"
L["[Italian]"] = "[Italian]"
L["[Russian]"] = "[Russian]"
L["Emotes"] = "Emotes"
L["Emote mode"] = "Emote mode"
L["Death messages"] = "Death messages"
L["Killing Blow sounds"] = "Killing Blow sounds"
L["Multi Killing sounds"] = "Multi Killing sounds"
L["Pet Killing Blows"] = "Pet Killing Blows"
L["Payback sounds"] = "Payback sounds"
L["Battleground sounds"] = "Battleground sounds"
L["Sound Effects"] = "Sound Effects"
L["Kill Sound Engine"] = "Kill Sound Engine"
L["Battleground Sound Engine"] = "Battleground Sound Engine"
L["Data Sharing"] = "Data Sharing"
L["Kill Scrolling Combat Text mode"] = "Kill Scrolling Combat Text mode"
L["Multi Kill Scrolling Combat Text"] = "Multi Kill Scrolling Combat Text"
L["Payback Scrolling Combat Text"] = "Payback Scrolling Combat Text"
L["Scrolling Combat Text Engine"] = "Scrolling Combat Text Engine"
L["Scrolling Combat Text frame name"] = "Scrolling Combat Text frame name"
L["Hide server names"] = "Hide server names"
L["Sound Pack"] = "Sound Pack"
L["Sound Pack language"] = "Sound Pack language"
L["Sound channel output"] = "Sound channel output"
L["Scrolling Combat Text and sound test"] = "Scrolling Combat Text and sound test"
L["Killing Counter and Sound Queue reset"] = "Killing Counter and Sound Queue reset"
L["Execute sounds"] = "Execute sounds"
L["Command list"] = "Command list"
L["Custom Sound Pack doesn't support that language!"] = "Custom Sound Pack doesn't support that language!"
L["Show status"] = "Show status"
L["Switch between PVP and PVE mode"] = "Switch between PVP and PVE mode"
L["Enables or Disables Emotes completely"] = "Enables or Disables Emotes completely"
L["Switch between Emote and Chat Message mode"] = "Switch between Emote and Chat Message mode"
L["Enables or Disables Death Messages"] = "Enables or Disables Death Messages"
L["Enables or Disables Killing Blow and Multi Killing sounds"] = "Enables or Disables Killing Blow and Multi Killing sounds"
L["Enables or Disables Payback Killing sounds"] = "Enables or Disables Payback Killing sounds"
L["Enables or Disables Multi Killing sounds"] = "Enables or Disables Multi Killing sounds"
L["Enables or Disables Pet Killing Blow sounds"] = "Enables or Disables Pet Killing Blow sounds"
L["Enables or Disables Battleground sounds"] = "Enables or Disables Battleground sounds"
L["Enables or Disables Sound Effects"] = "Enables or Disables Sound Effects"
L["Enables or Disables Sound Queue System usage in Killing Sounds"] = "Enables or Disables Sound Queue System usage in Killing Sounds"
L["Enables or Disables Sound Queue System usage in Battleground Sounds"] = "Enables or Disables Sound Queue System usage in Battleground Sounds"
L["Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members"] = "Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members"
L["Enables or Disables Kill Scrolling Combat Text usage"] = "Enables or Disables Kill Scrolling Combat Text usage"
L["Name of the output frame in the supported Scrolling Combat Text"] = "Name of the output frame in the supported Scrolling Combat Text"
L["Enables or Disables Scrolling Combat Text Queue System usage"] = "Enables or Disables Scrolling Combat Text Queue System usage"
L["Enables or Disables Multi Kill Scrolling Combat Text usage"] = "Enables or Disables Multi Kill Scrolling Combat Text usage"
L["Enables or Disables Payback and Retribution Scrolling Combat Text usage"] = "Enables or Disables Payback and Retribution Scrolling Combat Text usage"
L["Enables or Disables hiding the player's server name from Data Sharing and Death Messages"] = "Enables or Disables hiding the player's server name from Data Sharing and Death Messages"
L["Enables or Disables execute sounds"] = "Enables or Disables execute sounds"
L["Switch between sound channels ('master' 'sound' 'music' 'ambience')"] = "Switch between sound channels ('master' 'sound' 'music' 'ambience')"
L["Switch between Sound Packs ('ut3' 'custom')"] = "Switch between Sound Packs ('ut3' 'custom')"
L["Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"] = "Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"
L["Scrolling Combat Text and sound test"] = "Scrolling Combat Text and sound test"
L["Reset the counter of Killing Blows and the Payback-, Retibution-, Sound-, and SCT Queue System"] = "Reset the counter of Killing Blows and the Payback-, Retibution-, Sound-, and SCT Queue System"
L["Command help"] = "Command help"
L["Loaded. Type /ps help for options"] = "Loaded. Type /ps help for options"
L["Killing Count"] = "Killing Count"
end
function PVPSound:EnglishClient()
-- Battleground Names
L["Eye of the Storm"] = "Eye of the Storm"
-- Battleground Zone Names
L["Silverwing Hold"] = "Silverwing Hold"
L["Warsong Flag Room"] = "Warsong Flag Room" --in new WSG there are no subzones and Hord Flagroom is "Warsong lumber mill"
L["Dragonmaw Forge"] ="Dragonmaw Forge"
L["Wildhammer Stronghold"] = "Wildhammer Stronghold"
-- Battleground Events
-- WSG and TP
L["dropped"] = "dropped"
L["picked"] = "picked"
L["pickedA"] = "picked" --fix for Ru client
L["returned"] = "returned"
L["Alliance Flag has returned"] = "Alliance Flag has returned"
L["Horde Flag has returned"] = "Horde Flag has returned"
L["vulnerable"] = "vulnerable"
L["Tie game"] = "Tie game"
-- SM
L["captured"] = "captured"
-- EOTS
L["Alliance have captured"] = "has captured the flag"
L["Horde have captured"] = "has captured the flag"
-- classic AV, WSG, EOTS and AB winsounds -- I don really know which text used in each launguage, so test all of it
L["The Alliance is victorious"] = "The Alliance is victorious"
L["The Horde is victorious"] = "The Horde is victorious"
L["The Alliance is near victory"] = "The Alliance is near victory"
L["The Horde is near victory"] = "The Horde is near victory"
L["Alliance wins"] = "Alliance wins"
L["Alliance wins secondary"] = "Alliance wins"
L["Horde wins"] = "Horde wins"
L["Horde wins secondary"] = "Horde wins"
-- WG
L["workshop has been attacked by the Alliance"] = "has been attacked by the Alliance"
L["workshop has been captured by the Alliance"] = "has been captured by the Alliance"
L["workshop has been attacked by the Horde"] = "has been attacked by the Horde"
L["workshop has been captured by the Horde"] = "has been captured by the Horde"
L["Alliance has defended"] = "Alliance has defended"
L["Horde has defended"] = "Horde has defended"
end
function PVPSound:German()
L["General"] = "GerGeneral"
-- Messages
L["Streak1Male"] = "erzielte"
L["Streak1Female"] = "erzielte"
L["Streak2"] = "befindet sich im"
L["Streak3"] = "läuft"
L["Streak4"] = "ist"
L["Streak5"] = "ist"
L["Streak6"] = "ist"
L["Streak7"] = "verursacht ein"
L["Streak8"] = "verursacht ein"
L["Streak9"] = "verursacht ein"
L["Streak10"] = "verursacht ein"
L["'s"] = "'s" -- Requires localization
L["was over by"] = "was over by" -- Requires localization
L["You got killed by"] = "Du wurdest getötet von"
-- Options
L["[Ambience]"] = "[Umgebung]"
L["Battleground sounds"] = "Schlachtfeld Geräusche"
L["Battleground Sound Engine"] = "Schlachtfeld Geräusche Engine"
L["Sound channel output"] = "Sound Kanal Ausgang"
L["[Chat Message]"] = "[Chat Nachrichten]"
L["Command list"] = "Befehlsliste"
L["[Custom]"] = "[Individualisierung]"
L["Data Sharing"] = "Dateiverteilung"
L["Death messages"] = "Todesberichte"
L["[Default]"] = "[Standardeinstellung]"
L["[Deutsch]"] = "[Deutsch]"
L["[Disable]"] = "[Deaktivieren]"
L["[Emote]"] = "[Emotion]"
L["Emote mode"] = "Emotionen Modus"
L["Emotes"] = "Emotionen"
L["[Enable]"] = "[Aktivieren]"
L["[English]"] = "[English]"
L["Scrolling Combat Text frame name"] = "Scrolling Combat Text frame name" -- Requires localization
L["[France]"] = "[France]"
L["[Russian]"] = "[Russian]" -- Requires localization
L["Custom Sound Pack doesn't support that language!"] = "Custom Sound Pack doesn't support that language!" -- Requires localization
L["Enables or Disables Battleground sounds"] = "Schlachtfeldgeräusche aktivieren oder deaktivieren"
L["Enables or Disables Sound Queue System usage in Battleground Sounds"] = "aktivieren oder deaktivieren des Sound-Abfolge-System Benutzung in Schlachtfeldern"
L["Switch between sound channels ('master' 'sound' 'music' 'ambience')"] = "wechsle zwischen Sound-Kanälen ('meister' 'sound' 'musik' 'umgebung')"
L["Command help"] = "Befehl Hilfe"
L["Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members"] = "aktiviere oder deaktiviere Serien- und Todesdatenteilung und Erhalt unter Schlachtzug/Gruppen/Schlachtfeld Mitgliedern"
L["Enables or Disables Death Messages"] = "aktiviere oder deaktiviere Todesberichte"
L["Enables or Disables Emotes completely"] = "aktiviere oder deaktiviere Emotionen komplett"
L["Switch between Emote and Chat Message mode"] = "wechsle zwischen Emotionen und Chat-Nachrichten Modus"
L["Name of the output frame in the supported Scrolling Combat Text"] = "Name of the output frame in the supported Scrolling Combat Text" -- Requires localization
L["Enables or Disables hiding the player's server name from Data Sharing and Death Messages"] = "aktiviere oder deaktiviere das Verbergen des Spieler's Servernamens von der Datenteilung und den Todesberichten"
L["Loaded. Type /ps help for options"] = "Aktiviert. Tippe /ps für Hilfe."
L["Enables or Disables Kill Scrolling Combat Text usage"] = "aktiviere oder deaktiviere die Tötungs- Scrolling Combat Text -benutzung"
L["Enables or Disables Killing Blow and Multi Killing sounds"] = "aktiviere oder deaktiviere die Todesstoß- und Mehrfachtodesstoßsounds"
L["Enables or Disables Sound Queue System usage in Killing Sounds"] = "aktiviere oder deaktiviere Sound-Reihnfolge-Systembenutzung bei Tötungssounds"
L["Switch between PVP and PVE mode"] = "wechsle zwischen PvP und PvE Modus"
L["Enables or Disables Multi Kill Scrolling Combat Text usage"] = "aktiviere oder deaktiviere Mehrfachtötungs- Scrolling Combat Text -benutzung"
L["Enables or Disables Multi Killing sounds"] = "aktiviere oder deaktiviere Mehrfachtötungssounds"
L["Enables or Disables Pet Killing Blow sounds"] = "Enables or Disables Pet Killing Blow sounds" -- Requires localization
L["Enables or Disables Payback and Retribution Scrolling Combat Text usage"] = "aktiviere oder deaktiviere Heimzahlen- und Vergeltungs- Scrolling Combat Text -benutzung"
L["Enables or Disables Payback Killing sounds"] = "aktiviere oder deaktiviere Heimzahlen Tötungssounds"
L["Reset the counter of Killing Blows and the Payback-, Retibution-, Sound-, and SCT Queue System"] = "setze den Zähler für Todesstöß- Heimzahlen- Vergeltungs- Sound- und SCT -Reihnfolge-System zurück"
L["Enables or Disables Scrolling Combat Text Queue System usage"] = "aktiviere oder deaktiviere die Scrolling Combat Text -Reihnfolge-Systembenutzung"
L["Enables or Disables Sound Effects"] = "aktiviere oder deaktiviere Soundeffekte"
L["Switch between Sound Packs ('ut3' 'custom')"] = "wechsle zwischen Soundpaketen ('ut3' 'custom')"
L["Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"] = "wechsle zwischen Soundpaketsprachen ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"
L["Show status"] = "zeige Status"
L["Scrolling Combat Text and sound test"] = "Scrolling Combat Text- und Soundtest"
L["Hide server names"] = "Verstecke Servernamen"
L["[Italian]"] = "[Italian]"
L["Killing Count"] = "Tötungsanzahl"
L["Kill Scrolling Combat Text mode"] = "Tötungs Scrolling Combat Text Modus"
L["Killing Blow sounds"] = "Todesstoß Sound"
L["Kill Sound Engine"] = "Todesstoß Geräusche Engine"
L["[Master]"] = "[Meister]"
L["Mode"] = "Modus"
L["Multi Kill Scrolling Combat Text"] = "Multi Kill Scrolling Combat Text"
L["Multi Killing sounds"] = "Mehrfachtodesstoß Sounds"
L["[Music]"] = "[Musik]"
L["Payback Scrolling Combat Text"] = "Heimzahlen Scrolling Combat Text"
L["Payback sounds"] = "Payback sounds" -- Requires localization
L["Pet Killing Blows"] = "Pet Killing Blows" -- Requires localization
L["[PVE]"] = "[PVE]"
L["[PVP]"] = "[PVP]"
L["Killing Counter and Sound Queue reset"] = "Tötungszähler und Soundreihenfolge zurücksetzen"
L["Scrolling Combat Text Engine"] = "Scrolling Combat Text Engine"
L["[Sound]"] = "[Sound]"
L["Sound Effects"] = "Soundeffekte"
L["Sound Pack"] = "Soundpaket"
L["Sound Pack language"] = "Soundpaketsprache"
L["[Spanish]"] = "[Spanish]"
L["Scrolling Combat Text and sound test"] = "Scrolling Combat Text and sound test" -- Requires localization
L["[Unreal Tournament 3]"] = "[Unreal Tournament 3]"
--need localization
L["[PVP and PVE]"] = "[PVP and PVE]"
L["Execute sounds"] = "Execute sounds"
L["Enables or Disables execute sounds"] = "Enables or Disables execute sounds"
end
function PVPSound:GermanClient()
-- Battleground Names
L["Eye of the Storm"] = "Auge des Sturms"
-- Battleground Zone Names
L["Silverwing Hold"] = "Silverwing Hold"
L["Warsong Flag Room"] = "Warsong Flag Room"
L["Dragonmaw Forge"] ="Dragonmaw Forge"
L["Wildhammer Stronghold"] = "Wildhammer Stronghold"
-- Battleground Events
-- WSG and TP
L["dropped"] = "fallen lassen"
L["picked"] = "aufgenommen"
L["pickedA"] = "aufgenommen"--fix for Ru client
L["returned"] = "zurückgebracht"
L["Alliance Flag has returned"] = "Alliance Flag has returned" -- Requires localization
L["Horde Flag has returned"] = "Horde Flag has returned" -- Requires localization
L["vulnerable"] = "Verletzungen"
L["Tie game"] = "Tie game" -- Requires localization
-- SM
L["captured"] = "erobert"
-- EOTS
L["Alliance have captured"] = "Die Allianz hat die Flagge erobert"
L["Horde have captured"] = "Die Horde hat die Flagge erobert"
-- classic AV, WSG, EOTS and AB winsounds
L["The Alliance is victorious"] = "The Alliance is victorious"
L["The Horde is victorious"] = "The Horde is victorious"
L["Alliance wins"] = "Die Allianz siegt"
L["Alliance wins secondary"] = "Die Allianz gewinnt"
L["Horde wins"] = "Die Horde siegt"
L["Horde wins secondary"] = "Die Horde gewinnt"
-- WG
L["workshop has been attacked by the Alliance"] = "wurde von der Allianz angegriffen"
L["workshop has been captured by the Alliance"] = "wurde von der Allianz erobert"
L["Alliance has defended"] = "Die Allianz verteidigte"
L["workshop has been attacked by the Horde"] = "wurde von der Horde angegriffen"
L["workshop has been captured by the Horde"] = "wurde von der Horde erobert"
L["Horde has defended"] = "Die Horde verteidigte"
end
function PVPSound:Spanish()
L["General"] = "SpaGeneral"
-- Messages
L["Streak1Male"] = "ha derramando la"
L["Streak1Female"] = "ha derramando la"
L["Streak2"] = "está en una"
L["Streak3"] = "está en un"
L["Streak4"] = "está"
L["Streak5"] = "es"
L["Streak6"] = "es"
L["Streak7"] = "está en una"
L["Streak8"] = "está en una"
L["Streak9"] = "está en una"
L["Streak10"] = "está en una"
L["'s"] = "'s"
L["was over by"] = "ha sido terminada por"
L["You got killed by"] = "Te ha matado"
-- Options
L["[Ambience]"] = "[Ambiente]"
L["Battleground sounds"] = "Sonidos del Campo de Batalla"
L["Sound channel output"] = "Salida del Canal de Sonido"
L["[Chat Message]"] = "[Mensaje de chat]"
L["[Disable]"] = "[Desactivado]"
L["[Emote]"] = "[Emociones]"
L["Emote mode"] = "[Modo de Emociones]"
L["Emotes"] = "Emociones"
L["[Enable]"] = "[Activado]"
L["Killing Blow sounds"] = "Sonidos de Asesinato"
L["[Master]"] = "[Principal]"
L["Mode"] = "Modo"
L["Multi Killing sounds"] = "Sonidos de muertes multilpes"
L["[Music]"] = "[Música]"
L["[PVE]"] = "[PVE]"
L["[PVP]"] = "[PVP]"
L["Payback sounds"] = "Sonidos de Retribución"
L["Killing Counter and Sound Queue reset"] = "Reiniciar el Contador de Muertes"
L["[Sound]"] = "[Sonido]"
L["[Unreal Tournament 3]"] = "[Unreal Tournament 3]"
L["[Custom]"] = "[Personalizado]"
L["[Default]"] = "[Por defecto]"
L["[Deutsch]"] = "[Alemán]"
L["[English]"] = "[Inglés]"
L["[Spanish]"] = "[Español]"
L["[France]"] = "[Francia]"
L["[Italian]"] = "[Italiano]"
L["[Russian]"] = "[Ruso]"
L["Kill Sound Engine"] = "Motor de sonidos de muerte"
L["Battleground Sound Engine"] = "Motor de sonido en campos de batalla"
L["Sound Effects"] = "Efectos de sonido"
L["Data Sharing"] = "Compartición de datos"
L["Kill Scrolling Combat Text mode"] = "Modo de SCT de muertes"
L["Scrolling Combat Text frame name"] = "Marco del texto de combate"
L["Scrolling Combat Text Engine"] = "Motor de SCT"
L["Multi Kill Scrolling Combat Text"] = "Multimuerte de SCT"
L["Payback Scrolling Combat Text"] = "Retribución en SCT"
L["Pet Killing Blows"] = "Sonidos de muerte de la mascota"
L["Hide server names"] = "Ocultar nombres de los servidores"
L["Sound Pack"] = "Pack de sonido"
L["Sound Pack language"] = "Lenguaje del pack de sonido"
L["Scrolling Combat Text and sound test"] = "Probando Sonido"
L["Command list"] = "Lista de Comandos"
L["Custom Sound Pack doesn't support that language!"] = "El pack de sonidos personalizado no soporta ese lenguaje!"
L["Enables or Disables Battleground sounds"] = "Activar o Desactivar Sonidos del Campo de Batalla"
L["Enables or Disables Sound Effects"] = "Activa o desactiva los efectos de sonido"
L["Switch between sound channels ('master' 'sound' 'music' 'ambience')"] = "Cambiar Canales de sonido entre ('Principal' 'sonido' 'música' 'ambiente'"
L["Command help"] = "Ayuda de Comando"
L["Enables or Disables Death Messages"] = "Activa o desactiva los mensajes de muertes"
L["Enables or Disables Emotes completely"] = "Activar o Desactivar las emociones Completamente"
L["Switch between Emote and Chat Message mode"] = "Cambiar entre Emoción y modo de mensaje de conversación"
L["Loaded. Type /ps help for options"] = "Activado. Escribe /ps ayuda para opciones."
L["Enables or Disables Killing Blow and Multi Killing sounds"] = "Activar o Desactivar sonidos de Asesinato y muerte múltiple"
L["Switch between PVP and PVE mode"] = "Cambiar entre PVP y PVE"
L["Enables or Disables Multi Killing sounds"] = "Activar o desactivar sonidos de muertes multiples"
L["Enables or Disables Pet Killing Blow sounds"] = "Activa o desactiva sonidos de muerte de la mascota"
L["Enables or Disables Payback Killing sounds"] = "Activa o desactiva los sonidos de retribución"
L["Reset the counter of Killing Blows and the Payback-, Retibution-, Sound-, and SCT Queue System"] = "Reiniciar el contador de asesinatos"
L["Enables or Disables Sound Queue System usage in Killing Sounds"] = "Activa o desactiva el sistema de cola de sonidos de muerte"
L["Enables or Disables Sound Queue System usage in Battleground Sounds"] = "Activa o desactiva la cola de sonidos de SCT en los campos de batalla"
L["Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members"] = "Activa o desactiva la compartición de datos de muertes entre el grupo/banda/campo de batalla"
L["Enables or Disables Kill Scrolling Combat Text usage"] = "Activa o desactiva las muertes en el texto de combate"
L["Name of the output frame in the supported Scrolling Combat Text"] = "Nombre de la letra en el texto de combate"
L["Enables or Disables Scrolling Combat Text Queue System usage"] = "Activa o desactiva el uso de SCT"
L["Enables or Disables Multi Kill Scrolling Combat Text usage"] = "Activa o desactiva el uso de multimuertes en el texto de combate de SCT"
L["Enables or Disables Payback and Retribution Scrolling Combat Text usage"] = "Activa o desactiva el uso de retribución en el texto de combate"
L["Enables or Disables hiding the player's server name from Data Sharing and Death Messages"] = "Activa o desactiva el reino de los jugadores en la compartición de datos"
L["Switch between Sound Packs ('ut3' 'custom')"] = "Cambia entre los packs de sonido('ut3' 'custom')"
L["Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"] = "Cambia entre el idioma de los packs de sonido ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"
L["Show status"] = "Mostrar estado"
L["Scrolling Combat Text and sound test"] = "Prueba de sonido"
L["Killing Count"] = "Conteo de muertes"
L["Death messages"] = "Mensajes de muertes"
--need localization
L["[PVP and PVE]"] = "[PVP and PVE]"
L["Execute sounds"] = "Execute sounds"
L["Enables or Disables execute sounds"] = "Enables or Disables execute sounds"
end
function PVPSound:SpanishClient()
-- Battleground Names
L["Eye of the Storm"] = "Ojo de la Tormenta"
-- Battleground Zone Names
L["Silverwing Hold"] = "Silverwing Hold"
L["Warsong Flag Room"] = "Warsong Flag Room"
L["Dragonmaw Forge"] ="Dragonmaw Forge"
L["Wildhammer Stronghold"] = "Wildhammer Stronghold"
-- Battleground Events
-- WSG and TP
L["dropped"] = "arrojada"
L["picked"] = "recogida"
L["pickedA"] = "recogida" --fix for Ru client
L["returned"] = "regresada"
L["Alliance Flag has returned"] = "La bandera de la alianza ha sido devuelta"
L["Horde Flag has returned"] = "La bandera de la horda ha sido devuelta"
L["vulnerable"] = "vulnerables"
L["Tie game"] = "empate"
-- SM
L["captured"] = "capturada"
-- EOTS
L["Alliance have captured"] = "La Alianza ha capturado la bandera"
L["Horde have captured"] = "La Horda ha capturado la bandera"
-- classic AV, WSG, EOTS and AB winsounds
L["The Alliance is victorious"] = "The Alliance is victorious"
L["The Horde is victorious"] = "The Horde is victorious"
L["Alliance wins"] = "La Alianza gana"
L["Alliance wins secondary"] = "La Alianza gana"
L["Horde wins"] = "La Horda gana"
L["Horde wins secondary"] = "La Horda gana"
-- WG
L["workshop has been attacked by the Alliance"] = "El Taller ha sido atacado por la alianza"
L["workshop has been captured by the Alliance"] = "El Taller ha sido capturado por la alianza"
L["Alliance has defended"] = "La Allianza ha defendido"
L["workshop has been attacked by the Horde"] = "El Taller ha sido atacado por la horda"
L["workshop has been captured by the Horde"] = "El Taller ha sido capturado por la horda"
L["Horde has defended"] = "La horda ha defendido"
end
function PVPSound:LatinAmericanSpanish()
L["General"] = "LaSpaGeneral"
-- Messages
L["Streak1Male"] = "ha derramando la"
L["Streak1Female"] = "ha derramando la"
L["Streak2"] = "está en una"
L["Streak3"] = "está en un"
L["Streak4"] = "está"
L["Streak5"] = "es"
L["Streak6"] = "es"
L["Streak7"] = "está en una"
L["Streak8"] = "está en una"
L["Streak9"] = "está en una"
L["Streak10"] = "está en una"
L["'s"] = "'s"
L["was over by"] = "ha sido terminada por"
L["You got killed by"] = "Te ha matado"
-- Options
L["[Ambience]"] = "[Ambiente]"
L["Battleground sounds"] = "Sonidos del Campo de Batalla"
L["Sound channel output"] = "Salida del Canal de Sonido"
L["[Chat Message]"] = "[Mensaje de chat]"
L["[Disable]"] = "[Desactivado]"
L["[Emote]"] = "[Emociones]"
L["Emote mode"] = "[Modo de Emociones]"
L["Emotes"] = "Emociones"
L["[Enable]"] = "[Activado]"
L["Killing Blow sounds"] = "Sonidos de Asesinato"
L["[Master]"] = "[Principal]"
L["Mode"] = "Modo"
L["Multi Killing sounds"] = "Sonidos de muertes multilpes"
L["[Music]"] = "[Música]"
L["[PVE]"] = "[PVE]"
L["[PVP]"] = "[PVP]"
L["Payback sounds"] = "Sonidos de Retribución"
L["Killing Counter and Sound Queue reset"] = "Reiniciar el Contador de Muertes"
L["[Sound]"] = "[Sonido]"
L["[Unreal Tournament 3]"] = "[Unreal Tournament 3]"
L["[Custom]"] = "[Personalizado]"
L["[Default]"] = "[Por defecto]"
L["[Deutsch]"] = "[Alemán]"
L["[English]"] = "[Inglés]"
L["[Spanish]"] = "[Español]"
L["[France]"] = "[Francia]"
L["[Italian]"] = "[Italiano]"
L["[Russian]"] = "[Ruso]"
L["Kill Sound Engine"] = "Motor de sonidos de muerte"
L["Battleground Sound Engine"] = "Motor de sonido en campos de batalla"
L["Sound Effects"] = "Efectos de sonido"
L["Data Sharing"] = "Compartición de datos"
L["Kill Scrolling Combat Text mode"] = "Modo de SCT de muertes"
L["Scrolling Combat Text frame name"] = "Marco del texto de combate"
L["Scrolling Combat Text Engine"] = "Motor de SCT"
L["Multi Kill Scrolling Combat Text"] = "Multimuerte de SCT"
L["Payback Scrolling Combat Text"] = "Retribución en SCT"
L["Pet Killing Blows"] = "Sonidos de muerte de la mascota"
L["Hide server names"] = "Ocultar nombres de los servidores"
L["Sound Pack"] = "Pack de sonido"
L["Sound Pack language"] = "Lenguaje del pack de sonido"
L["Scrolling Combat Text and sound test"] = "Probando Sonido"
L["Command list"] = "Lista de Comandos"
L["Custom Sound Pack doesn't support that language!"] = "¡El pack de sonidos personalizado no soporta ese lenguaje!"
L["Enables or Disables Battleground sounds"] = "Activar o Desactivar Sonidos del Campo de Batalla"
L["Enables or Disables Sound Effects"] = "Activa o desactiva los efectos de sonido"
L["Switch between sound channels ('master' 'sound' 'music' 'ambience')"] = "Cambiar Canales de sonido entre ('Principal' 'sonido' 'música' 'ambiente'"
L["Command help"] = "Ayuda de Comando"
L["Enables or Disables Death Messages"] = "Activa o desactiva los mensajes de muertes"
L["Enables or Disables Emotes completely"] = "Activar o Desactivar las emociones Completamente"
L["Switch between Emote and Chat Message mode"] = "Cambiar entre Emoción y modo de mensaje de conversación"
L["Loaded. Type /ps help for options"] = "Activado. Escribe /ps ayuda para opciones."
L["Enables or Disables Killing Blow and Multi Killing sounds"] = "Activar o Desactivar sonidos de Asesinato y muerte múltiple"
L["Switch between PVP and PVE mode"] = "Cambiar entre PVP y PVE"
L["Enables or Disables Multi Killing sounds"] = "Activar o desactivar sonidos de muertes multiples"
L["Enables or Disables Pet Killing Blow sounds"] = "Activa o desactiva sonidos de muerte de la mascota"
L["Enables or Disables Payback Killing sounds"] = "Activa o desactiva los sonidos de retribución"
L["Reset the counter of Killing Blows and the Payback-, Retibution-, Sound-, and SCT Queue System"] = "Reiniciar el contador de asesinatos"
L["Enables or Disables Sound Queue System usage in Killing Sounds"] = "Activa o desactiva el sistema de cola de sonidos de muerte"
L["Enables or Disables Sound Queue System usage in Battleground Sounds"] = "Activa o desactiva la cola de sonidos de SCT en los campos de batalla"
L["Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members"] = "Activa o desactiva la compartición de datos de muertes entre el grupo/banda/campo de batalla"
L["Enables or Disables Kill Scrolling Combat Text usage"] = "Activa o desactiva las muertes en el texto de combate"
L["Name of the output frame in the supported Scrolling Combat Text"] = "Nombre de la letra en el texto de combate"
L["Enables or Disables Scrolling Combat Text Queue System usage"] = "Activa o desactiva el uso de SCT"
L["Enables or Disables Multi Kill Scrolling Combat Text usage"] = "Activa o desactiva el uso de multimuertes en el texto de combate de SCT"
L["Enables or Disables Payback and Retribution Scrolling Combat Text usage"] = "Activa o desactiva el uso de retribución en el texto de combate"
L["Enables or Disables hiding the player's server name from Data Sharing and Death Messages"] = "Activa o desactiva el reino de los jugadores en la compartición de datos"
L["Switch between Sound Packs ('ut3' 'custom')"] = "Cambia entre los packs de sonido('ut3' 'custom')"
L["Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"] = "Cambia entre el idioma de los packs de sonido ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"
L["Show status"] = "Mostrar estado"
L["Scrolling Combat Text and sound test"] = "Prueba de sonido"
L["Killing Count"] = "Conteo de muertes"
L["Death messages"] = "Mensajes de muertes"
--need localization
L["[PVP and PVE]"] = "[PVP and PVE]"
L["Execute sounds"] = "Execute sounds"
L["Enables or Disables execute sounds"] = "Enables or Disables execute sounds"
end
function PVPSound:LatinAmericanSpanishClient()
-- Battleground Names
L["Eye of the Storm"] = "Ojo de la Tormenta"
-- Battleground Zone Names
L["Silverwing Hold"] = "Silverwing Hold"
L["Warsong Flag Room"] = "Warsong Flag Room"
L["Dragonmaw Forge"] ="Dragonmaw Forge"
L["Wildhammer Stronghold"] = "Wildhammer Stronghold"
-- Battleground Events
-- WSG and TP
L["dropped"] = "arrojada"
L["picked"] = "recogida"
L["pickedA"] = "recogida" --fix for Ru client
L["returned"] = "regresada"
L["Alliance Flag has returned"] = "La bandera de la alianza ha sido devuelta"
L["Horde Flag has returned"] = "La bandera de la horda ha sido devuelta"
L["vulnerable"] = "vulnerables"
L["Tie game"] = "empate"
-- SM
L["captured"] = "capturada"
-- EOTS
L["Alliance have captured"] = "La Alianza ha capturado la bandera"
L["Horde have captured"] = "La Horda ha capturado la bandera"
-- classic AV, WSG, EOTS and AB winsounds
L["The Alliance is victorious"] = "The Alliance is victorious"
L["The Horde is victorious"] = "The Horde is victorious"
L["Alliance wins"] = "La Alianza gana"
L["Alliance wins secondary"] = "La Alianza gana"
L["Horde wins"] = "La Horda gana"
L["Horde wins secondary"] = "La Horda gana"
-- WG
L["workshop has been attacked by the Alliance"] = "El Taller ha sido atacado por la alianza"
L["workshop has been captured by the Alliance"] = "El Taller ha sido capturado por la alianza"
L["Alliance has defended"] = "La Allianza ha defendido"
L["workshop has been attacked by the Horde"] = "El Taller ha sido atacado por la horda"
L["workshop has been captured by the Horde"] = "El Taller ha sido capturado por la horda"
L["Horde has defended"] = "La horda ha defendido"
end
function PVPSound:French()
L["General"] = "FraGeneral"
-- Messages
L["Streak1Male"] = "a versé le"
L["Streak1Female"] = "a versé le"
L["Streak2"] = "fait une"
L["Streak3"] = "se"
L["Streak4"] = "est"
L["Streak5"] = "est"
L["Streak6"] = "est"
L["Streak7"] = "fait un"
L["Streak8"] = "fait un"
L["Streak9"] = "fait un"
L["Streak10"] = "fait un"
L["'s"] = "'s" -- Requires localization
L["was over by"] = "was over by" -- Requires localization
L["You got killed by"] = "Vous avez été tué par"
-- Options
L["[Ambience]"] = "[Ambiance]"
L["Battleground sounds"] = "Son du champ de bataille"
L["Sound channel output"] = "Canal de sortie son"
L["[Chat Message]"] = "[Chat Message]"
L["[Disable]"] = "[désactivé]"
L["[Emote]"] = "[Emote]"
L["Emote mode"] = "Mode emote"
L["Emotes"] = "Emotes"
L["[Enable]"] = "[Activé]"
L["Killing Blow sounds"] = "Sons du Killing Blow"
L["[Master]"] = "[Maitre]"
L["Mode"] = "Mode"
L["Multi Killing sounds"] = "Son des morts multiples"
L["[Music]"] = "[Musique]"
L["[PVE]"] = "[PVE]"
L["[PVP]"] = "[PVP]"
L["Payback sounds"] = "Sons Payback "
L["Killing Counter and Sound Queue reset"] = "Décompte mort et queue sons reset"
L["[Sound]"] = "[Son]"
L["[Unreal Tournament 3]"] = "[Unreal Tournament 3]" -- Requires localization
L["[Custom]"] = "[Custom]" -- Requires localization
L["[Default]"] = "[Default]" -- Requires localization
L["[Deutsch]"] = "[Deutsch]" -- Requires localization
L["[English]"] = "[English]" -- Requires localization
L["[Spanish]"] = "[Spanish]" -- Requires localization
L["[France]"] = "[France]" -- Requires localization
L["[Italian]"] = "[Italian]" -- Requires localization
L["[Russian]"] = "[Russian]" -- Requires localization
L["Kill Sound Engine"] = "Kill Sound Engine" -- Requires localization
L["Battleground Sound Engine"] = "Battleground Sound Engine" -- Requires localization
L["Sound Effects"] = "Sound Effects" -- Requires localization
L["Data Sharing"] = "Data Sharing" -- Requires localization
L["Kill Scrolling Combat Text mode"] = "Kill Scrolling Combat Text mode" -- Requires localization
L["Scrolling Combat Text frame name"] = "Scrolling Combat Text frame name" -- Requires localization
L["Scrolling Combat Text Engine"] = "Scrolling Combat Text Engine" -- Requires localization
L["Multi Kill Scrolling Combat Text"] = "Multi Kill Scrolling Combat Text" -- Requires localization
L["Payback Scrolling Combat Text"] = "Payback Scrolling Combat Text" -- Requires localization
L["Pet Killing Blows"] = "Pet Killing Blows" -- Requires localization
L["Hide server names"] = "Hide server names" -- Requires localization
L["Sound Pack"] = "Sound Pack" -- Requires localization
L["Sound Pack language"] = "Sound Pack language" -- Requires localization
L["Scrolling Combat Text and sound test"] = "Tester les sons"
L["Command list"] = "Liste de commandes"
L["Custom Sound Pack doesn't support that language!"] = "Custom Sound Pack doesn't support that language!" -- Requires localization
L["Enables or Disables Battleground sounds"] = "Activer ou désactiver les sons de champ de bataille"
L["Enables or Disables Sound Effects"] = "Enables or Disables Sound Effects" -- Requires localization
L["Switch between sound channels ('master' 'sound' 'music' 'ambience')"] = "Switch entre le canaux de sons ('master' 'son' 'musique' 'ambiance')"
L["Command help"] = "Commande d'aide"
L["Enables or Disables Death Messages"] = "Activer ou désactiver les messages de morts dans les champs de batailles"
L["Enables or Disables Emotes completely"] = "Activer ou désactiver les emotes completement"
L["Switch between Emote and Chat Message mode"] = "Switch entre le mode emote ou Chat messages"
L["Loaded. Type /ps help for options"] = "Activer. Taper /ps help pour les options"
L["Enables or Disables Killing Blow and Multi Killing sounds"] = "Activer ou désactiver les sons Killing Blow et Multi Killing"
L["Switch between PVP and PVE mode"] = "Switch entre le mode PVP et PVE"
L["Enables or Disables Multi Killing sounds"] = "Activer ou désactiver les son des morts multiples"
L["Enables or Disables Pet Killing Blow sounds"] = "Enables or Disables Pet Killing Blow sounds" -- Requires localization
L["Enables or Disables Payback Killing sounds"] = "Activer ou désactiver les sons des morts Payback"
L["Reset the counter of Killing Blows and the Payback-, Retibution-, Sound-, and SCT Queue System"] = "Mise a zéro du décompte des Killing Blows et les son dans la liste d'attente"
L["Enables or Disables Sound Queue System usage in Killing Sounds"] = "Enables or Disables Sound Queue System usage in Killing Sounds" -- Requires localization
L["Enables or Disables Sound Queue System usage in Battleground Sounds"] = "Enables or Disables Sound Queue System usage in Battleground Sounds" -- Requires localization
L["Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members"] = "Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members" -- Requires localization
L["Enables or Disables Kill Scrolling Combat Text usage"] = "Enables or Disables Kill Scrolling Combat Text usage" -- Requires localization
L["Name of the output frame in the supported Scrolling Combat Text"] = "Name of the output frame in the supported Scrolling Combat Text" -- Requires localization
L["Enables or Disables Scrolling Combat Text Queue System usage"] = "Enables or Disables Scrolling Combat Text Queue System usage" -- Requires localization
L["Enables or Disables Multi Kill Scrolling Combat Text usage"] = "Enables or Disables Multi Kill Scrolling Combat Text usage" -- Requires localization
L["Enables or Disables Payback and Retribution Scrolling Combat Text usage"] = "Enables or Disables Payback and Retribution Scrolling Combat Text usage" -- Requires localization
L["Enables or Disables hiding the player's server name from Data Sharing and Death Messages"] = "Enables or Disables hiding the player's server name from Data Sharing and Death Messages" -- Requires localization
L["Switch between Sound Packs ('ut3' 'custom')"] = "Switch between Sound Packs ('ut3' 'custom')" -- Requires localization
L["Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"] = "Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')" -- Requires localization
L["Show status"] = "Montrer les status"
L["Scrolling Combat Text and sound test"] = "Tester le son"
L["Killing Count"] = "Décompte des morts"
L["Death messages"] = "Messages de morts"
--need localization
L["[PVP and PVE]"] = "[PVP and PVE]"
L["Execute sounds"] = "Execute sounds"
L["Enables or Disables execute sounds"] = "Enables or Disables execute sounds"
end
function PVPSound:FrenchClient()
-- Battleground Names
L["Eye of the Storm"] = "L'Œil du cyclone"
-- Battleground Zone Names
L["Silverwing Hold"] = "Silverwing Hold"
L["Warsong Flag Room"] = "Warsong Flag Room"
L["Dragonmaw Forge"] ="Dragonmaw Forge"
L["Wildhammer Stronghold"] = "Wildhammer Stronghold"
-- Battleground Events
-- WSG and TP
L["dropped"] = "chuté"
L["picked"] = "pris"
L["pickedA"] = "pris" --fix for Ru client
L["returned"] = "retourné"
L["Alliance Flag has returned"] = "Alliance Flag has returned" -- Requires localization
L["Horde Flag has returned"] = "Horde Flag has returned" -- Requires localization
L["vulnerable"] = "vulnérable"
L["Tie game"] = "Tie game" -- Requires localization
-- SM
L["captured"] = "capturé"
-- EOTS
L["Alliance have captured"] = "L'Alliance a capturé"
L["Horde have captured"] = "La Horde a capturé"
-- classic AV, WSG, EOTS and AB winsounds
L["The Alliance is victorious"] = "The Alliance is victorious"
L["The Horde is victorious"] = "The Horde is victorious"
L["Alliance wins"] = "L' Alliance gagne"
L["Alliance wins secondary"] = "L' Alliance gagne"
L["Horde wins"] = "La Horde gagne"
L["Horde wins secondary"] = "La Horde gagne"
-- WG
L["workshop has been attacked by the Alliance"] = "L'atelier a été attaqué par l'Alliance"
L["workshop has been captured by the Alliance"] = "L'atelier a été capturé par l'Alliance"
L["Alliance has defended"] = "L’Alliance a défendu"
L["workshop has been attacked by the Horde"] = "L'atelier a été attaqué par la Horde"
L["workshop has been captured by the Horde"] = "L'atelier a été capturé par la Horde"
L["Horde has defended"] = "La Horde a défendu"
end
function PVPSound:Italian()
L["General"] = "ItaGeneral"
-- Messages
L["Streak1Male"] = "ha"
L["Streak1Female"] = "ha"
L["Streak2"] = "ha un"
L["Streak3"] = "č"
L["Streak4"] = "sta"
L["Streak5"] = "č"
L["Streak6"] = "č"
L["Streak7"] = "ta facendo un"
L["Streak8"] = "ta facendo un"
L["Streak9"] = "ta facendo un"
L["Streak10"] = "ta facendo un"
L["'s"] = "'s" -- Requires localization
L["was over by"] = "was over by" -- Requires localization
L["You got killed by"] = "Sei stato ucciso da"
-- Options
L["[Ambience]"] = "[Ambience]" -- Requires localization
L["Battleground sounds"] = "Battleground sounds" -- Requires localization
L["Sound channel output"] = "Sound channel output" -- Requires localization
L["[Chat Message]"] = "[Chat Message]" -- Requires localization
L["[Disable]"] = "[Disable]" -- Requires localization
L["[Emote]"] = "[Emote]" -- Requires localization
L["Emote mode"] = "Emote mode" -- Requires localization
L["Emotes"] = "Emotes" -- Requires localization
L["[Enable]"] = "[Enable]" -- Requires localization
L["Killing Blow sounds"] = "Killing Blow sounds" -- Requires localization
L["[Master]"] = "[Master]" -- Requires localization
L["Mode"] = "Mode" -- Requires localization
L["Multi Killing sounds"] = "Multi Killing sounds" -- Requires localization
L["[Music]"] = "[Music]" -- Requires localization
L["[PVE]"] = "[PVE]" -- Requires localization
L["[PVP]"] = "[PVP]" -- Requires localization
L["Payback sounds"] = "Payback sounds" -- Requires localization
L["Killing Counter and Sound Queue reset"] = "Killing Counter and Sound Queue reset" -- Requires localization
L["[Sound]"] = "[Sound]" -- Requires localization
L["[Unreal Tournament 3]"] = "[Unreal Tournament 3]" -- Requires localization
L["[Custom]"] = "[Custom]" -- Requires localization
L["[Default]"] = "[Default]" -- Requires localization
L["[Deutsch]"] = "[Deutsch]" -- Requires localization
L["[English]"] = "[English]" -- Requires localization
L["[Spanish]"] = "[Spanish]" -- Requires localization
L["[France]"] = "[France]" -- Requires localization
L["[Italian]"] = "[Italian]" -- Requires localization
L["[Russian]"] = "[Russian]" -- Requires localization
L["Kill Sound Engine"] = "Kill Sound Engine" -- Requires localization
L["Battleground Sound Engine"] = "Battleground Sound Engine" -- Requires localization
L["Sound Effects"] = "Sound Effects" -- Requires localization
L["Data Sharing"] = "Data Sharing" -- Requires localization
L["Kill Scrolling Combat Text mode"] = "Kill Scrolling Combat Text mode" -- Requires localization
L["Scrolling Combat Text frame name"] = "Scrolling Combat Text frame name" -- Requires localization
L["Scrolling Combat Text Engine"] = "Scrolling Combat Text Engine" -- Requires localization
L["Multi Kill Scrolling Combat Text"] = "Multi Kill Scrolling Combat Text" -- Requires localization
L["Payback Scrolling Combat Text"] = "Payback Scrolling Combat Text" -- Requires localization
L["Pet Killing Blows"] = "Pet Killing Blows" -- Requires localization
L["Hide server names"] = "Hide server names" -- Requires localization
L["Sound Pack"] = "Sound Pack" -- Requires localization
L["Sound Pack language"] = "Sound Pack language" -- Requires localization
L["Scrolling Combat Text and sound test"] = "Testing sound" -- Requires localization
L["Command list"] = "Command list" -- Requires localization
L["Custom Sound Pack doesn't support that language!"] = "Custom Sound Pack doesn't support that language!" -- Requires localization
L["Enables or Disables Battleground sounds"] = "Enables or Disables Battleground sounds" -- Requires localization
L["Enables or Disables Sound Effects"] = "Enables or Disables Sound Effects" -- Requires localization
L["Switch between sound channels ('master' 'sound' 'music' 'ambience')"] = "Switch between sound channels ('master' 'sound' 'music' 'ambience')" -- Requires localization
L["Command help"] = "Command help" -- Requires localization
L["Enables or Disables Death Messages"] = "Enables or Disables Death Messages in Battlegrounds" -- Requires localization
L["Enables or Disables Emotes completely"] = "Enables or Disables Emotes completely" -- Requires localization
L["Switch between Emote and Chat Message mode"] = "Switch between Emote and Chat Message mode" -- Requires localization
L["Loaded. Type /ps help for options"] = "Enabled. Type /ps help for options" -- Requires localization
L["Enables or Disables Killing Blow and Multi Killing sounds"] = "Enables or Disables Killing Blow and Multi Killing sounds" -- Requires localization
L["Switch between PVP and PVE mode"] = "Switch between PVP and PVE mode" -- Requires localization
L["Enables or Disables Multi Killing sounds"] = "Enables or Disables Multi Killing sounds" -- Requires localization
L["Enables or Disables Pet Killing Blow sounds"] = "Enables or Disables Pet Killing Blow sounds" -- Requires localization
L["Enables or Disables Payback Killing sounds"] = "Enables or Disables Payback Killing sounds" -- Requires localization
L["Reset the counter of Killing Blows and the Payback-, Retibution-, Sound-, and SCT Queue System"] = "Reset the counter of Killing Blows and the Payback- and Sound Queue System" -- Requires localization
L["Enables or Disables Sound Queue System usage in Killing Sounds"] = "Enables or Disables Sound Queue System usage in Killing Sounds" -- Requires localization
L["Enables or Disables Sound Queue System usage in Battleground Sounds"] = "Enables or Disables Sound Queue System usage in Battleground Sounds" -- Requires localization
L["Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members"] = "Enables or Disables Spree and Death Data Sharing and Receiving with raid/party/battleground members" -- Requires localization
L["Enables or Disables Kill Scrolling Combat Text usage"] = "Enables or Disables Kill Scrolling Combat Text usage" -- Requires localization
L["Name of the output frame in the supported Scrolling Combat Text"] = "Name of the output frame in the supported Scrolling Combat Text" -- Requires localization
L["Enables or Disables Scrolling Combat Text Queue System usage"] = "Enables or Disables Scrolling Combat Text Queue System usage" -- Requires localization
L["Enables or Disables Multi Kill Scrolling Combat Text usage"] = "Enables or Disables Multi Kill Scrolling Combat Text usage" -- Requires localization
L["Enables or Disables Payback and Retribution Scrolling Combat Text usage"] = "Enables or Disables Payback and Retribution Scrolling Combat Text usage" -- Requires localization
L["Enables or Disables hiding the player's server name from Data Sharing and Death Messages"] = "Enables or Disables hiding the player's server name from Data Sharing and Death Messages" -- Requires localization
L["Switch between Sound Packs ('ut3' 'custom')"] = "Switch between Sound Packs ('ut3' 'custom')" -- Requires localization
L["Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')"] = "Switch between Sound Pack languages ('deu' 'eng' 'esn' 'fra' 'ita' 'rus')" -- Requires localization
L["Show status"] = "Show status" -- Requires localization
L["Scrolling Combat Text and sound test"] = "Sound test" -- Requires localization
L["Killing Count"] = "Killing Count" -- Requires localization
L["Death messages"] = "Death messages" -- Requires localization
--need localization
L["[PVP and PVE]"] = "[PVP and PVE]"
L["Execute sounds"] = "Execute sounds"
L["Enables or Disables execute sounds"] = "Enables or Disables execute sounds"
end
function PVPSound:ItalianClient()
-- Battleground Names
L["Eye of the Storm"] = "Eye of the Storm" -- Requires localization
-- Battleground Zone Names
L["Silverwing Hold"] = "Silverwing Hold" -- Requires localization
L["Warsong Flag Room"] = "Warsong Flag Room" -- Requires localization
L["Dragonmaw Forge"] ="Dragonmaw Forge" -- Requires localization
L["Wildhammer Stronghold"] = "Wildhammer Stronghold" -- Requires localization
-- Battleground Events
-- WSG and TP
L["dropped"] = "dropped" -- Requires localization
L["picked"] = "picked" -- Requires localization
L["pickedA"] = "picked" --fix for Ru client
L["returned"] = "returned" -- Requires localization
L["Alliance Flag has returned"] = "Alliance Flag has returned" -- Requires localization
L["Horde Flag has returned"] = "Horde Flag has returned" -- Requires localization
L["vulnerable"] = "vulnerable" -- Requires localization
L["Tie game"] = "Tie game" -- Requires localization
-- SM
L["captured"] = "captured" -- Requires localization
-- EOTS
L["Alliance have captured"] = "Alliance have captured" -- Requires localization
L["Horde have captured"] = "Horde have captured" -- Requires localization
-- classic AV, WSG, EOTS and AB winsounds
L["The Alliance is victorious"] = "The Alliance is victorious" -- Requires localization
L["The Horde is victorious"] = "The Horde is victorious" -- Requires localization
L["Alliance wins"] = "Alliance wins" -- Requires localization
L["Alliance wins secondary"] = "Alliance wins" -- Requires localization
L["Horde wins"] = "Horde wins" -- Requires localization
L["Horde wins secondary"] = "Horde wins" -- Requires localization
-- WG
L["workshop has been attacked by the Alliance"] = "workshop has been attacked by the Alliance" -- Requires localization
L["workshop has been captured by the Alliance"] = "workshop has been captured by the Alliance" -- Requires localization
L["Alliance has defended"] = "Alliance has defended" -- Requires localization
L["workshop has been attacked by the Horde"] = "workshop has been attacked by the Horde" -- Requires localization
L["workshop has been captured by the Horde"] = "workshop has been captured by the Horde" -- Requires localization
L["Horde has defended"] = "Horde has defended" -- Requires localization
end
function PVPSound:Korean()
L["General"] = "KorGeneral"
-- Messages
L["Streak1Male"] = "just drew his" -- Requires localization
L["Streak1Female"] = "just drew her" -- Requires localization
L["Streak2"] = "is on" -- Requires localization
L["Streak3"] = "is on" -- Requires localization
L["Streak4"] = "is" -- Requires localization
L["Streak5"] = "is" -- Requires localization
L["Streak6"] = "is" -- Requires localization
L["Streak7"] = "committed a" -- Requires localization
L["Streak8"] = "committed a" -- Requires localization
L["Streak9"] = "committed a" -- Requires localization
L["Streak10"] = "committed a" -- Requires localization
L["'s"] = "'s" -- Requires localization
L["was over by"] = "was over by" -- Requires localization
L["You got killed by"] = "You got killed by" -- Requires localization
-- Options
L["[Ambience]"] = "[Ambience]" -- Requires localization
L["Battleground sounds"] = "Battleground sounds" -- Requires localization
L["Sound channel output"] = "Sound channel output" -- Requires localization
L["[Chat Message]"] = "[Chat Message]" -- Requires localization
L["[Disable]"] = "[Disable]" -- Requires localization
L["[Emote]"] = "[Emote]" -- Requires localization
L["Emote mode"] = "Emote mode" -- Requires localization
L["Emotes"] = "Emotes" -- Requires localization
L["[Enable]"] = "[Enable]" -- Requires localization
L["Killing Blow sounds"] = "Killing Blow sounds" -- Requires localization
L["[Master]"] = "[Master]" -- Requires localization
L["Mode"] = "Mode" -- Requires localization
L["Multi Killing sounds"] = "Multi Killing sounds" -- Requires localization
L["[Music]"] = "[Music]" -- Requires localization
L["[PVE]"] = "[PVE]" -- Requires localization
L["[PVP]"] = "[PVP]" -- Requires localization
L["Payback sounds"] = "Payback sounds" -- Requires localization
L["Killing Counter and Sound Queue reset"] = "Killing Counter and Sound Queue reset" -- Requires localization
L["[Sound]"] = "[Sound]" -- Requires localization
L["[Unreal Tournament 3]"] = "[Unreal Tournament 3]" -- Requires localization
L["[Custom]"] = "[Custom]" -- Requires localization
L["[Default]"] = "[Default]" -- Requires localization
L["[Deutsch]"] = "[Deutsch]" -- Requires localization
L["[English]"] = "[English]" -- Requires localization
L["[Spanish]"] = "[Spanish]" -- Requires localization
L["[France]"] = "[France]" -- Requires localization
L["[Italian]"] = "[Italian]" -- Requires localization
L["[Russian]"] = "[Russian]" -- Requires localization
L["Kill Sound Engine"] = "Kill Sound Engine" -- Requires localization
L["Battleground Sound Engine"] = "Battleground Sound Engine" -- Requires localization
L["Sound Effects"] = "Sound Effects" -- Requires localization
L["Data Sharing"] = "Data Sharing" -- Requires localization
L["Kill Scrolling Combat Text mode"] = "Kill Scrolling Combat Text mode" -- Requires localization
L["Scrolling Combat Text frame name"] = "Scrolling Combat Text frame name" -- Requires localization
L["Scrolling Combat Text Engine"] = "Scrolling Combat Text Engine" -- Requires localization
L["Multi Kill Scrolling Combat Text"] = "Multi Kill Scrolling Combat Text" -- Requires localization
L["Payback Scrolling Combat Text"] = "Payback Scrolling Combat Text" -- Requires localization
L["Pet Killing Blows"] = "Pet Killing Blows" -- Requires localization
L["Hide server names"] = "Hide server names" -- Requires localization
L["Sound Pack"] = "Sound Pack" -- Requires localization
L["Sound Pack language"] = "Sound Pack language" -- Requires localization
L["Scrolling Combat Text and sound test"] = "Testing sound" -- Requires localization
L["Command list"] = "Command list" -- Requires localization
L["Custom Sound Pack doesn't support that language!"] = "Custom Sound Pack doesn't support that language!" -- Requires localization
L["Enables or Disables Battleground sounds"] = "Enables or Disables Battleground sounds" -- Requires localization
L["Enables or Disables Sound Effects"] = "Enables or Disables Sound Effects" -- Requires localization
L["Switch between sound channels ('master' 'sound' 'music' 'ambience')"] = "Switch between sound channels ('master' 'sound' 'music' 'ambience')" -- Requires localization
L["Command help"] = "Command help" -- Requires localization
L["Enables or Disables Death Messages"] = "Enables or Disables Death Messages in Battlegrounds" -- Requires localization
L["Enables or Disables Emotes completely"] = "Enables or Disables Emotes completely" -- Requires localization
L["Switch between Emote and Chat Message mode"] = "Switch between Emote and Chat Message mode" -- Requires localization