This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
forked from shagu/pfQuest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocales.lua
1031 lines (1030 loc) · 50.8 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,
["Completed Level"] = nil,
["Config"] = nil,
["custom items loaded."] = nil,
["Display addon locales"] = 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 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,
["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,
["Move Button"] = nil,
["N/A"] = nil,
["Node Fade Transparency"] = nil,
["Object"] = nil,
["Objects"] = nil,
["Online Search"] = nil,
["Open Browser"] = nil,
["Open Configuration"] = nil,
["Open Database Browser"] = nil,
["Open Settings"] = nil,
["others"] = nil,
["Quest End"] = nil,
["Quest history migration completed."] = nil,
["Questing"] = nil,
["Quest Level"] = nil,
["Quests"] = nil,
["Quest Start"] = nil,
["Quest Tracker Font Size"] = nil,
["Quest Tracker Visibility"] = nil,
["Reaction"] = nil,
["Remove all manually searched objects from the map"] = nil,
["Required"] = nil,
["Required Level"] = nil,
["Reset"] = 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 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 skill range of [min] to [max]"] = nil,
["Show herbs with an appropriate skill level for your character"] = nil,
["Show Level On Quest Log"] = nil,
["Show Level On Quest Tracker"] = nil,
["Show map tracker"] = nil,
["Show mines with skill range of [min] to [max]"] = nil,
["Show mines with an appropriate skill level for your character"] = 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,
["Sold by"] = 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,
["Toggle completed quest browser"] = nil,
["Too many entries. Results shown"] = nil,
["Tracked Quests"] = nil,
["Translate"] = nil,
["Trigger"] = nil,
["Type"] = nil,
["Unified Quest Location Markers"] = 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 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,
["Completed Level"] = nil,
["Config"] = nil,
["custom items loaded."] = nil,
["Display addon locales"] = 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 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,
["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,
["Move Button"] = nil,
["N/A"] = nil,
["Node Fade Transparency"] = nil,
["Object"] = nil,
["Objects"] = nil,
["Online Search"] = nil,
["Open Browser"] = nil,
["Open Configuration"] = nil,
["Open Database Browser"] = nil,
["Open Settings"] = nil,
["others"] = nil,
["Quest End"] = nil,
["Quest history migration completed."] = nil,
["Questing"] = nil,
["Quest Level"] = nil,
["Quests"] = nil,
["Quest Start"] = nil,
["Quest Tracker Font Size"] = nil,
["Quest Tracker Visibility"] = nil,
["Reaction"] = nil,
["Remove all manually searched objects from the map"] = nil,
["Required"] = nil,
["Required Level"] = nil,
["Reset"] = 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 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 skill range of [min] to [max]"] = nil,
["Show herbs with an appropriate skill level for your character"] = nil,
["Show Level On Quest Log"] = nil,
["Show Level On Quest Tracker"] = nil,
["Show map tracker"] = nil,
["Show mines with skill range of [min] to [max]"] = nil,
["Show mines with an appropriate skill level for your character"] = 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,
["Sold by"] = 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,
["Toggle completed quest browser"] = nil,
["Too many entries. Results shown"] = nil,
["Tracked Quests"] = nil,
["Translate"] = nil,
["Trigger"] = nil,
["Type"] = nil,
["Unified Quest Location Markers"] = 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 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,
["Completed Level"] = nil,
["Config"] = nil,
["custom items loaded."] = nil,
["Display addon locales"] = 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 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,
["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,
["Move Button"] = nil,
["N/A"] = nil,
["Node Fade Transparency"] = nil,
["Object"] = nil,
["Objects"] = nil,
["Online Search"] = nil,
["Open Browser"] = nil,
["Open Configuration"] = nil,
["Open Database Browser"] = nil,
["Open Settings"] = nil,
["others"] = nil,
["Quest End"] = nil,
["Quest history migration completed."] = nil,
["Questing"] = nil,
["Quest Level"] = nil,
["Quests"] = nil,
["Quest Start"] = nil,
["Quest Tracker Font Size"] = nil,
["Quest Tracker Visibility"] = nil,
["Reaction"] = nil,
["Remove all manually searched objects from the map"] = nil,
["Required"] = nil,
["Required Level"] = nil,
["Reset"] = 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 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 skill range of [min] to [max]"] = nil,
["Show herbs with an appropriate skill level for your character"] = nil,
["Show Level On Quest Log"] = nil,
["Show Level On Quest Tracker"] = nil,
["Show map tracker"] = nil,
["Show mines with skill range of [min] to [max]"] = nil,
["Show mines with an appropriate skill level for your character"] = 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,
["Sold by"] = 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,
["Toggle completed quest browser"] = nil,
["Too many entries. Results shown"] = nil,
["Tracked Quests"] = nil,
["Translate"] = nil,
["Trigger"] = nil,
["Type"] = nil,
["Unified Quest Location Markers"] = 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 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"] = "按生成涂色地图节点",
["Completed Level"] = "达成等级",
["Config"] = "配置",
["custom items loaded."] = "自定义物品已载入",
["Display addon locales"] = "显示插件本地化文本",
["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 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"] = "常规",
["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"] = "物品的基础掉落几率",
["Move Button"] = "移动按钮",
["N/A"] = "无",
["Node Fade Transparency"] = "节点的渐隐透明度",
["Object"] = "道具",
["Objects"] = "道具",
["Online Search"] = "在线查找",
["Open Browser"] = "浏览器",
["Open Configuration"] = "配置",
["Open Database Browser"] = "数据浏览器",
["Open Settings"] = "设置",
["others"] = "项",
["Quest End"] = "任务结束",
["Quest history migration completed."] = "历史任务迁移成功",
["Questing"] = "任务",
["Quest Level"] = "任务等级",
["Quests"] = "任务",
["Quest Start"] = "任务开始",
["Quest Tracker Font Size"] = "任务追踪器字体尺寸",
["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 configuration interface"] = "显示配置",
["Show Current Quests"] = "显示已有的任务",
["Show Database IDs"] = "显示数据库ID",
["Show database interface"] = "显示数据库",
["Show Database Results"] = "显示数据库结果",
["Show Help On Tooltips"] = "在提示框上显示帮助",
["Show herbs with skill range of [min] to [max]"] = "显示草药需要的技能区间",
["Show herbs with an appropriate skill level for your character"] = "显示适合你技能等级的草药",
["Show Individual Spawn Points"] = "显示单独的生成点",
["Show Level On Quest Log"] = "在任务日志上显示等级",
["Show Level On Quest Tracker"] = "在任务追踪器上显示等级",
["Show map tracker"] = "显示地图追踪器",
["Show mines with skill range of [min] to [max]"] = "显示矿脉需要的技能区间",
["Show mines with an appropriate skill level for your character"] = "显示适合你技能等级的矿脉",
["Show quest arrow"] = "显示任务导航",
["Show Quest Givers"] = "显示任务发放者",
["Show quest journal"] = "显示任务日志",
["Show Route Between Objects"] = "在物品之间显示路径",
["Show Route On Minimap"] = "在小地图显示路径",
["Show specific quest"] = "显示特殊任务",
["Show Tooltips"] = "显示提示框",
["Sold by"] = "售卖自",
["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",
["Toggle completed quest browser"] = "浏览已完成的任务记录",
["Too many entries. Results shown"] = "条目太多。结果显示",
["Tracked Quests"] = "追踪任务",
["Translate"] = "翻译",
["Trigger"] = "触发",
["Type"] = "类型",
["Unified Quest Location Markers"] = "统一任务位置标记",
["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",
["Completed Level"] = nil,
["Config"] = "Configuración",
["custom items loaded."] = "objetos personalizados cargados",
["Display addon locales"] = 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 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"] = "Amistoso",
["General"] = nil,
["Hide"] = "Ocultar",
["Hide browser window"] = nil,
["Hide Quests"] = "Ocultar misiones",
["Highlight Nodes On Mouseover"] = nil,
["Hold <Ctrl> To Hide Cluster"] = nil,
["Hold <Ctrl> To Hide Minimap Nodes"] = nil,
["Horde"] = "Horda",
["Hostile"] = "Hostil",
["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"] = "Clic izquierdo",
["Level"] = "Nivel",
["Locales"] = nil,
["Location"] = nil,
["Loot"] = "Botín",
["Loot and/or Use |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = nil,
["Loot |cff33ffcc[%s]|r from |cff33ffcc%s|r"] = nil,
["Looted from"] = "Despojado por",
["Manual Selection"] = "Selección manual",
["Map & Minimap"] = nil,
["Minimap Node Transparency"] = nil,
["Minimum Item Drop Chance"] = nil,
["Move Button"] = "Mover botón",
["N/A"] = nil,
["Node Fade Transparency"] = nil,
["Object"] = nil,
["Objects"] = nil,
["Online Search"] = "Búsqueda en línea",
["Open Browser"] = "Abrir navegador",
["Open Configuration"] = "Abrir configuración",
["Open Database Browser"] = nil,
["Open Settings"] = nil,
["others"] = "otros",
["Quest End"] = "Misión terminada",
["Quest history migration completed."] = "Migración de historia de misiones se ha completada",
["Questing"] = nil,
["Quest Level"] = "Nivel de misión",
["Quests"] = nil,
["Quest Start"] = "Empezar misión",
["Quest Tracker Font Size"] = nil,
["Quest Tracker Visibility"] = nil,
["Reaction"] = "Reacción",
["Remove all manually searched objects from the map"] = nil,
["Required"] = "Requerida",
["Required Level"] = "Nivel requerido",
["Reset"] = "Reiniciar",
["Reset Configuration"] = nil,
["Reset Everything"] = nil,
["Reset Language"] = nil,
["Reset Map"] = nil,
["Reset Quest History"] = nil,
["Respawn"] = nil,
["Right-Click"] = "Clic derecho",
["Routes"] = nil,
["Scanning server for items..."] = "Escaneando el servidor por objetos...",
["Scan the server for custom items"] = nil,
["Search"] = "Buscar",
["Search item vendors"] = nil,
["Search loot"] = nil,
["Search object"] = nil,
["Search unit"] = nil,
["Server scan started..."] = "Escanea del servidor empezado...",
["Shift-Click"] = "Shift clic",
["Show"] = "Mostrar",
["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 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 skill range of [min] to [max]"] = nil,
["Show herbs with an appropriate skill level for your character"] = nil,
["Show Level On Quest Log"] = nil,
["Show Level On Quest Tracker"] = nil,
["Show map tracker"] = nil,
["Show mines with skill range of [min] to [max]"] = nil,
["Show mines with an appropriate skill level for your character"] = 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,
["Sold by"] = "Vendido por",
["Speak with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = nil,
["Speak with |cff33ffcc%s|r to obtain |cffffcc00[!]|cff33ffcc %s|r"] = nil,
["Toggle completed quest browser"] = nil,
["Too many entries. Results shown"] = "Demasiada entradas. Resultados mostrados",
["Tracked Quests"] = "Misiones rastreadas",
["Translate"] = nil,
["Trigger"] = nil,
["Type"] = "Tipo",
["Unified Quest Location Markers"] = 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 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"] = "Vendedor",
["World Map Node Transparency"] = nil,
["You already did this quest."] = "Ya completas esta misión",
["You are on this quest."] = "Misión en progresa",
["You don't have this quest."] = "No tienes esta misión",
},
["ruRU"] = {
["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"] = "Разделить цвет точек по целям задания",
["Completed Level"] = "Завершено на уровне",
["Config"] = "Настройки",
["custom items loaded."] = "пользовательские предметы загружены.",
["Display addon locales"] = "Показать используемые языки в базе данных",
["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 configuration?"] = "Вы действительно хотите сбросить настройки?",
["Do you really want to reset the quest history?"] = "Вы действительно хотите сбросить историю заданий?",
["Draw Favorites On Login"] = "Отображать в базе данных избранное\nпри входе в игру",
["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"] = "Общие",
["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"] = "Искать предметы в базе данных с шансом\nвыпадения не ниже",
["Move Button"] = "Перемещение кнопки",
["N/A"] = "Н/Д",
["Node Fade Transparency"] = "Прозрачность при затухании узла",
["Object"] = "Объект",
["Objects"] = "Объекты",
["Online Search"] = "Поиск онлайн",
["Open Browser"] = "Открыть базу данных",
["Open Configuration"] = "Открыть настройки",
["Open Database Browser"] = "Открыть базу данных",
["Open Settings"] = "Открыть настройки",
["others"] = "других",
["Quest End"] = "Завершает задание",
["Quest history migration completed."] = "Перенос истории заданий завершен.",
["Questing"] = "Задания",
["Quest Level"] = "Уровень задания",
["Quests"] = "Задания",
["Quest Start"] = "Начинает задание",
["Quest Tracker Font Size"] = "Размер шрифта трекера",
["Quest Tracker Visibility"] = "Прозрачность трекера",
["Reaction"] = "Реакция",
["Remove all manually searched objects from the map"] = "Удалить с карты все объекты, найденные вручную",
["Required"] = "Требуется",
["Required Level"] = "Требуемый уровень",
["Reset"] = "Сброс",
["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]"] = "Показать всех редких мобов уровней [min] - [max]",
["Show all taxi nodes of [faction]"] = "Показать на карте всех распорядителей полетов для фракции {horde, alliance}",
["Show Arrow Along Routes"] = "Показать стрелку вдоль маршрутов",
["Show configuration interface"] = "Показать настройки",
["Show Current Quests"] = "Показать текущие задания",
["Show Database IDs"] = "Показать ID",
["Show database interface"] = "Показать базу данных",
["Show Database Results"] = "Показать результаты базы данных",
["Show Help On Tooltips"] = "Показать справку в подсказках",
["Show herbs with skill range of [min] to [max]"] = "Показать травы с диапазоном навыка [min] - [max]",
["Show herbs with an appropriate skill level for your character"] = nil,
["Show Level On Quest Log"] = "Показать уровень в журнале заданий",
["Show Level On Quest Tracker"] = "Показать уровень в трекере",
["Show map tracker"] = "Показать трекер карты",
["Show mines with skill range of [min] to [max]"] = "Показать жилы с диапазоном навыка [min] - [max]",
["Show mines with an appropriate skill level for your character"] = nil,
["Show quest arrow"] = "Показать стрелку направления",
["Show Quest Givers"] = "Показать квестодателей",
["Show quest journal"] = "Показать журнал заданий",
["Show Route Between Objects"] = "Показать маршрут между объектами",
["Show Route On Minimap"] = "Показать маршрут на миникарте",
["Show specific quest"] = "Показать определенное задание",
["Show Tooltips"] = "Показать подсказки",
["Sold by"] = "Продается у",
["Speak with |cff33ffcc%s|r to complete |cffffcc00[?]|cff33ffcc %s|r"] = "Поговорите с |cff33ffcc%s|r, чтобы завершить |cffffcc00[?]|cff33ffcc %s|r",