-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLocalization.lua
More file actions
2276 lines (2195 loc) · 118 KB
/
Copy pathLocalization.lua
File metadata and controls
2276 lines (2195 loc) · 118 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 _, Lang = ...; -- Let's use the private table passed to every .lua
local L = {}
Lang.L = L
local function defaultFunc(L, key)
-- If this function was called, we have no localization for this key.
-- We could complain loudly to allow localizers to see the error of their ways,
-- but, for now, just return the key as its own localization. This allows you to—avoid writing the default localization out explicitly.
return key;
end
setmetatable(L, {__index=defaultFunc});
local LOCALE = GetLocale()
local colorThingS = "|cff9ce6d9"
local colorThingE = "|r"
L["Contributor_1"] = "TrinitysEnd"
L["ContributorNote_1"] = "Glyph Width Textures"
L["Contributor_2"] = "Peterodox"
L["ContributorNote_2"] = "Chat Hyperlink Functionality"
L["Contributor_Anonymous"] = "Anonymous Users"
L["Contributor_3"] = "Feyawen\n \n "
L["ContributorNote_3"] = "Darnassian, Shalassian, Thalassian,\nDraenei, Pandaren, Zandali,\nDwarvish, and Taurahe font textures"
L.AllLanguages = {
enUS = {
["Common"] = "Common",
["Darnassian"] = "Darnassian",
["Dwarvish"] = "Dwarvish",
["Gnomish"] = "Gnomish",
["Draenei"] = "Draenei",
["Orcish"] = "Orcish",
["Zandali"] = "Zandali",
["Taurahe"] = "Taurahe",
["Forsaken"] = "Forsaken",
["Thalassian"] = "Thalassian",
["Goblin"] = "Goblin",
["Shalassian"] = "Shalassian",
["Vulpera"] = "Vulpera",
["Pandaren"] = "Pandaren",
["Draconic"] = "Draconic",
["Demonic"] = "Demonic",
["Titan"] = "Titan",
["Kalimag"] = "Kalimag",
["Shath'Yar"] = "Shath'Yar",
["Nerubian"] = "Nerubian",
["Sprite"] = "Sprite",
["Nerglish"] = "Nerglish",
["Moonkin"] = "Moonkin",
["Furbolg"] = "Furbolg",
["Earthen"] = "Earthen",
["Hara'ni"] = "Hara'ni",
["Gutterspeak"] = "Gutterspeak",
["AncientPandaren"] = "Ancient Pandaren",
["Broker"] = "Broker",
["Cypher"] = "Cypher",
["Arathi"] = "Arathi",
["Mogu"] = "Mogu",
["Ethereal"] = "Ethereal",
["K'areshi"] = "K'areshi",
["Gilnean"] = "Gilnean",
["KulTiranNoble"] = "Kul Tiran Noble",
["Mechagnome"] = "Mechagnome",
["DarkspearTrolls"] = "Darkspear Troll",
["Sailor"] = "Sailor",
["Highborne"] = "Highborne",
["Nightborne"] = "Nightborne",
["Zandalari"] = "Zandalari Troll",
},
esMX = {
["Common"] = "Lengua común",
["Darnassian"] = "Darnassiano",
["Dwarvish"] = "Enánico",
["Gnomish"] = "Gnomótico",
["Draenei"] = "Draenei",
["Orcish"] = "Orco",
["Zandali"] = "Zandali",
["Taurahe"] = "Taurahe",
["Forsaken"] = "Renegado",
["Thalassian"] = "Thalassiano",
["Goblin"] = "Goblin",
["Shalassian"] = "Shalassiano",
["Vulpera"] = "Vulpera",
["Pandaren"] = "Pandaren",
["Draconic"] = "Dracónico",
["Demonic"] = "Demoníaco",
["Titan"] = "Titánico",
["Kalimag"] = "Kalimag",
["Shath'Yar"] = "Shath'Yar",
["Nerubian"] = "Nerubiano",
["Sprite"] = "Duende",
["Nerglish"] = "Nerglish",
["Moonkin"] = "Lechúcico lunar",
["Furbolg"] = "Fúrbolg",
["Earthen"] = "Terráneo",
["Hara'ni"] = "Hara'ni",
["Gutterspeak"] = "Viscerálico",
["AncientPandaren"] = "Pandaren antiguo",
["Broker"] = "Negociante",
["Cypher"] = "Códigos",
["Arathi"] = "Arathi",
["Mogu"] = "Mogu",
["Ethereal"] = "Etéreo",
["K'areshi"] = "K'areshi",
["Gilnean"] = "gilneano",
["KulTiranNoble"] = "Noble kultirano",
["Mechagnome"] = "Mecagnomo",
["DarkspearTrolls"] = "Trol Lanza Negra",
["Sailor"] = "Marinero",
["Highborne"] = "Altonato",
["Nightborne"] = "Natonocturno",
["Zandalari"] = "Trol zandalari",
},
esES = {
["Common"] = "Lengua común",
["Darnassian"] = "Darnassiano",
["Dwarvish"] = "Enánico",
["Gnomish"] = "Gnomótico",
["Draenei"] = "Draenei",
["Orcish"] = "Orco",
["Zandali"] = "Zandali",
["Taurahe"] = "Taurahe",
["Forsaken"] = "Renegado",
["Thalassian"] = "Thalassiano",
["Goblin"] = "Goblin",
["Shalassian"] = "Shalassiano",
["Vulpera"] = "Vulpera",
["Pandaren"] = "Pandaren",
["Draconic"] = "Dracónico",
["Demonic"] = "Demoníaco",
["Titan"] = "Titánico",
["Kalimag"] = "Kalimag",
["Shath'Yar"] = "Shath'yar",
["Nerubian"] = "Nerubiano",
["Sprite"] = "Duende",
["Nerglish"] = "Nerglés",
["Moonkin"] = "Lechúcico lunar",
["Furbolg"] = "Fúrbolg",
["Earthen"] = "Terráneo",
["Hara'ni"] = "Hara'ni",
["Gutterspeak"] = "Viscerálico",
["AncientPandaren"] = "Pandaren antiguo",
["Broker"] = "Especulador",
["Cypher"] = "Claves",
["Arathi"] = "Arathi",
["Mogu"] = "Mogu",
["Ethereal"] = "Etéreo",
["K'areshi"] = "K'areshi",
["Gilnean"] = "gilneano",
["KulTiranNoble"] = "Noble de Kul Tiras",
["Mechagnome"] = "Mecagnomo",
["DarkspearTrolls"] = "Trol Lanza Negra",
["Sailor"] = "Marinero",
["Highborne"] = "Altonato",
["Nightborne"] = "Nocheterna",
["Zandalari"] = "Trol Zandalari",
},
deDE = {
["Common"] = "Gemeinsprache",
["Darnassian"] = "Darnassisch",
["Dwarvish"] = "Zwergisch",
["Gnomish"] = "Gnomisch",
["Draenei"] = "Draenei",
["Orcish"] = "Orcisch",
["Zandali"] = "Zandali",
["Taurahe"] = "Taurahe",
["Forsaken"] = "Gossensprache",
["Thalassian"] = "Thalassisch",
["Goblin"] = "Goblin",
["Shalassian"] = "Shalassisch",
["Vulpera"] = "Vulpera",
["Pandaren"] = "Pandarisch",
["Draconic"] = "Drakonisch",
["Demonic"] = "Dämonisch",
["Titan"] = "Titanensprache",
["Kalimag"] = "Kalimag",
["Shath'Yar"] = "Shath'Yar",
["Nerubian"] = "Nerubisch",
["Sprite"] = "Feensprache",
["Nerglish"] = "Nerglisch",
["Moonkin"] = "Mondkin",
["Furbolg"] = "Furbolg",
["Earthen"] = "Irden",
["Hara'ni"] = "Hara'ni",
["Gutterspeak"] = "Gossensprache",
["AncientPandaren"] = "Uralter Pandaren",
["Broker"] = "Mittler",
["Cypher"] = "Chiffren",
["Arathi"] = "Arathi",
["Mogu"] = "Mogu",
["Ethereal"] = "Astral",
["K'areshi"] = "K'areshi",
["Gilnean"] = "Gilnearisch",
["KulTiranNoble"] = "Adliger von Kul Tiras",
["Mechagnome"] = "Mechagnom",
["DarkspearTrolls"] = "Dunkelspeertroll",
["Sailor"] = "Matrose",
["Highborne"] = "Hochgeborene",
["Nightborne"] = "Nachtgeborener",
["Zandalari"] = "Zandalaritroll",
},
frFR = {
["Common"] = "Commun",
["Darnassian"] = "Darnassien",
["Dwarvish"] = "Nain",
["Gnomish"] = "Gnome",
["Draenei"] = "Draeneï",
["Orcish"] = "Orc",
["Zandali"] = "Zandali",
["Taurahe"] = "Taurahe",
["Forsaken"] = "Réprouvé",
["Thalassian"] = "Thalassien",
["Goblin"] = "Gobelin",
["Shalassian"] = "Shalassien",
["Vulpera"] = "Vulpérin",
["Pandaren"] = "Pandaren",
["Draconic"] = "Draconique",
["Demonic"] = "Démoniaque",
["Titan"] = "Titan",
["Kalimag"] = "Kalimag",
["Shath'Yar"] = "Shath’Yar",
["Nerubian"] = "Nérubien",
["Sprite"] = "Lutin",
["Nerglish"] = "Nerglais",
["Moonkin"] = "Sélénien",
["Furbolg"] = "Furbolg",
["Earthen"] = "Terrestre",
["Hara'ni"] = "Hara’ni",
["Gutterspeak"] = "Bas-parler",
["AncientPandaren"] = "Pandaren ancien",
["Broker"] = "Négociant",
["Cypher"] = "Cryptogrammes",
["Arathi"] = "Arathie",
["Mogu"] = "Mogu",
["Ethereal"] = "Éthérien",
["K'areshi"] = "K'areshi",
["Gilnean"] = "gilnéen",
["KulTiranNoble"] = "Noble de Kul Tiras",
["Mechagnome"] = "Mécagnome",
["DarkspearTrolls"] = "Troll sombrelances",
["Sailor"] = "Marin",
["Highborne"] = "Bien-né",
["Nightborne"] = "Sacrenuit",
["Zandalari"] = "Troll zandalari",
},
itIT = {
["Common"] = "Comune",
["Darnassian"] = "Darnassiano",
["Dwarvish"] = "Nanico",
["Gnomish"] = "Gnomesco",
["Draenei"] = "Draenei",
["Orcish"] = "Orchesco",
["Zandali"] = "Zandali",
["Taurahe"] = "Taurino",
["Forsaken"] = "Non Morto",
["Thalassian"] = "Thalassiano",
["Goblin"] = "Goblin",
["Shalassian"] = "Shalassiano",
["Vulpera"] = "Vulpera",
["Pandaren"] = "Pandaren",
["Draconic"] = "Draconico",
["Demonic"] = "Demoniaco",
["Titan"] = "Titanico",
["Kalimag"] = "Kalimag",
["Shath'Yar"] = "Shath'yar",
["Nerubian"] = "Nerubiano",
["Sprite"] = "Follettiano",
["Nerglish"] = "Nergliano",
["Moonkin"] = "Lunagufo",
["Furbolg"] = "Mezzorso",
["Earthen"] = "Terrigeno",
["Hara'ni"] = "Hara'ni",
["Gutterspeak"] = "Non Morto",
["AncientPandaren"] = "Pandaren antico",
["Broker"] = "Alienatore",
["Cypher"] = "Codici",
["Arathi"] = "Arathi",
["Mogu"] = "Mogu",
["Ethereal"] = "Etereo",
["K'areshi"] = "K'areshi",
["Gilnean"] = "Gilneano",
["KulTiranNoble"] = "Nobile di Kul Tiras",
["Mechagnome"] = "Meccagnomo",
["DarkspearTrolls"] = "Troll Lanciascura",
["Sailor"] = "Marinaio",
["Highborne"] = "Alto Nobile",
["Nightborne"] = "Nobile Oscuro",
["Zandalari"] = "Troll Zandalari",
},
ptBR = {
["Common"] = "Língua Comum",
["Darnassian"] = "Darnassiano",
["Dwarvish"] = "Enânico",
["Gnomish"] = "Gnomês",
["Draenei"] = "Draeneico",
["Orcish"] = "Órquico",
["Zandali"] = "Zandali",
["Taurahe"] = "Taurahe",
["Forsaken"] = "Guturalês",
["Thalassian"] = "Talassiano",
["Goblin"] = "Goblinês",
["Shalassian"] = "Shalassiano",
["Vulpera"] = "Vulpera",
["Pandaren"] = "Pandaren",
["Draconic"] = "Dracônico",
["Demonic"] = "Demoníaco",
["Titan"] = "Titânico",
["Kalimag"] = "Kalimaico",
["Shath'Yar"] = "Shath'Yar",
["Nerubian"] = "Nerubiano",
["Sprite"] = "Duendês",
["Nerglish"] = "Nergonês",
["Moonkin"] = "Lunisquês",
["Furbolg"] = "Pelurso",
["Earthen"] = "Terrano",
["Hara'ni"] = "Hara'ni",
["Gutterspeak"] = "Guturalês",
["AncientPandaren"] = "Pandaren antigo",
["Broker"] = "Corretor",
["Cypher"] = "Cifras",
["Arathi"] = "Arathi",
["Mogu"] = "Mogu",
["Ethereal"] = "Etéreo",
["K'areshi"] = "K'areshi",
["Gilnean"] = "Guilneana",
["KulTiranNoble"] = "Nobre Kultireno",
["Mechagnome"] = "Gnomecânico",
["DarkspearTrolls"] = "Troll Lançanegra",
["Sailor"] = "Marinheiro",
["Highborne"] = "Altaneiro",
["Nightborne"] = "Filho da Noite",
["Zandalari"] = "Troll Zandalari",
},
ruRU = {
["Common"] = "всеобщий",
["Darnassian"] = "дарнасский",
["Dwarvish"] = "дворфийский",
["Gnomish"] = "гномский",
["Draenei"] = "дренейский",
["Orcish"] = "орочий",
["Zandali"] = "зандаларский",
["Taurahe"] = "таурахэ",
["Forsaken"] = "наречие Отрекшихся",
["Thalassian"] = "талассийский",
["Goblin"] = "гоблинский",
["Shalassian"] = "Шалассийский",
["Vulpera"] = "Вульперский",
["Pandaren"] = "пандаренский",
["Draconic"] = "драконий",
["Demonic"] = "язык демонов",
["Titan"] = "язык титанов",
["Kalimag"] = "калимаг",
["Shath'Yar"] = "шат'яр",
["Nerubian"] = "Нерубский",
["Sprite"] = "язык лесных духов",
["Nerglish"] = "нерглийский",
["Moonkin"] = "язык совухов",
["Furbolg"] = "фурболгский",
["Earthen"] = "Язык земельников",
["Hara'ni"] = "хара'нийский",
["Gutterspeak"] = "Нежити",
["AncientPandaren"] = "Древний пандарен",
["Broker"] = "Брокер",
["Cypher"] = "Шифры",
["Arathi"] = "Аратии",
["Mogu"] = "Могу",
["Ethereal"] = "Эфириал",
["K'areshi"] = "К'ареши",
["Gilnean"] = "гилнеасский",
["KulTiranNoble"] = "Кул-тирасский аристократ",
["Mechagnome"] = "Механогном",
["DarkspearTrolls"] = "Племя Черного Копья",
["Sailor"] = "Матрос",
["Highborne"] = "Высокорожденный",
["Nightborne"] = "Ночнорожденный",
["Zandalari"] = "Зандалар",
},
koKR = {
["Common"] = "공용어",
["Darnassian"] = "나이트 엘프어",
["Dwarvish"] = "드워프어",
["Gnomish"] = "노움어",
["Draenei"] = "드레나이어",
["Orcish"] = "오크어",
["Zandali"] = "잔달라어",
["Taurahe"] = "타우렌어",
["Forsaken"] = "포세이큰어",
["Thalassian"] = "하이엘프어",
["Goblin"] = "고블린어",
["Shalassian"] = "나이트본어",
["Vulpera"] = "불페라어",
["Pandaren"] = "판다렌어",
["Draconic"] = "용언",
["Demonic"] = "악마어",
["Titan"] = "티탄어",
["Kalimag"] = "정령어",
["Shath'Yar"] = "샤트야르",
["Nerubian"] = "네루비안",
["Sprite"] = "요마어",
["Nerglish"] = "옳옳어",
["Moonkin"] = "달빛야수",
["Furbolg"] = "펄볼그어",
["Earthen"] = "토석인어",
["Hara'ni"] = "하라니",
["Gutterspeak"] = "언데드어",
["AncientPandaren"] = "고대 판다렌",
["Broker"] = "중개자",
["Cypher"] = "암호",
["Arathi"] = "아라시",
["Mogu"] = "모구",
["Ethereal"] = "에테리얼",
["K'areshi"] = "크아레쉬",
["Gilnean"] = "길니아스어",
["KulTiranNoble"] = "쿨 티란 귀족",
["Mechagnome"] = "기계노움",
["DarkspearTrolls"] = "검은창 트롤",
["Sailor"] = "선원",
["Highborne"] = "명가",
["Nightborne"] = "나이트본",
["Zandalari"] = "잔달라 트롤",
},
zhCN = {
["Common"] = "通用语",
["Darnassian"] = "达纳苏斯语",
["Dwarvish"] = "矮人语",
["Gnomish"] = "侏儒语",
["Draenei"] = "德莱尼语",
["Orcish"] = "兽人语",
["Zandali"] = "赞达拉语",
["Taurahe"] = "牛头人语",
["Forsaken"] = "亡灵语",
["Thalassian"] = "萨拉斯语",
["Goblin"] = "地精语",
["Shalassian"] = "夏拉斯语",
["Vulpera"] = "狐人语",
["Pandaren"] = "熊猫人语",
["Draconic"] = "龙语",
["Demonic"] = "恶魔语",
["Titan"] = "泰坦语",
["Kalimag"] = "卡利麦格语",
["Shath'Yar"] = "沙斯亚尔语",
["Nerubian"] = "蛛魔语",
["Sprite"] = "林精语",
["Nerglish"] = "水生语",
["Moonkin"] = "枭兽语",
["Furbolg"] = "熊怪语",
["Earthen"] = "土灵语",
["Hara'ni"] = "哈籁尼语",
["Gutterspeak"] = "亡灵语",
["AncientPandaren"] = "古代熊猫人",
["Broker"] = "掮灵",
["Cypher"] = "密文",
["Arathi"] = "阿拉希",
["Mogu"] = "魔古族",
["Ethereal"] = "虚灵",
["K'areshi"] = "卡雷什",
["Gilnean"] = "吉尔尼斯语",
["KulTiranNoble"] = "库尔提拉斯贵族",
["Mechagnome"] = "机械侏儒",
["DarkspearTrolls"] = "暗矛巨魔",
["Sailor"] = "水手",
["Highborne"] = "上层精灵",
["Nightborne"] = "夜之子",
["Zandalari"] = "赞达拉巨魔",
},
zhTW = {
["Common"] = "通用語",
["Darnassian"] = "達納蘇斯語",
["Dwarvish"] = "矮人語",
["Gnomish"] = "地精語",
["Draenei"] = "德萊尼語",
["Orcish"] = "獸人語",
["Zandali"] = "食人妖語",
["Taurahe"] = "牛頭人語",
["Forsaken"] = "不死族語",
["Thalassian"] = "薩拉斯語",
["Goblin"] = "哥布林語",
["Shalassian"] = "夏拉斯語",
["Vulpera"] = "狐狸人語",
["Pandaren"] = "熊貓人語",
["Draconic"] = "龍語",
["Demonic"] = "惡魔語",
["Titan"] = "泰坦語",
["Kalimag"] = "元素語",
["Shath'Yar"] = "古神語",
["Nerubian"] = "奈幽語",
["Sprite"] = "妖精語",
["Nerglish"] = "魚人語",
["Moonkin"] = "梟獸語",
["Furbolg"] = "熊怪語",
["Earthen"] = "土靈",
["Hara'ni"] = "哈拉尼",
["Gutterspeak"] = "不死族語",
["AncientPandaren"] = "古代熊貓人",
["Broker"] = "仲介者",
["Cypher"] = "暗語",
["Arathi"] = "阿拉希",
["Mogu"] = "魔古",
["Ethereal"] = "以太",
["K'areshi"] = "凱瑞西",
["Gilnean"] = "吉爾尼斯",
["KulTiranNoble"] = "庫爾提拉斯貴族",
["Mechagnome"] = "機械地精",
["DarkspearTrolls"] = "暗矛食人妖",
["Sailor"] = "水手",
["Highborne"] = "精靈貴族",
["Nightborne"] = "夜裔精靈",
["Zandalari"] = "贊達拉食人妖",
},
};
if LOCALE == "enUS" then
-- The EU English game client also
-- uses the US English locale code.
L["Languages"] = "Languages"
L["Language"] = "Language"
L["SLASH_1"] = "/languages"
L["SLASH_2"] = "/language"
L["SLASH_3"] = "/lang"
L["SLASH_4"] = "/languages" -- non-localized slash
L["SLASH_5"] = "/language"
L["SLASH_6"] = "/lang"
L["Understand"] = "Understand"
L["TogglePrefixOff"] = "Language Prefix: Off"
L["TogglePrefixOn"] = "Language Prefix: On"
L["TogglePrefixTextOff"] = "Toggling off automated language prefix."
L["TogglePrefixTextOn"] = "Toggling off automated language prefix."
L["TogglePrefixTT"] = "Controls if the currently selected language automatically prefixes the user's message."
L["Diction"] = "Diction"
L["Settings"] = SETTINGS
L["Profiles"] = "Profiles"
L["ResetAccSettings"] = "Resets all settings specific to the account section. This will not reset character-specific settings."
L["ResetCharSettings"] = "Resets all settings specific to the character section. This will not reset account-specific settings."
L["ResetAccSettingsConfirm"] = "Are you sure you want to reset the account-specific settings for Languages?"
L["ResetCharSettingsConfirm"] = "Are you sure you want to reset this character's specific settings for Languages?"
L["ApplyPresetConfirm"] = "Are you sure you want to overwrite your current learned languages?"
L["AddonPrefixColor"] = "Languages Prefix Color"
L["AccountSettings"] = "Account Settings"
L["CharacterSettings"] = "Character Settings"
L["MinimapTooltip"] = "Languages\nClick to toggle Languages menu."
L["GlyphsOff"] = "Turning glyphs off."
L["GlyphsOn"] = "Turning glyphs on."
L["UseGlyphs"] = "Unlearned languages use glyphs"
L["UseGlyphsTT"] = "Controls if an unlearned language uses glyphs, when available, to replace the individual characters. Some languages may not have glyphs available yet."
L["SpeechBubblesOff"] = "Turning speech bubble translations off."
L["SpeechBubblesOn"] = "Turning speech bubble translations on."
L["SpeechBubbles"] = "Show in speech bubbles"
L["SpeechBubblesTT"] = "Controls if untranslated languages will show up in speech bubbles.\nBlizzard API limits this feature from working in instanced content."
L["CombatOptionOn"] = "Turning translations during combat on."
L["CombatOptionOff"] = "Turning translations during combat off."
L["CombatOption"] = "Function during combat"
L["CombatOptionTT"] = "Controls if the addon will function in combat"
L["FactionOptionOn"] = "Ignoring faction language on."
L["FactionOptionOff"] = "Ignoring faction language off."
L["FactionOption"] = "Ignore own faction's languages"
L["FactionOptionTT"] = "Controls if the addon will ignore the prefix option for \"Common\" while on an Alliance character or \"Orcish\" for a Horde character."
L["LinkToTotalRP3Off"] = "Total RP 3 link disabled for this character."
L["LinkToTotalRP3On"] = "Total RP 3 link enabled for this character."
L["LinkToTotalRP3"] = "Link to Total RP 3 Profile"
L["LinkToTotalRP3TT"] = "Automatically change the character's profile according to the Total RP 3 profile. If multiple characters use the same profile, this should retain settings on those characters.\nRequires the addon Total RP 3"
L["SettingLanguageTo"] = "Setting language to:"
L["EnableUnderstand"] = "Enable Understand"
L["DisableUnderstand"] = "Disable Understand"
L["Dialect"] = "Dialect"
L["DialectOff"] = "Dialect: Off"
L["DialectOn"] = "Dialect: On"
L["UseDialectTT"] = "Controls if the user currently speaks with a dialect while speaking, e.g. \"What do you want\" becomes \"Waschu wan'?\"."
L["SettingDialectTo"] = "Setting dialect to:"
L["CurrentlySpeaking"] = "Currently speaking:"
L["NoPrefixBaseLang"] = "Don't use the prefix if speaking your faction's base language (Common/Orcish as Alliance/Horde respectively)."
L["LanguagePreset"] = "Learn Language Presets"
L["ImportGameplay"] = "Gameplay"
L["ImportGameplayTT"] = "Learn preset default languages that your race would in normal gameplay mechanics.\nThis will overwrite your current learned languages."
L["ImportRecommended"] = "Recommended"
L["ImportRecommendedTT"] = "Learn preset languages your race / class likely would have learned in their probable history.\nThis will overwrite your current learned languages."
L["ThisLangHasRunesTT"] = "This language can display glyphs when unlearned."
L["ToggleLanguageLearnedTT"] = "Click to toggle your ability to understand this language when spoken by yourself and others."
L["ToggleLanguageSpokenTT"] = "Click to set this language as your prefix."
L["UseAutoShapeshiftOff"] = "Automatic Shapeshift language disabled for this character."
L["UseAutoShapeshiftOn"] = "Automatic Shapeshift language enabled for this character."
L["UseAutoShapeshift"] = "Automatic Shapeshift language"
L["UseAutoShapeshiftTT"] = "Shapeshifting into a form will automatically change your language to its association.\nRequires: Shadowform, Metamorphosis." -- Druid Forms, Ghost Wolf are planned maybe later
L["LoadingProfile"] = "Loading Profile"
L["HelpCMD"] = "You can use "..colorThingS.."/languages"..colorThingE..", "..colorThingS.."/language"..colorThingE..", or "..colorThingS.."/lang"..colorThingE.." to access slash commands. The list of slash command sub-options available:"..
"\n"..colorThingS.."prefix"..colorThingE.." - toggle the [Language] prefix on/off."..
"\n"..colorThingS.."open"..colorThingE.." - open the options frame."..
"\n"..colorThingS.."minimap"..colorThingE.." - toggle the minimap button on/off."..
"\nAdditionally, you can set a language, such as for example "..colorThingS.."/Darnassian"..colorThingE.."."
L["OnlyInCharacter"] = "Only In Character"
L["OnlyInCharacterTT"] = "Only Enable Prefix / Dialect while 'In Character'.\nRequires the addon Total RP 3"
L["RuneSize"] = "Glyph Size"
L["DisablePrefix"] = "Disable Prefix"
L["EnablePrefix"] = "Enable Prefix"
L["ShowSelectionButton"] = "Show Languages Mini-Button"
L["ShowSelectionButtonTT"] = "Toggles a small button on screen from which to access learned language selection."
L["SelectLanguage"] = "Select Language"
L["OpenMenu"] = "Open Menu"
L["DragFrame"] = "Drag Frame"
L["LeftClick"] = "Left-Click"
L["RightClick"] = "Right-Click"
L["ShiftDrag"] = "Shift-Drag"
L["DialectsTT"] = "Choosing a Dialect will change certain words you type into other words. For example, turning \"are not\" into \"aren't\". Each language has its own set of words, and each one can be toggled."
L["Dialects2TT"] = "Words can have their Dialect form prevented by adding underscores to each side, such as \"_are not_\". This will keep the term in its original spelling, and additionally remove the underscores placed on each side."
L["Contributors"] = "Contributors"
L["SpecialThanks"] = "Thank you to these wonderful people who contributed to this addon!"
-- official languages
L["Common"] = "Common" --7
L["Darnassian"] = "Darnassian" --2
L["Dwarvish"] = "Dwarvish" --6
L["Gnomish"] = "Gnomish" --13
L["Draenei"] = "Draenei" --35
L["Orcish"] = "Orcish" --1
L["Zandali"] = "Zandali" --14
L["Taurahe"] = "Taurahe" --3
L["Forsaken"] = "Forsaken" --33
L["Thalassian"] = "Thalassian" --10
L["Goblin"] = "Goblin" --40
L["Shalassian"] = "Shalassian" --181
L["Vulpera"] = "Vulpera" --285
L["Pandaren"] = "Pandaren" --42
L["Draconic"] = "Draconic" --11
L["Demonic"] = "Demonic" --8
L["Titan"] = "Titan" --9
L["Kalimag"] = "Kalimag" --12
L["Shath'Yar"] = "Shath'Yar" --178
L["Nerubian"] = "Nerubian" --307
L["Sprite"] = "Sprite" --168
L["Nerglish"] = "Nerglish" --179
L["Moonkin"] = "Moonkin" --180
L["Furbolg"] = "Furbolg" --303
L["Earthen"] = "Earthen" --304
L["Hara'ni"] = "Hara'ni" --309
--
-- technically fanon
L["Gutterspeak"] = "Gutterspeak" -- Language Gutterspeak
--deDE Gossensprache
--esES Viscerálico
--esMX Viscerálico
--frFR Bas-parler
--itIT Non Morto
--ptBR Guturalês
--ruRU Нежити
--koKR 언데드어
--zhCN 亡灵语
--zhTW 不死族語
L["AncientPandaren"] = "Ancient Pandaren" -- Ancient Pandaren Fishing Charm
--deDE Uralter Pandaren
--esES Pandaren antiguo
--esMX Pandaren antiguo
--frFR Pandaren ancien
--itIT Pandaren antico
--ptBR Pandaren antigo
--ruRU Древний пандарен
--koKR 고대 판다렌
--zhCN 古代熊猫人
--zhTW 古代熊貓人
L["Broker"] = "Broker" -- Broker
--deDE Mittler
--esES Especulador
--esMX Negociante
--frFR Négociant
--itIT Alienatore
--ptBR Corretor
--ruRU Брокер
--koKR 중개자
--zhCN 掮灵
--zhTW 仲介者
L["Cypher"] = "Cypher" -- Cyphers of the First Ones
--deDE Chiffren
--esES Claves
--esMX Códigos
--frFR Cryptogrammes
--itIT Codici
--ptBR Cifras
--ruRU Шифры
--koKR 암호
--zhCN 密文
--zhTW 暗語
L["Arathi"] = "Arathi" -- Arathi Bartender's Shelves
--deDE Arathi
--esES Arathi
--esMX Arathi
--frFR Arathie
--itIT Arathi
--ptBR Arathi
--ruRU Аратии
--koKR 아라시
--zhCN 阿拉希
--zhTW 阿拉希
L["Mogu"] = "Mogu" -- Mogu
--deDE Mogu
--esES Mogu
--esMX Mogu
--frFR Mogu
--itIT Mogu
--ptBR Mogu
--ruRU Могу
--koKR 모구
--zhCN 魔古族
--zhTW 魔古
L["Ethereal"] = "Ethereal" -- Ethereal Citizen
--deDE Astral
--esES Etéreo
--esMX Etéreo
--frFR Éthérien
--itIT Etereo
--ptBR Etéreo
--ruRU Эфириал
--koKR 에테리얼
--zhCN 虚灵
--zhTW 以太
L["K'areshi"] = "K'areshi" -- K'areshi Sentry
--deDE K'areshi
--esES K'areshi
--esMX K'areshi
--frFR K'areshi
--itIT K'areshi
--ptBR K'areshi
--ruRU К'ареши
--koKR 크아레쉬
--zhCN 卡雷什
--zhTW 凱瑞西
-- other languages to include eventually
--Apexis
--Drogbar
--Drust
--Hozen
--Jinyu
--Mantid
--Nathrezim
--Nazja
--Ogre
--Pygmy
--Qiraji
--Quilboar
--Ravenspeech
--Tol'vir
--Tuskarr
--Vrykul
--
--
--
--
--
--
--
--
--
--
L["Gilnean"] = "Gilnean"
--deDE Gilnearisch
--esES gilneano
--esMX gilneano
--frFR gilnéen
--itIT Gilneano
--ptBR Guilneana
--ruRU гилнеасский
--koKR 길니아스어
--zhCN 吉尔尼斯语
--zhTW 吉爾尼斯
L["KulTiranNoble"] = "Kul Tiran Noble"
--deDE Adliger von Kul Tiras
--esES Noble de Kul Tiras
--esMX Noble kultirano
--frFR Noble de Kul Tiras
--itIT Nobile di Kul Tiras
--ptBR Nobre Kultireno
--ruRU Кул-тирасский аристократ
--koKR 쿨 티란 귀족
--zhCN 库尔提拉斯贵族
--zhTW 庫爾提拉斯貴族
L["Mechagnome"] = "Mechagnome"
--deDE Mechagnom
--esES Mecagnomo
--esMX Mecagnomo
--frFR Mécagnome
--itIT Meccagnomo
--ptBR Gnomecânico
--ruRU Механогном
--koKR 기계노움
--zhCN 机械侏儒
--zhTW 機械地精
L["DarkspearTrolls"] = "Darkspear Troll"
--deDE Dunkelspeertroll
--esES Trol Lanza Negra
--esMX Trol Lanza Negra
--frFR Troll sombrelances
--itIT Troll Lanciascura
--ptBR Troll Lançanegra
--ruRU Племя Черного Копья
--koKR 검은창 트롤
--zhCN 暗矛巨魔
--zhTW 暗矛食人妖
L["Sailor"] = "Sailor"
--deDE Matrose
--esES Marinero
--esMX Marinero
--frFR Marin
--itIT Marinaio
--ptBR Marinheiro
--ruRU Матрос
--koKR 선원
--zhCN 水手
--zhTW 水手
L["Highborne"] = "Highborne"
--deDE Hochgeborene
--esES Altonato
--esMX Altonato
--frFR Bien-né
--itIT Alto Nobile
--ptBR Altaneiro
--ruRU Высокорожденный
--koKR 명가
--zhCN 上层精灵
--zhTW 精靈貴族
L["Nightborne"] = "Nightborne"
--deDE Nachtgeborener
--esES Nocheterna
--esMX Natonocturno
--frFR Sacrenuit
--itIT Nobile Oscuro
--ptBR Filho da Noite
--ruRU Ночнорожденный
--koKR 나이트본
--zhCN 夜之子
--zhTW 夜裔精靈
L["Zandalari"] = "Zandalari Troll"
--deDE Zandalaritroll
--esES Trol Zandalari
--esMX Trol zandalari
--frFR Troll zandalari
--itIT Troll Zandalari
--ptBR Troll Zandalari
--ruRU Зандалар
--koKR 잔달라 트롤
--zhCN 赞达拉巨魔
--zhTW 贊達拉食人妖
return end
if LOCALE == "esMX" then
-- Spanish translations go here
L["Languages"] = "Idiomas"
L["Language"] = "Idioma"
L["SLASH_1"] = "/idiomas"
L["SLASH_2"] = "/idiomas"
L["SLASH_3"] = "/idiomas"
L["SLASH_4"] = "/languages" -- non-localized slash
L["SLASH_5"] = "/language"
L["SLASH_6"] = "/lang"
L["Understand"] = "Entender"
L["TogglePrefixOff"] = "Prefijo de idioma: desactivado"
L["TogglePrefixOn"] = "Prefijo de idioma: activado"
L["TogglePrefixTextOff"] = "Desactivar el prefijo de idioma automatizado."
L["TogglePrefixTextOn"] = "Desactivar el prefijo de idioma automatizado."
L["TogglePrefixTT"] = "Controla si el idioma seleccionado actualmente antepone automáticamente el mensaje del usuario."
L["Diction"] = "Dicción"
L["Settings"] = SETTINGS
L["Profiles"] = "Perfiles"
L["ResetAccSettings"] = "Restablece todas las configuraciones específicas de la sección de cuenta. Esto no restablecerá la configuración específica del personaje."
L["ResetCharSettings"] = "Restablece todas las configuraciones específicas de la sección de personajes. Esto no restablecerá la configuración específica de la cuenta."
L["ResetAccSettingsConfirm"] = "¿Está seguro de que desea restablecer la configuración específica de la cuenta para Idiomas?"
L["ResetCharSettingsConfirm"] = "¿Estás seguro de que quieres restablecer la configuración específica de idiomas de este personaje?"
L["ApplyPresetConfirm"] = "¿Está seguro de que desea sobrescribir los idiomas aprendidos actualmente?"
L["AddonPrefixColor"] = "Idiomas Prefijo Color"
L["AccountSettings"] = "Configuraciones de la cuenta"
L["CharacterSettings"] = "Configuración de personajes"
L["MinimapTooltip"] = "Idiomas\nHaga clic para alternar el menú Idiomas."
L["GlyphsOff"] ="Desactivando glifos."
L["GlyphsOn"] = "Activando glifos."
L["UseGlyphs"] = "Los idiomas no aprendidos usan glifos"
L["UseGlyphsTT"] = "Controla si un idioma no aprendido utiliza glifos, cuando están disponibles, para reemplazar los caracteres individuales. Es posible que algunos idiomas aún no tengan glifos disponibles."
L["SpeechBubblesOff"] = "Desactivar las traducciones de bocadillos."
L["SpeechBubblesOn"] = "Activando la traducción de bocadillos."
L["SpeechBubbles"] = "Mostrar en bocadillos"
L["SpeechBubblesTT"] = "Controla si los idiomas no traducidos aparecerán en los bocadillos.\nLa API de Blizzard limita el funcionamiento de esta función en contenido instanciado."
L["CombatOptionOn"] = "Activar las traducciones durante el combate."
L["CombatOptionOff"] = "Desactivar las traducciones durante el combate."
L["CombatOption"] = "Función durante el combate"
L["CombatOptionTT"] = "Controla si el complemento funcionará en combate."
L["FactionOptionOn"] = "Ignorando el lenguaje de la facción."
L["FactionOptionOff"] = "Ignorar el lenguaje de facción desactivado."
L["FactionOption"] = "Ignorar los idiomas de la propia facción."
L["FactionOptionTT"] = "Controla si el complemento ignorará la opción de prefijo para \"Común\" mientras esté en un personaje de la Alianza o \"Orco\" para un personaje de la Horda."
L["LinkToTotalRP3Off"] = "Enlace total de RP 3 deshabilitado para este personaje."
L["LinkToTotalRP3On"] = "Enlace total de RP 3 habilitado para este personaje."
L["LinkToTotalRP3"] = "Enlace al perfil de Total RP 3"
L["LinkToTotalRP3TT"] = "Cambia automáticamente el perfil del personaje según el perfil Total RP 3. Si varios personajes usan el mismo perfil, esto debería conservar la configuración de esos personajes.\nRequiere el complemento Total RP 3"
L["SettingLanguageTo"] = "Configuración del idioma en:"
L["EnableUnderstand"] = "Habilitar comprensión"
L["DisableUnderstand"] = "Deshabilitar entender"
L["Dialect"] = "Dialecto"
L["DialectOff"] = "Dialecto: Desactivado"
L["DialectOn"] = "Dialecto: encendido"
L["UseDialectTT"] = "Controla si el usuario actualmente habla con un dialecto mientras habla, p. \"¿Qué quieres\" se convierte en \"Waschu wan'?\"."
L["SettingDialectTo"] = "Configurando el dialecto en:"
L["CurrentlySpeaking"] = "Actualmente hablando:"
L["NoPrefixBaseLang"] = "No uses el prefijo si hablas el idioma base de tu facción (Común/Orco como Alianza/Horda respectivamente)."
L["LanguagePreset"] = "Aprender ajustes preestablecidos de idioma"
L["ImportGameplay"] = "Como se Juega"
L["ImportGameplayTT"] = "Aprende los idiomas predeterminados preestablecidos que usaría tu raza en la mecánica de juego normal.\nEsto sobrescribirá los idiomas aprendidos actualmente."
L["ImportRecommended"] = "Recomendado"
L["ImportRecommendedTT"] = "Aprenda idiomas preestablecidos que su raza/clase probablemente habría aprendido en su historial probable.\nEsto sobrescribirá los idiomas aprendidos actualmente."
L["ThisLangHasRunesTT"] = "Este idioma puede mostrar glifos cuando no se ha aprendido."
L["ToggleLanguageLearnedTT"] = "Haga clic para alternar su capacidad de comprender este idioma cuando lo hablan usted mismo y otros."
L["ToggleLanguageSpokenTT"] = "Haga clic para establecer este idioma como su prefijo."
L["UseAutoShapeshiftOff"] = "Idioma de cambio de forma automático deshabilitado para este personaje."
L["UseAutoShapeshiftOn"] = "Idioma de cambio de forma automático habilitado para este personaje."
L["UseAutoShapeshift"] = "Idioma de cambio de forma automático"
L["UseAutoShapeshiftTT"] = "Cambiar de forma a una forma cambiará automáticamente su idioma a su asociación.\nRequiere: Forma de sombra, Metamorfosis."
L["LoadingProfile"] = "Cargando perfil"
L["HelpCMD"] = "Puede utilizar "..colorThingS.."/languages"..colorThingE..", "..colorThingS.."/idiomas"..colorThingE..", o "..colorThingS.."/lang"..colorThingE.." para acceder a los comandos de barra diagonal. La lista de subopciones de comandos de barra diagonal disponibles:"..
"\n"..colorThingS.."prefix"..colorThingE.." - activa o desactiva el prefijo [Language]."..
"\n"..colorThingS.."open"..colorThingE.." - abre el marco de opciones."..
"\n"..colorThingS.."minimap"..colorThingE.." - activa o desactiva el botón del minimapa."..
"\nAdemás, puede configurar un idioma, como por ejemplo "..colorThingS.."/Darnassiano"..colorThingE.."."
L["OnlyInCharacter"] = "Solo en personaje"
L["OnlyInCharacterTT"] = "Solo activa el prefijo / dialecto mientras estás \"En personaje\".\nRequiere el addon Total RP 3"
L["RuneSize"] = "Tamaño del glifo"
L["DisablePrefix"] = "Desactivar prefijo"
L["EnablePrefix"] = "Activar prefijo"
L["ShowSelectionButton"] = "Mostrar minibotón de idiomas"
L["ShowSelectionButtonTT"] = "Activa un pequeño botón en pantalla para acceder a la selección de idiomas aprendidos."
L["SelectLanguage"] = "Seleccionar idioma"
L["OpenMenu"] = "Abrir menú"
L["DragFrame"] = "Arrastrar marco"
L["LeftClick"] = "Clic izquierdo"
L["RightClick"] = "Clic derecho"
L["ShiftDrag"] = "MAYÚS + arrastrar"
L["DialectsTT"] = "Elegir un dialecto cambiará ciertas palabras que escribes por otras. Por ejemplo, convertir \"are not\" en \"aren't\". Cada idioma tiene su propio conjunto de palabras, y cada uno puede activarse o desactivarse."
L["Dialects2TT"] = "Las palabras pueden evitar su forma dialectal añadiendo guiones bajos a cada lado, como \"_are not_\". Esto mantendrá el término con su ortografía original y, además, eliminará los guiones bajos colocados a cada lado."
L["Contributors"] = "Colaboradores"
L["SpecialThanks"] = "¡Gracias a estas maravillosas personas que contribuyeron a este complemento!"
L["Common"] = "Lengua común" --7
L["Darnassian"] = "Darnassiano" --2
L["Dwarvish"] = "Enánico" --6
L["Gnomish"] = "Gnomótico" --13
L["Draenei"] = "Draenei" --35
L["Orcish"] = "Orco" --1
L["Zandali"] = "Zandali" --14
L["Taurahe"] = "Taurahe" --3
L["Forsaken"] = "Renegado" --33
L["Thalassian"] = "Thalassiano" --10
L["Goblin"] = "Goblin" --40
L["Shalassian"] = "Shalassiano" --181
L["Vulpera"] = "Vulpera" --285
L["Pandaren"] = "Pandaren" --42
L["Draconic"] = "Dracónico" --11
L["Demonic"] = "Demoníaco" --8
L["Titan"] = "Titánico" --9
L["Kalimag"] = "Kalimag" --12
L["Shath'Yar"] = "Shath'Yar" --178
L["Nerubian"] = "Nerubiano" --307
L["Sprite"] = "Duende" --168
L["Nerglish"] = "Nerglish" --179
L["Moonkin"] = "Lechúcico lunar" --180
L["Furbolg"] = "Fúrbolg" --303
L["Earthen"] = "Terráneo" --304
L["Hara'ni"] = "Hara'ni" --309
L["Gutterspeak"] = "Viscerálico"
L["AncientPandaren"] = "Pandaren antiguo"
L["Broker"] = "Negociante"
L["Cypher"] = "Códigos"
L["Arathi"] = "Arathi"
L["Mogu"] = "Mogu"
L["Ethereal"] = "Etéreo"
L["K'areshi"] = "K'areshi"
L["Gilnean"] = "gilneano"
L["KulTiranNoble"] = "Noble kultirano"
L["Mechagnome"] = "Mecagnomo"
L["DarkspearTrolls"] = "Trol Lanza Negra"
L["Sailor"] = "Marinero"