-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
locales.lua
1345 lines (1344 loc) · 69.1 KB
/
locales.lua
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 locales = {
["koKR"] = {
["Alliance"] = nil,
["All Quests"] = nil,
["and"] = nil,
["Area/Zone"] = nil,
["Buy"] = nil,
["|cff33ffcc<Click>|r Unfold/Fold Objectives\n|cff33ffcc<Right-Click>|r Show In QuestLog\n|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = nil,
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = nil,
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Mark As Done"] = nil,
["|cff33ffccpf|cffffffffQuest: Tracker is now hidden. Type `/db tracker` to show."] = nil,
["|cff33ffccpf|rQuest: New version available! Have a look at http://shagu.org !"] = nil,
["Clean"] = nil,
["Clean Database Results"] = nil,
["Clean Map"] = nil,
["Click Node To Change Color"] = nil,
["Close"] = nil,
["Close & Reload"] = nil,
["Close Tracker"] = nil,
["Color Map Nodes By Spawn"] = nil,
["Combined"] = nil,
["Completed Level"] = nil,
["Config"] = nil,
["custom items loaded."] = nil,
["Display addon locales"] = nil,
["Display all spawn points of each quest objective and hide summarized cluster icons."] = nil,
["Display Available Quest Givers"] = nil,
["Display Current Quest Givers"] = nil,
["Display Event & Daily Quests"] = nil,
["Display Level+3 Quest Givers"] = nil,
["Display Low Level Quest Givers"] = nil,
["Display related creatures and NPCs"] = nil,
["Display related items"] = nil,
["Display related objects like ores, herbs, chests, etc."] = nil,
["Display related quests"] = nil,
["Distance"] = nil,
["Do you really want to reset everything?"] = nil,
["Do you really want to reset the caches?"] = nil,
["Do you really want to reset the configuration?"] = nil,
["Do you really want to reset the quest history?"] = nil,
["Draw Favorites On Login"] = nil,
["Enable Minimap Button"] = nil,
["Enable Minimap Nodes"] = nil,
["Enable Quest Link Support"] = nil,
["Enable Quest Log Buttons"] = nil,
["Enable Quest Tracker"] = nil,
["Enable World Map Menu"] = nil,
["Exploration Mark"] = nil,
["Explore"] = nil,
["Explore |cff33ffcc%s|r"] = nil,
["Friendly"] = nil,
["General"] = nil,
["Herbalism"] = nil,
["Hide"] = nil,
["Hide browser window"] = nil,
["Hide Quests"] = nil,
["Highlight Nodes On Mouseover"] = nil,
["Hold <Ctrl> To Hide Cluster"] = nil,
["Hold <Ctrl> To Hide Minimap Nodes"] = nil,
["Horde"] = nil,
["Hostile"] = nil,
["Include Quest Enders"] = nil,
["Include Quest Starters"] = nil,
["Include Unified Quest Locations"] = nil,
["Interact with |cff33ffcc%s|r"] = nil,
["Interact with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = nil,
["Interact with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = nil,
["Items"] = nil,
["Journal"] = nil,
["Kill |cff33ffcc%s|r"] = nil,
["Left-Click"] = nil,
["Level"] = nil,
["Locales"] = nil,
["Location"] = nil,
["Loot"] = nil,
["Loot and/or Use |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = nil,
["Loot |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = nil,
["Looted from"] = nil,
["Manual Selection"] = nil,
["Map & Minimap"] = nil,
["Minimap Node Transparency"] = nil,
["Minimum Item Drop Chance"] = nil,
["Mining"] = nil,
["Move Button"] = nil,
["N/A"] = nil,
["Navigation Arrow"] = nil,
["Node Fade Transparency"] = nil,
["Object"] = nil,
["Objects"] = nil,
["Online Search"] = nil,
["Only show cluster icons with summarized objective locations based on spawn points"] = nil,
["Open Browser"] = nil,
["Open Configuration"] = nil,
["Open Database Browser"] = nil,
["Open Settings"] = nil,
["others"] = nil,
["Please select your preferred |cff33ffccpf|cffffffffQuest|r mode:"] = nil,
["Query the server for completed quests"] = nil,
["Quest End"] = nil,
["Quest history migration completed."] = nil,
["Questing"] = nil,
["Quest Level"] = nil,
["Quest Objective Icons (Mini Map)"] = nil,
["Quest Objective Icons (World Map)"] = nil,
["Quest Objective Spawn Points (Mini Map)"] = nil,
["Quest Objective Spawn Points (World Map)"] = nil,
["Quests"] = nil,
["Quest Start"] = nil,
["Quest Tracker Font Size"] = nil,
["Quest Tracker Unfold Objectives"] = nil,
["Quest Tracker Visibility"] = nil,
["Reaction"] = nil,
["Remove all manually searched objects from the map"] = nil,
["Required"] = nil,
["Required Level"] = nil,
["Reset"] = nil,
["Reset Cache"] = nil,
["Reset Configuration"] = nil,
["Reset Everything"] = nil,
["Reset Language"] = nil,
["Reset Map"] = nil,
["Reset Quest History"] = nil,
["Respawn"] = nil,
["Right-Click"] = nil,
["Routes"] = nil,
["Scanning server for items..."] = nil,
["Scan the server for custom items"] = nil,
["Search"] = nil,
["Search item vendors"] = nil,
["Search loot"] = nil,
["Search object"] = nil,
["Search unit"] = nil,
["Server scan started..."] = nil,
["Shift-Click"] = nil,
["Show"] = nil,
["Show all chests on map"] = nil,
["Show all quests on map"] = nil,
["Show all rare mobs of Level [min] to [max]"] = nil,
["Show all taxi nodes of [faction]"] = nil,
["Show Arrow Along Routes"] = nil,
["Show cluster icons with summarized locations and also display all spawn points of each quest objective"] = nil,
["Show configuration interface"] = nil,
["Show Current Quests"] = nil,
["Show Database IDs"] = nil,
["Show database interface"] = nil,
["Show Database Results"] = nil,
["Show Help On Tooltips"] = nil,
["Show herbs with an appropriate skill level for your character"] = nil,
["Show herbs with skill range of [min] to [max]"] = nil,
["Show Level On Quest Log"] = nil,
["Show Level On Quest Tracker"] = nil,
["Show map tracker"] = nil,
["Show mines with an appropriate skill level for your character"] = nil,
["Show mines with skill range of [min] to [max]"] = nil,
["Show Navigation Arrow"] = nil,
["Show navigation arrow that points you to the nearest quest location."] = nil,
["Show quest arrow"] = nil,
["Show Quest Givers"] = nil,
["Show quest journal"] = nil,
["Show Route Between Objects"] = nil,
["Show Route On Minimap"] = nil,
["Show specific quest"] = nil,
["Show Tooltips"] = nil,
["Simple Markers"] = nil,
["Sold by"] = nil,
["Spawn Points"] = nil,
["Speak with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = nil,
["Speak with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = nil,
["Talk to |cff33ffcc%s|r"] = nil,
["Toggle completed quest browser"] = nil,
["Too many entries. Results shown"] = nil,
["Tracked Quests"] = nil,
["Translate"] = nil,
["Trigger"] = nil,
["Type"] = nil,
["Unit"] = nil,
["Units"] = nil,
["Use |cff33ffcc%s|r at |cff33ffcc%s|r"] = nil,
["Use |cff33ffcc%s|r on |cff33ffcc%s|r"] = nil,
["Use Cut-Out Minimap Node Icons"] = nil,
["Use Cut-Out World Map Node Icons"] = nil,
["Use Monochrome Cluster Icons"] = nil,
["Use Quest Item at |cff33ffcc%s|r"] = nil,
["User Data"] = nil,
["Use <Shift>-Click To Mark Quest As Done"] = nil,
["Use <Shift>-Click To Remove Nodes"] = nil,
["Vendor"] = nil,
["World Map Node Transparency"] = nil,
["You already did this quest."] = nil,
["You are on this quest."] = nil,
["You don't have this quest."] = nil,
},
["frFR"] = {
["Alliance"] = nil,
["All Quests"] = nil,
["and"] = nil,
["Area/Zone"] = nil,
["Buy"] = nil,
["|cff33ffcc<Click>|r Unfold/Fold Objectives\n|cff33ffcc<Right-Click>|r Show In QuestLog\n|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = nil,
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = nil,
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Mark As Done"] = nil,
["|cff33ffccpf|cffffffffQuest: Tracker is now hidden. Type `/db tracker` to show."] = nil,
["|cff33ffccpf|rQuest: New version available! Have a look at http://shagu.org !"] = nil,
["Clean"] = nil,
["Clean Database Results"] = nil,
["Clean Map"] = nil,
["Click Node To Change Color"] = nil,
["Close"] = nil,
["Close & Reload"] = nil,
["Close Tracker"] = nil,
["Color Map Nodes By Spawn"] = nil,
["Combined"] = nil,
["Completed Level"] = nil,
["Config"] = nil,
["custom items loaded."] = nil,
["Display addon locales"] = nil,
["Display all spawn points of each quest objective and hide summarized cluster icons."] = nil,
["Display Available Quest Givers"] = nil,
["Display Current Quest Givers"] = nil,
["Display Event & Daily Quests"] = nil,
["Display Level+3 Quest Givers"] = nil,
["Display Low Level Quest Givers"] = nil,
["Display related creatures and NPCs"] = nil,
["Display related items"] = nil,
["Display related objects like ores, herbs, chests, etc."] = nil,
["Display related quests"] = nil,
["Distance"] = nil,
["Do you really want to reset everything?"] = nil,
["Do you really want to reset the caches?"] = nil,
["Do you really want to reset the configuration?"] = nil,
["Do you really want to reset the quest history?"] = nil,
["Draw Favorites On Login"] = nil,
["Enable Minimap Button"] = nil,
["Enable Minimap Nodes"] = nil,
["Enable Quest Link Support"] = nil,
["Enable Quest Log Buttons"] = nil,
["Enable Quest Tracker"] = nil,
["Enable World Map Menu"] = nil,
["Exploration Mark"] = nil,
["Explore"] = nil,
["Explore |cff33ffcc%s|r"] = nil,
["Friendly"] = nil,
["General"] = nil,
["Herbalism"] = nil,
["Hide"] = nil,
["Hide browser window"] = nil,
["Hide Quests"] = nil,
["Highlight Nodes On Mouseover"] = nil,
["Hold <Ctrl> To Hide Cluster"] = nil,
["Hold <Ctrl> To Hide Minimap Nodes"] = nil,
["Horde"] = nil,
["Hostile"] = nil,
["Include Quest Enders"] = nil,
["Include Quest Starters"] = nil,
["Include Unified Quest Locations"] = nil,
["Interact with |cff33ffcc%s|r"] = nil,
["Interact with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = nil,
["Interact with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = nil,
["Items"] = nil,
["Journal"] = nil,
["Kill |cff33ffcc%s|r"] = nil,
["Left-Click"] = nil,
["Level"] = nil,
["Locales"] = nil,
["Location"] = nil,
["Loot"] = nil,
["Loot and/or Use |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = nil,
["Loot |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = nil,
["Looted from"] = nil,
["Manual Selection"] = nil,
["Map & Minimap"] = nil,
["Minimap Node Transparency"] = nil,
["Minimum Item Drop Chance"] = nil,
["Mining"] = nil,
["Move Button"] = nil,
["N/A"] = nil,
["Navigation Arrow"] = nil,
["Node Fade Transparency"] = nil,
["Object"] = nil,
["Objects"] = nil,
["Online Search"] = nil,
["Only show cluster icons with summarized objective locations based on spawn points"] = nil,
["Open Browser"] = nil,
["Open Configuration"] = nil,
["Open Database Browser"] = nil,
["Open Settings"] = nil,
["others"] = nil,
["Please select your preferred |cff33ffccpf|cffffffffQuest|r mode:"] = nil,
["Query the server for completed quests"] = nil,
["Quest End"] = nil,
["Quest history migration completed."] = nil,
["Questing"] = nil,
["Quest Level"] = nil,
["Quest Objective Icons (Mini Map)"] = nil,
["Quest Objective Icons (World Map)"] = nil,
["Quest Objective Spawn Points (Mini Map)"] = nil,
["Quest Objective Spawn Points (World Map)"] = nil,
["Quests"] = nil,
["Quest Start"] = nil,
["Quest Tracker Font Size"] = nil,
["Quest Tracker Unfold Objectives"] = nil,
["Quest Tracker Visibility"] = nil,
["Reaction"] = nil,
["Remove all manually searched objects from the map"] = nil,
["Required"] = nil,
["Required Level"] = nil,
["Reset"] = nil,
["Reset Cache"] = nil,
["Reset Configuration"] = nil,
["Reset Everything"] = nil,
["Reset Language"] = nil,
["Reset Map"] = nil,
["Reset Quest History"] = nil,
["Respawn"] = nil,
["Right-Click"] = nil,
["Routes"] = nil,
["Scanning server for items..."] = nil,
["Scan the server for custom items"] = nil,
["Search"] = nil,
["Search item vendors"] = nil,
["Search loot"] = nil,
["Search object"] = nil,
["Search unit"] = nil,
["Server scan started..."] = nil,
["Shift-Click"] = nil,
["Show"] = nil,
["Show all chests on map"] = nil,
["Show all quests on map"] = nil,
["Show all rare mobs of Level [min] to [max]"] = nil,
["Show all taxi nodes of [faction]"] = nil,
["Show Arrow Along Routes"] = nil,
["Show cluster icons with summarized locations and also display all spawn points of each quest objective"] = nil,
["Show configuration interface"] = nil,
["Show Current Quests"] = nil,
["Show Database IDs"] = nil,
["Show database interface"] = nil,
["Show Database Results"] = nil,
["Show Help On Tooltips"] = nil,
["Show herbs with an appropriate skill level for your character"] = nil,
["Show herbs with skill range of [min] to [max]"] = nil,
["Show Level On Quest Log"] = nil,
["Show Level On Quest Tracker"] = nil,
["Show map tracker"] = nil,
["Show mines with an appropriate skill level for your character"] = nil,
["Show mines with skill range of [min] to [max]"] = nil,
["Show Navigation Arrow"] = nil,
["Show navigation arrow that points you to the nearest quest location."] = nil,
["Show quest arrow"] = nil,
["Show Quest Givers"] = nil,
["Show quest journal"] = nil,
["Show Route Between Objects"] = nil,
["Show Route On Minimap"] = nil,
["Show specific quest"] = nil,
["Show Tooltips"] = nil,
["Simple Markers"] = nil,
["Sold by"] = nil,
["Spawn Points"] = nil,
["Speak with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = nil,
["Speak with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = nil,
["Talk to |cff33ffcc%s|r"] = nil,
["Toggle completed quest browser"] = nil,
["Too many entries. Results shown"] = nil,
["Tracked Quests"] = nil,
["Translate"] = nil,
["Trigger"] = nil,
["Type"] = nil,
["Unit"] = nil,
["Units"] = nil,
["Use |cff33ffcc%s|r at |cff33ffcc%s|r"] = nil,
["Use |cff33ffcc%s|r on |cff33ffcc%s|r"] = nil,
["Use Cut-Out Minimap Node Icons"] = nil,
["Use Cut-Out World Map Node Icons"] = nil,
["Use Monochrome Cluster Icons"] = nil,
["Use Quest Item at |cff33ffcc%s|r"] = nil,
["User Data"] = nil,
["Use <Shift>-Click To Mark Quest As Done"] = nil,
["Use <Shift>-Click To Remove Nodes"] = nil,
["Vendor"] = nil,
["World Map Node Transparency"] = nil,
["You already did this quest."] = nil,
["You are on this quest."] = nil,
["You don't have this quest."] = nil,
},
["deDE"] = {
["Alliance"] = nil,
["All Quests"] = nil,
["and"] = nil,
["Area/Zone"] = nil,
["Buy"] = nil,
["|cff33ffcc<Click>|r Unfold/Fold Objectives\n|cff33ffcc<Right-Click>|r Show In QuestLog\n|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = nil,
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = nil,
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Mark As Done"] = nil,
["|cff33ffccpf|cffffffffQuest: Tracker is now hidden. Type `/db tracker` to show."] = nil,
["|cff33ffccpf|rQuest: New version available! Have a look at http://shagu.org !"] = nil,
["Clean"] = nil,
["Clean Database Results"] = nil,
["Clean Map"] = nil,
["Click Node To Change Color"] = nil,
["Close"] = nil,
["Close & Reload"] = nil,
["Close Tracker"] = nil,
["Color Map Nodes By Spawn"] = nil,
["Combined"] = nil,
["Completed Level"] = nil,
["Config"] = nil,
["custom items loaded."] = nil,
["Display addon locales"] = nil,
["Display all spawn points of each quest objective and hide summarized cluster icons."] = nil,
["Display Available Quest Givers"] = nil,
["Display Current Quest Givers"] = nil,
["Display Event & Daily Quests"] = nil,
["Display Level+3 Quest Givers"] = nil,
["Display Low Level Quest Givers"] = nil,
["Display related creatures and NPCs"] = nil,
["Display related items"] = nil,
["Display related objects like ores, herbs, chests, etc."] = nil,
["Display related quests"] = nil,
["Distance"] = nil,
["Do you really want to reset everything?"] = nil,
["Do you really want to reset the caches?"] = nil,
["Do you really want to reset the configuration?"] = nil,
["Do you really want to reset the quest history?"] = nil,
["Draw Favorites On Login"] = nil,
["Enable Minimap Button"] = nil,
["Enable Minimap Nodes"] = nil,
["Enable Quest Link Support"] = nil,
["Enable Quest Log Buttons"] = nil,
["Enable Quest Tracker"] = nil,
["Enable World Map Menu"] = nil,
["Exploration Mark"] = nil,
["Explore"] = nil,
["Explore |cff33ffcc%s|r"] = nil,
["Friendly"] = nil,
["General"] = nil,
["Herbalism"] = nil,
["Hide"] = nil,
["Hide browser window"] = nil,
["Hide Quests"] = nil,
["Highlight Nodes On Mouseover"] = nil,
["Hold <Ctrl> To Hide Cluster"] = nil,
["Hold <Ctrl> To Hide Minimap Nodes"] = nil,
["Horde"] = nil,
["Hostile"] = nil,
["Include Quest Enders"] = nil,
["Include Quest Starters"] = nil,
["Include Unified Quest Locations"] = nil,
["Interact with |cff33ffcc%s|r"] = nil,
["Interact with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = nil,
["Interact with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = nil,
["Items"] = nil,
["Journal"] = nil,
["Kill |cff33ffcc%s|r"] = nil,
["Left-Click"] = nil,
["Level"] = nil,
["Locales"] = nil,
["Location"] = nil,
["Loot"] = nil,
["Loot and/or Use |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = nil,
["Loot |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = nil,
["Looted from"] = nil,
["Manual Selection"] = nil,
["Map & Minimap"] = nil,
["Minimap Node Transparency"] = nil,
["Minimum Item Drop Chance"] = nil,
["Mining"] = nil,
["Move Button"] = nil,
["N/A"] = nil,
["Navigation Arrow"] = nil,
["Node Fade Transparency"] = nil,
["Object"] = nil,
["Objects"] = nil,
["Online Search"] = nil,
["Only show cluster icons with summarized objective locations based on spawn points"] = nil,
["Open Browser"] = nil,
["Open Configuration"] = nil,
["Open Database Browser"] = nil,
["Open Settings"] = nil,
["others"] = nil,
["Please select your preferred |cff33ffccpf|cffffffffQuest|r mode:"] = nil,
["Query the server for completed quests"] = nil,
["Quest End"] = nil,
["Quest history migration completed."] = nil,
["Questing"] = nil,
["Quest Level"] = nil,
["Quest Objective Icons (Mini Map)"] = nil,
["Quest Objective Icons (World Map)"] = nil,
["Quest Objective Spawn Points (Mini Map)"] = nil,
["Quest Objective Spawn Points (World Map)"] = nil,
["Quests"] = nil,
["Quest Start"] = nil,
["Quest Tracker Font Size"] = nil,
["Quest Tracker Unfold Objectives"] = nil,
["Quest Tracker Visibility"] = nil,
["Reaction"] = nil,
["Remove all manually searched objects from the map"] = nil,
["Required"] = nil,
["Required Level"] = nil,
["Reset"] = nil,
["Reset Cache"] = nil,
["Reset Configuration"] = nil,
["Reset Everything"] = nil,
["Reset Language"] = nil,
["Reset Map"] = nil,
["Reset Quest History"] = nil,
["Respawn"] = nil,
["Right-Click"] = nil,
["Routes"] = nil,
["Scanning server for items..."] = nil,
["Scan the server for custom items"] = nil,
["Search"] = nil,
["Search item vendors"] = nil,
["Search loot"] = nil,
["Search object"] = nil,
["Search unit"] = nil,
["Server scan started..."] = nil,
["Shift-Click"] = nil,
["Show"] = nil,
["Show all chests on map"] = nil,
["Show all quests on map"] = nil,
["Show all rare mobs of Level [min] to [max]"] = nil,
["Show all taxi nodes of [faction]"] = nil,
["Show Arrow Along Routes"] = nil,
["Show cluster icons with summarized locations and also display all spawn points of each quest objective"] = nil,
["Show configuration interface"] = nil,
["Show Current Quests"] = nil,
["Show Database IDs"] = nil,
["Show database interface"] = nil,
["Show Database Results"] = nil,
["Show Help On Tooltips"] = nil,
["Show herbs with an appropriate skill level for your character"] = nil,
["Show herbs with skill range of [min] to [max]"] = nil,
["Show Level On Quest Log"] = nil,
["Show Level On Quest Tracker"] = nil,
["Show map tracker"] = nil,
["Show mines with an appropriate skill level for your character"] = nil,
["Show mines with skill range of [min] to [max]"] = nil,
["Show Navigation Arrow"] = nil,
["Show navigation arrow that points you to the nearest quest location."] = nil,
["Show quest arrow"] = nil,
["Show Quest Givers"] = nil,
["Show quest journal"] = nil,
["Show Route Between Objects"] = nil,
["Show Route On Minimap"] = nil,
["Show specific quest"] = nil,
["Show Tooltips"] = nil,
["Simple Markers"] = nil,
["Sold by"] = nil,
["Spawn Points"] = nil,
["Speak with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = nil,
["Speak with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = nil,
["Talk to |cff33ffcc%s|r"] = nil,
["Toggle completed quest browser"] = nil,
["Too many entries. Results shown"] = nil,
["Tracked Quests"] = nil,
["Translate"] = nil,
["Trigger"] = nil,
["Type"] = nil,
["Unit"] = nil,
["Units"] = nil,
["Use |cff33ffcc%s|r at |cff33ffcc%s|r"] = nil,
["Use |cff33ffcc%s|r on |cff33ffcc%s|r"] = nil,
["Use Cut-Out Minimap Node Icons"] = nil,
["Use Cut-Out World Map Node Icons"] = nil,
["Use Monochrome Cluster Icons"] = nil,
["Use Quest Item at |cff33ffcc%s|r"] = nil,
["User Data"] = nil,
["Use <Shift>-Click To Mark Quest As Done"] = nil,
["Use <Shift>-Click To Remove Nodes"] = nil,
["Vendor"] = nil,
["World Map Node Transparency"] = nil,
["You already did this quest."] = nil,
["You are on this quest."] = nil,
["You don't have this quest."] = nil,
},
["zhCN"] = {
["Alliance"] = "联盟",
["All Quests"] = "所有任务",
["and"] = "和其他",
["Area/Zone"] = "领域/地区",
["Buy"] = "购买",
["|cff33ffcc<Click>|r Unfold/Fold Objectives\n|cff33ffcc<Right-Click>|r Show In QuestLog\n|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = "|cff33ffcc<单击>|r 展开/折叠目标\n|cff33ffcc<鼠标右键-单击>|r 显示任务日志\n|cff33ffcc<Ctrl-单击>|r 显示地图/切换颜色\n|cff33ffcc<Shift-单击>|r 隐藏节点",
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = "|cff33ffcc<Ctrl-单击>|r 显示地图/切换颜色\n|cff33ffcc<Shift-单击>|r 隐藏节点",
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Mark As Done"] = "|cff33ffcc<Ctrl-单击>|r 显示地图/切换颜色\n|cff33ffcc<Shift-单击>|r 标记任务为已完成",
["|cff33ffccpf|cffffffffQuest: Tracker is now hidden. Type `/db tracker` to show."] = "|cff33ffccpf|cffffffffQuest: 任务追踪器已关闭。通过输入`/db tracker`以再次显示。",
["|cff33ffccpf|rQuest: New version available! Have a look at http://shagu.org !"] = "|cff33ffccpf|rQuest: 新版本已上线!请到http://shagu.org查看!",
["Clean"] = "清空",
["Clean Database Results"] = "清空数据库",
["Clean Map"] = "清空地图标记",
["Click Node To Change Color"] = "点击以改变颜色",
["Close"] = "关闭",
["Close & Reload"] = "关闭并重载",
["Close Tracker"] = "关闭追踪器",
["Color Map Nodes By Spawn"] = "按生成涂色地图节点",
["Combined"] = nil,
["Completed Level"] = "达成等级",
["Config"] = "配置",
["custom items loaded."] = "自定义物品已载入",
["Display addon locales"] = "显示插件本地化文本",
["Display all spawn points of each quest objective and hide summarized cluster icons."] = nil,
["Display Available Quest Givers"] = "显示可能的任务发放者",
["Display Current Quest Givers"] = "显示当前的任务发放者",
["Display Event & Daily Quests"] = "显示世界事件和日常任务",
["Display Level+3 Quest Givers"] = "显示高3级的任务发放者",
["Display Low Level Quest Givers"] = "显示低等级任务发放者",
["Display related creatures and NPCs"] = "显示与任务相关的生物和NPC",
["Display related items"] = "显示与任务相关的物品",
["Display related objects like ores, herbs, chests, etc."] = "显示与任务相关的道具(诸如:矿脉、草药、宝箱,等等)",
["Display related quests"] = "显示相关任务",
["Distance"] = "距离",
["Do you really want to reset everything?"] = "你是否要全部重置?",
["Do you really want to reset the caches?"] = nil,
["Do you really want to reset the configuration?"] = "你是否要重置配置?",
["Do you really want to reset the quest history?"] = "你是否要重置历史任务?",
["Draw Favorites On Login"] = "登录时绘制收藏夹",
["Enable Minimap Button"] = "启用小地图按钮",
["Enable Minimap Nodes"] = "启用小地图节点",
["Enable Quest Link Support"] = "启用任务链接",
["Enable Quest Log Buttons"] = "启用任务日志",
["Enable Quest Tracker"] = "启用任务追踪器",
["Enable World Map Menu"] = "启用世界地图菜单",
["Exploration Mark"] = "探索标志",
["Explore"] = "探索",
["Explore |cff33ffcc%s|r"] = "探索 |cff33ffcc%s|r",
["Friendly"] = "友善",
["General"] = "常规",
["Herbalism"] = nil,
["Hide"] = "隐藏",
["Hide browser window"] = "关闭窗口",
["Hide Quests"] = "隐藏任务",
["Highlight Nodes On Mouseover"] = "高亮鼠标划过的节点",
["Hold <Ctrl> To Hide Cluster"] = "按住<Ctrl>以隐藏群组",
["Hold <Ctrl> To Hide Minimap Nodes"] = "按住<Ctrl>以隐藏小地图节点",
["Horde"] = "部落",
["Hostile"] = "敌对",
["Include Quest Enders"] = "包含任务终结者",
["Include Quest Starters"] = "包含任务起始者",
["Include Unified Quest Locations"] = "包含统一的任务坐标",
["Interact with |cff33ffcc%s|r"] = "与|cff33ffcc%s|r交谈",
["Interact with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = "与|cff33ffcc%s|r交谈以完成|cffffcc00[?]|cff33ffcc %s|r",
["Interact with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = "与|cff33ffcc%s|r交谈来获得|cffffcc00[!]|cff33ffcc %s|r",
["Items"] = "物品",
["Journal"] = "日志",
["Kill |cff33ffcc%s|r"] = "击杀 |cff33ffcc%s|r",
["Left-Click"] = "鼠标左键-单击",
["Level"] = "等级",
["Locales"] = "本地化文本",
["Location"] = "位置",
["Loot"] = "拾取",
["Loot and/or Use |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = "从|cff33ffcc%s|r拾取或使用|cff33ffcc[%s]|r",
["Loot |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = "从|cff33ffcc%s|r拾取|cff33ffcc[%s]|r",
["Looted from"] = "掉落自",
["Manual Selection"] = "手动选项",
["Map & Minimap"] = "地图",
["Minimap Node Transparency"] = "小地图节点透明度",
["Minimum Item Drop Chance"] = "物品的基础掉落几率",
["Mining"] = nil,
["Move Button"] = "移动按钮",
["N/A"] = "无",
["Navigation Arrow"] = nil,
["Node Fade Transparency"] = "节点的渐隐透明度",
["Object"] = "道具",
["Objects"] = "道具",
["Online Search"] = "在线查找",
["Only show cluster icons with summarized objective locations based on spawn points"] = nil,
["Open Browser"] = "浏览器",
["Open Configuration"] = "配置",
["Open Database Browser"] = "数据浏览器",
["Open Settings"] = "设置",
["others"] = "项",
["Please select your preferred |cff33ffccpf|cffffffffQuest|r mode:"] = nil,
["Query the server for completed quests"] = nil,
["Quest End"] = "任务结束",
["Quest history migration completed."] = "历史任务迁移成功",
["Questing"] = "任务",
["Quest Level"] = "任务等级",
["Quest Objective Icons (Mini Map)"] = nil,
["Quest Objective Icons (World Map)"] = nil,
["Quest Objective Spawn Points (Mini Map)"] = nil,
["Quest Objective Spawn Points (World Map)"] = nil,
["Quests"] = "任务",
["Quest Start"] = "任务开始",
["Quest Tracker Font Size"] = "任务追踪器字体尺寸",
["Quest Tracker Unfold Objectives"] = nil,
["Quest Tracker Visibility"] = "任务追踪器可见度",
["Reaction"] = "关系",
["Remove all manually searched objects from the map"] = "从地图中移除所有手动搜索的对象",
["Required"] = "最低",
["Required Level"] = "所需等级",
["Reset"] = "重置",
["Reset Cache"] = "重置缓存",
["Reset Configuration"] = "重置配置",
["Reset Everything"] = "全部重置",
["Reset Language"] = "重置语言",
["Reset Map"] = "重置地图",
["Reset Quest History"] = "重置历史任务",
["Respawn"] = "刷新",
["Right-Click"] = "鼠标右键-单击",
["Routes"] = "路径",
["Scanning server for items..."] = "正在扫描服务器以查找物品...",
["Scan the server for custom items"] = "扫描该服务器以查找自定义物品",
["Search"] = "搜索",
["Search item vendors"] = "搜索物品商人",
["Search loot"] = "搜索掉落",
["Search object"] = "搜索物品",
["Search unit"] = "搜索物体",
["Server scan started..."] = "服务器扫描已启动...",
["Shift-Click"] = "Shift-单击",
["Show"] = "显示",
["Show all chests on map"] = "在地图上显示所有宝箱",
["Show all quests on map"] = "在地图上显示所有任务",
["Show all rare mobs of Level [min] to [max]"] = "按等级由低到高显示所有的稀有怪物",
["Show all taxi nodes of [faction]"] = "显示你所在阵营的所有交通点",
["Show Arrow Along Routes"] = "沿路径显示箭头",
["Show cluster icons with summarized locations and also display all spawn points of each quest objective"] = nil,
["Show configuration interface"] = "显示配置",
["Show Current Quests"] = "显示已有的任务",
["Show Database IDs"] = "显示数据库ID",
["Show database interface"] = "显示数据库",
["Show Database Results"] = "显示数据库结果",
["Show Help On Tooltips"] = "在提示框上显示帮助",
["Show herbs with an appropriate skill level for your character"] = "显示适合你技能等级的草药",
["Show herbs with skill range of [min] to [max]"] = "显示草药需要的技能区间",
["Show Level On Quest Log"] = "在任务日志上显示等级",
["Show Level On Quest Tracker"] = "在任务追踪器上显示等级",
["Show map tracker"] = "显示地图追踪器",
["Show mines with an appropriate skill level for your character"] = "显示适合你技能等级的矿脉",
["Show mines with skill range of [min] to [max]"] = "显示矿脉需要的技能区间",
["Show Navigation Arrow"] = nil,
["Show navigation arrow that points you to the nearest quest location."] = nil,
["Show quest arrow"] = "显示任务导航",
["Show Quest Givers"] = "显示任务发放者",
["Show quest journal"] = "显示任务日志",
["Show Route Between Objects"] = "在物品之间显示路径",
["Show Route On Minimap"] = "在小地图显示路径",
["Show specific quest"] = "显示特殊任务",
["Show Tooltips"] = "显示提示框",
["Simple Markers"] = nil,
["Sold by"] = "售卖自",
["Spawn Points"] = nil,
["Speak with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = "与|cff33ffcc%s|r对话以完成|cffffcc00[?]|cff33ffcc %s|r",
["Speak with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = "与|cff33ffcc%s|r对话来获得|cffffcc00[!]|cff33ffcc %s|r",
["Talk to |cff33ffcc%s|r"] = nil,
["Toggle completed quest browser"] = "浏览已完成的任务记录",
["Too many entries. Results shown"] = "条目太多。结果显示",
["Tracked Quests"] = "追踪任务",
["Translate"] = "翻译",
["Trigger"] = "触发",
["Type"] = "类型",
["Unit"] = "生物",
["Units"] = "明细",
["Use |cff33ffcc%s|r at |cff33ffcc%s|r"] = "在|cff33ffcc%s|r使用|cff33ffcc%s|r",
["Use |cff33ffcc%s|r on |cff33ffcc%s|r"] = "对|cff33ffcc%s|r使用|cff33ffcc%s|r",
["Use Cut-Out Minimap Node Icons"] = "小地图使用空心图样",
["Use Cut-Out World Map Node Icons"] = "世界地图使用空心图样",
["Use Monochrome Cluster Icons"] = "使用单色群组图标",
["Use Quest Item at |cff33ffcc%s|r"] = "在|cff33ffcc%s|r使用任务物品",
["User Data"] = "数据",
["Use <Shift>-Click To Mark Quest As Done"] = "通过<Shift>-单击将标记任务为已完成",
["Use <Shift>-Click To Remove Nodes"] = "通过<Shift>-单击来移除节点",
["Vendor"] = "商人",
["World Map Node Transparency"] = "世界地图节点的透明度",
["You already did this quest."] = "你已经做过这个任务了",
["You are on this quest."] = "你正在做这个任务",
["You don't have this quest."] = "你还没有接到这个任务",
},
["zhTW"] = {
["Alliance"] = "聯盟",
["All Quests"] = "所有任務",
["and"] = "和其他",
["Area/Zone"] = "領域/地區",
["Buy"] = "購買",
["|cff33ffcc<Click>|r Unfold/Fold Objectives\n|cff33ffcc<Right-Click>|r Show In QuestLog\n|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = "|cff33ffcc<單擊>|r 展開/折疊目標\n|cff33ffcc<鼠標右鍵-單擊>|r 顯示任務日志\n|cff33ffcc<Ctrl-單擊>|r 顯示地圖/切換顏色\n|cff33ffcc<Shift-單擊>|r 隱藏節點",
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = "|cff33ffcc<Ctrl-單擊>|r 顯示地圖/切換顏色\n|cff33ffcc<Shift-單擊>|r 隱藏節點",
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Mark As Done"] = "|cff33ffcc<Ctrl-單擊>|r 顯示地圖/切換顏色\n|cff33ffcc<Shift-單擊>|r 標記任務為已完成",
["|cff33ffccpf|cffffffffQuest: Tracker is now hidden. Type `/db tracker` to show."] = "|cff33ffccpf|cffffffffQuest: 任務追蹤器已關閉。通過輸入`/db tracker`以再次顯示。",
["|cff33ffccpf|rQuest: New version available! Have a look at http://shagu.org !"] = "|cff33ffccpf|rQuest: 新版本已上線!請到http://shagu.org查看!",
["Clean"] = "清空",
["Clean Database Results"] = "清空數據庫",
["Clean Map"] = "清空地圖標記",
["Click Node To Change Color"] = "點擊以改變顏色",
["Close"] = "關閉",
["Close & Reload"] = "關閉并重載",
["Close Tracker"] = "關閉追蹤器",
["Color Map Nodes By Spawn"] = "按生成涂色地圖節點",
["Combined"] = nil,
["Completed Level"] = "達成等級",
["Config"] = "配置",
["custom items loaded."] = "自定義物品已載入",
["Display addon locales"] = "顯示插件本地化文本",
["Display all spawn points of each quest objective and hide summarized cluster icons."] = nil,
["Display Available Quest Givers"] = "顯示可能的任務發放者",
["Display Current Quest Givers"] = "顯示當前的任務發放者",
["Display Event & Daily Quests"] = "顯示世界事件和日常任務",
["Display Level+3 Quest Givers"] = "顯示高3級的任務發放者",
["Display Low Level Quest Givers"] = "顯示低等級任務發放者",
["Display related creatures and NPCs"] = "顯示與任務相關的生物和NPC",
["Display related items"] = "顯示與任務相關的物品",
["Display related objects like ores, herbs, chests, etc."] = "顯示與任務相關的道具(諸如:礦脈、草藥、寶箱,等等)",
["Display related quests"] = "顯示相關任務",
["Distance"] = "距離",
["Do you really want to reset everything?"] = "你是否要全部重置?",
["Do you really want to reset the caches?"] = nil,
["Do you really want to reset the configuration?"] = "你是否要重置配置?",
["Do you really want to reset the quest history?"] = "你是否要重置歷史任務?",
["Draw Favorites On Login"] = "登錄時繪制收藏夾",
["Enable Minimap Button"] = "啟用小地圖按鈕",
["Enable Minimap Nodes"] = "啟用小地圖節點",
["Enable Quest Link Support"] = "啟用任務鏈接",
["Enable Quest Log Buttons"] = "啟用任務日志",
["Enable Quest Tracker"] = "啟用任務追蹤器",
["Enable World Map Menu"] = "啟用世界地圖菜單",
["Exploration Mark"] = "探索標志",
["Explore"] = "探索",
["Explore |cff33ffcc%s|r"] = "探索 |cff33ffcc%s|r",
["Friendly"] = "友善",
["General"] = "常規",
["Herbalism"] = nil,
["Hide"] = "隱藏",
["Hide browser window"] = "關閉窗口",
["Hide Quests"] = "隱藏任務",
["Highlight Nodes On Mouseover"] = "高亮鼠標劃過的節點",
["Hold <Ctrl> To Hide Cluster"] = "按住<Ctrl>以隱藏群組",
["Hold <Ctrl> To Hide Minimap Nodes"] = "按住<Ctrl>以隱藏小地圖節點",
["Horde"] = "部落",
["Hostile"] = "敵對",
["Include Quest Enders"] = "包含任務終結者",
["Include Quest Starters"] = "包含任務起始者",
["Include Unified Quest Locations"] = "包含統一的任務坐標",
["Interact with |cff33ffcc%s|r"] = "與|cff33ffcc%s|r交談",
["Interact with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = "與|cff33ffcc%s|r交談以完成|cffffcc00[?]|cff33ffcc %s|r",
["Interact with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = "與|cff33ffcc%s|r交談來獲得|cffffcc00[!]|cff33ffcc %s|r",
["Items"] = "物品",
["Journal"] = "日志",
["Kill |cff33ffcc%s|r"] = "擊殺 |cff33ffcc%s|r",
["Left-Click"] = "鼠標左鍵-單擊",
["Level"] = "等級",
["Locales"] = "本地化文本",
["Location"] = "位置",
["Loot"] = "拾取",
["Loot and/or Use |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = "從|cff33ffcc%s|r拾取或使用|cff33ffcc[%s]|r",
["Loot |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = "從|cff33ffcc%s|r拾取|cff33ffcc[%s]|r",
["Looted from"] = "掉落自",
["Manual Selection"] = "手動選項",
["Map & Minimap"] = "地圖",
["Minimap Node Transparency"] = "小地圖節點透明度",
["Minimum Item Drop Chance"] = "物品的基礎掉落幾率",
["Mining"] = nil,
["Move Button"] = "移動按鈕",
["N/A"] = "無",
["Navigation Arrow"] = nil,
["Node Fade Transparency"] = "節點的漸隱透明度",
["Object"] = "道具",
["Objects"] = "道具",
["Online Search"] = "在線查找",
["Only show cluster icons with summarized objective locations based on spawn points"] = nil,
["Open Browser"] = "瀏覽器",
["Open Configuration"] = "配置",
["Open Database Browser"] = "數據瀏覽器",
["Open Settings"] = "設置",
["others"] = "項",
["Please select your preferred |cff33ffccpf|cffffffffQuest|r mode:"] = nil,
["Query the server for completed quests"] = nil,
["Quest End"] = "任務結束",
["Quest history migration completed."] = "歷史任務遷移成功",
["Questing"] = "任務",
["Quest Level"] = "任務等級",
["Quest Objective Icons (Mini Map)"] = nil,
["Quest Objective Icons (World Map)"] = nil,
["Quest Objective Spawn Points (Mini Map)"] = nil,
["Quest Objective Spawn Points (World Map)"] = nil,
["Quests"] = "任務",
["Quest Start"] = "任務開始",
["Quest Tracker Font Size"] = "任務追蹤器字體尺寸",
["Quest Tracker Unfold Objectives"] = nil,
["Quest Tracker Visibility"] = "任務追蹤器可見度",
["Reaction"] = "關系",
["Remove all manually searched objects from the map"] = "從地圖中移除所有手動搜索的對象",
["Required"] = "最低",
["Required Level"] = "所需等級",
["Reset"] = "重置",
["Reset Cache"] = "重置緩存",
["Reset Configuration"] = "重置配置",
["Reset Everything"] = "全部重置",
["Reset Language"] = "重置語言",
["Reset Map"] = "重置地圖",
["Reset Quest History"] = "重置歷史任務",
["Respawn"] = "刷新",
["Right-Click"] = "鼠標右鍵-單擊",
["Routes"] = "路徑",
["Scanning server for items..."] = "正在掃描服務器以查找物品...",
["Scan the server for custom items"] = "掃描該服務器以查找自定義物品",
["Search"] = "搜索",
["Search item vendors"] = "搜索物品商人",
["Search loot"] = "搜索掉落",
["Search object"] = "搜索物品",
["Search unit"] = "搜索物體",
["Server scan started..."] = "服務器掃描已啟動...",
["Shift-Click"] = "Shift-單擊",
["Show"] = "顯示",
["Show all chests on map"] = "在地圖上顯示所有寶箱",
["Show all quests on map"] = "在地圖上顯示所有任務",
["Show all rare mobs of Level [min] to [max]"] = "按等級由低到高顯示所有的稀有怪物",
["Show all taxi nodes of [faction]"] = "顯示你所在陣營的所有交通點",
["Show Arrow Along Routes"] = "沿路徑顯示箭頭",
["Show cluster icons with summarized locations and also display all spawn points of each quest objective"] = nil,
["Show configuration interface"] = "顯示配置",
["Show Current Quests"] = "顯示已有的任務",
["Show Database IDs"] = "顯示數據庫ID",
["Show database interface"] = "顯示數據庫",
["Show Database Results"] = "顯示數據庫結果",
["Show Help On Tooltips"] = "在提示框上顯示幫助",
["Show herbs with an appropriate skill level for your character"] = "顯示適合你技能等級的草藥",
["Show herbs with skill range of [min] to [max]"] = "顯示草藥需要的技能區間",
["Show Level On Quest Log"] = "在任務日志上顯示等級",
["Show Level On Quest Tracker"] = "在任務追蹤器上顯示等級",
["Show map tracker"] = "顯示地圖追蹤器",
["Show mines with an appropriate skill level for your character"] = "顯示適合你技能等級的礦脈",
["Show mines with skill range of [min] to [max]"] = "顯示礦脈需要的技能區間",
["Show Navigation Arrow"] = nil,
["Show navigation arrow that points you to the nearest quest location."] = nil,
["Show quest arrow"] = "顯示任務導航",
["Show Quest Givers"] = "顯示任務發放者",
["Show quest journal"] = "顯示任務日志",
["Show Route Between Objects"] = "在物品之間顯示路徑",
["Show Route On Minimap"] = "在小地圖顯示路徑",
["Show specific quest"] = "顯示特殊任務",
["Show Tooltips"] = "顯示提示框",
["Simple Markers"] = nil,
["Sold by"] = "售賣自",
["Spawn Points"] = nil,
["Speak with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = "與|cff33ffcc%s|r對話以完成|cffffcc00[?]|cff33ffcc %s|r",
["Speak with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = "與|cff33ffcc%s|r對話來獲得|cffffcc00[!]|cff33ffcc %s|r",
["Talk to |cff33ffcc%s|r"] = nil,
["Toggle completed quest browser"] = "瀏覽已完成的任務記錄",
["Too many entries. Results shown"] = "條目太多。結果顯示",
["Tracked Quests"] = "追蹤任務",
["Translate"] = "翻譯",
["Trigger"] = "觸發",
["Type"] = "類型",
["Unit"] = "生物",
["Units"] = "明細",
["Use |cff33ffcc%s|r at |cff33ffcc%s|r"] = "在|cff33ffcc%s|r使用|cff33ffcc%s|r",
["Use |cff33ffcc%s|r on |cff33ffcc%s|r"] = "對|cff33ffcc%s|r使用|cff33ffcc%s|r",
["Use Cut-Out Minimap Node Icons"] = "小地圖使用空心圖樣",
["Use Cut-Out World Map Node Icons"] = "世界地圖使用空心圖樣",
["Use Monochrome Cluster Icons"] = "使用單色群組圖標",
["Use Quest Item at |cff33ffcc%s|r"] = "在|cff33ffcc%s|r使用任務物品",
["User Data"] = "數據",
["Use <Shift>-Click To Mark Quest As Done"] = "通過<Shift>-單擊將標記任務為已完成",
["Use <Shift>-Click To Remove Nodes"] = "通過<Shift>-單擊來移除節點",
["Vendor"] = "商人",
["World Map Node Transparency"] = "世界地圖節點的透明度",
["You already did this quest."] = "你已經做過這個任務了",
["You are on this quest."] = "你正在做這個任務",
["You don't have this quest."] = "你還沒有接到這個任務",
},
["esES"] = {
["Alliance"] = "Alianza",
["All Quests"] = "Todas las misiones",
["and"] = "y ",
["Area/Zone"] = nil,
["Buy"] = "Comprar",
["|cff33ffcc<Click>|r Unfold/Fold Objectives\n|cff33ffcc<Right-Click>|r Show In QuestLog\n|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = nil,
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Hide Nodes"] = nil,
["|cff33ffcc<Ctrl-Click>|r Show Map / Toggle Color\n|cff33ffcc<Shift-Click>|r Mark As Done"] = nil,
["|cff33ffccpf|cffffffffQuest: Tracker is now hidden. Type `/db tracker` to show."] = nil,
["|cff33ffccpf|rQuest: New version available! Have a look at http://shagu.org !"] = nil,
["Clean"] = "Limpiar",
["Clean Database Results"] = nil,
["Clean Map"] = "Limpiar mapa",
["Click Node To Change Color"] = nil,
["Close"] = nil,
["Close & Reload"] = "Cerrar y recargar",
["Close Tracker"] = nil,
["Color Map Nodes By Spawn"] = "Colorear nodos del mapa por spawn",
["Combined"] = nil,
["Completed Level"] = nil,
["Config"] = "Configuración",
["custom items loaded."] = "objetos personalizados cargados",
["Display addon locales"] = nil,
["Display all spawn points of each quest objective and hide summarized cluster icons."] = nil,
["Display Available Quest Givers"] = nil,
["Display Current Quest Givers"] = nil,
["Display Event & Daily Quests"] = "Mostrar eventos y misiones diarias",
["Display Level+3 Quest Givers"] = nil,
["Display Low Level Quest Givers"] = nil,
["Display related creatures and NPCs"] = nil,
["Display related items"] = nil,
["Display related objects like ores, herbs, chests, etc."] = nil,
["Display related quests"] = nil,
["Distance"] = nil,
["Do you really want to reset everything?"] = nil,
["Do you really want to reset the caches?"] = nil,
["Do you really want to reset the configuration?"] = nil,
["Do you really want to reset the quest history?"] = nil,
["Draw Favorites On Login"] = nil,
["Enable Minimap Button"] = nil,
["Enable Minimap Nodes"] = nil,
["Enable Quest Link Support"] = nil,
["Enable Quest Log Buttons"] = nil,