-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathLocalization.lua
2886 lines (2843 loc) · 136 KB
/
Localization.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
--[[----------------------------------------------------------------------------
LiteMount/Localization.lua
LiteMount translations into other languages.
Copyright 2011 Mike Battersby
----------------------------------------------------------------------------]]--
local _, LM = ...
-- Vim reformatter from curseforge "Global Strings" export.
-- %s/^\(L\..*\) = \(.*\)/\=printf('%-24s= %s', submatch(1), submatch(2))/
LM.Localize = setmetatable({ }, {__index=function (t,k) return k end})
local L = LM.Localize
local locale = GetLocale()
-- Automatic / Blizzard --------------------------------------------------------
L.FAVORITES = FAVORITES
L.LM_PRIORITY_DESC0 = DISABLE
L.LM_PRIORITY_DESC4 = ALWAYS
L.Unknown = UNKNOWN
L.RIDEALONG = MOUNT_JOURNAL_FILTER_RIDEALONG
L.DRAGONRIDING = MOUNT_JOURNAL_FILTER_DRAGONRIDING
L.SKYRIDING = MOUNT_JOURNAL_FILTER_DRAGONRIDING
L.FLY = MOUNT_JOURNAL_FILTER_FLYING
L.RUN = MOUNT_JOURNAL_FILTER_GROUND
L.SWIM = MOUNT_JOURNAL_FILTER_AQUATIC
L.DRIVE = ACCESSIBILITY_DRIVE_LABEL
--- :r! sh Tools/fetchlocale.sh -------------------------------------------------
-- enUS / enGB / Default -------------------------------------------------------
L = L or {}
L["LM_ACTION"] = "Action"
L["LM_ADD_MOUNTS_AT_PRIORITY_0"] = "When Blizzard adds a new mount, set it to priority 0 (disabled)."
L["LM_ADVANCED_EXP"] = "These settings allow you to customize the actions run by each of the LiteMount key bindings. Please read the documentation at the URL below before changing anything."
L["LM_ANNOUNCE_FLIGHT_STYLE"] = "Announce flight style switches."
L["LM_ANNOUNCE_MOUNTS"] = "Announce summoned mounts in:"
L["LM_AREA_FMT_S"] = "%s area"
L["LM_AUTHOR"] = "Author"
L["LM_CHANGE_PROFILE"] = "Change Profile"
L["LM_COLOR_BY_PRIORITY"] = "Color by priority"
L["LM_COMBAT_MACRO_EXP"] = "If enabled, this macro will be run instead of the default combat actions if LiteMount is activated while you are combat."
L["LM_CONDITIONS"] = "Conditions"
L["LM_COPY_TARGETS_MOUNT"] = "Try to copy target's mount."
L["LM_COVENANT"] = "Covenant"
L["LM_CREATE_GLOBAL_GROUP"] = "Global"
L["LM_CREATE_PROFILE_GROUP"] = "Profile"
L["LM_CURRENT_PROFILE"] = "Current Profile"
L["LM_CURRENT_SETTINGS"] = "Current Settings"
L["LM_DEBUGGING_DISABLED"] = "Debugging disabled."
L["LM_DEBUGGING_ENABLED"] = "Debugging enabled."
L["LM_DEFAULT_SETTINGS"] = "Default Settings"
L["LM_DELETE_FLAG"] = "Delete Flag"
L["LM_DELETE_GROUP"] = "Delete Group"
L["LM_DELETE_PROFILE"] = "Delete Profile"
L["LM_DISABLING_MOUNT"] = "Disabling active mount: %s"
L["LM_EDIT_RULE"] = "Edit Rule"
L["LM_ENABLE_DEBUGGING"] = "Enable debugging messages."
L["LM_ENABLING_MOUNT"] = "Enabling active mount: %s"
L["LM_ERR_BAD_ACTION"] = "Invalid action '%s'"
L["LM_ERR_BAD_ARGUMENTS"] = "Invalid arguments '%s'"
L["LM_ERR_BAD_CONDITION"] = "Invalid conditions '%s'"
L["LM_ERR_BAD_RULE"] = "Invalid rule '%s': %s"
L["LM_EVERY_D_MINUTES"] = "Every %d minutes"
L["LM_EVERY_D_SECONDS"] = "Every %d seconds"
L["LM_EVERY_TIME"] = "Every time"
L["LM_EXCLUDE_MOUNTS"] = "Exclude Mounts"
L["LM_EXPORT_PROFILE"] = "Export Profile"
L["LM_EXPORT_PROFILE_EXP"] = "Cut-and-paste the text below into a file to save this profile. You can restore it again with 'Import Profile'."
L["LM_FAMILY"] = "Family"
L["LM_FLAG"] = "Flag"
L["LM_FLAGS"] = "Flags"
L["LM_FLIGHT_STYLE"] = "Flight Style"
L["LM_GATHERED_RECENTLY"] = "Gathered recently"
L["LM_GROUND"] = "Ground"
L["LM_GROUP"] = "Group"
L["LM_GROUPS"] = "Groups"
L["LM_GROUPS_EXP"] = "Here you can manage groups of mounts, which can be used in the Rules and Advanced settings."
L["LM_HELP_TRANSLATE"] = "Help translate LiteMount into your language. Thank you."
L["LM_HERB"] = "Herb"
L["LM_HIDDEN"] = "Hidden"
L["LM_HOLIDAY"] = "Holiday"
L["LM_IMPORT_PROFILE"] = "Import Profile"
L["LM_IMPORT_PROFILE_EXP"] = "Paste a previously exported profile into the box below to import it as the entered name."
L["LM_INCLUDE_MOUNTS"] = "Include Mounts"
L["LM_INSTANT_ONLY_MOVING"] = "Don't summon instant-cast mounts unless moving."
L["LM_LIMIT_MOUNTS"] = "Limit Mounts"
L["LM_LIMITEXCLUDE_DESCRIPTION"] = "Remove the specified mounts from the set available to later actions."
L["LM_LIMITINCLUDE_DESCRIPTION"] = "Add the specified mounts to the set available to later actions."
L["LM_LIMITSET_DESCRIPTION"] = "Limit the available mounts for all later actions to those specified."
L["LM_MACRO_EXP"] = "This macro will be run if LiteMount is unable to find a usable mount. This might be because you are indoors, or are moving and don't know any instant-cast mounts."
L["LM_MACRO_NOT_ALLOWED"] = "This setting does not work when activating LiteMount using a macro on an action bar. This is due to Blizzard preventing macros from calling other macros."
L["LM_MODIFIER_KEY"] = "Modifier key"
L["LM_MOUNT_ACTION"] = "Random Mount"
L["LM_MOUNT_DESCRIPTION"] = "Summon a random mount."
L["LM_MOUSE_BUTTON_CLICKED"] = "Mouse button clicked"
L["LM_NEW_FLAG"] = "New Flag"
L["LM_NEW_GROUP"] = "New Group"
L["LM_NEW_PROFILE"] = "New Profile"
L["LM_NOT"] = "NOT"
L["LM_NOT_FORMAT"] = "Not %s"
L["LM_ON_SCREEN_DISPLAY"] = "On-Screen Display"
L["LM_ORE"] = "Ore"
L["LM_PARTY_OR_RAID_GROUP"] = "In a party or raid group"
L["LM_PRECAST_ACTION"] = "Cast Spell Before Mounting"
L["LM_PRECAST_DESCRIPTION"] = "Register a spell to try to cast before mounting. Enter a spell name or spell ID. Only cast before journal mounts, and the spell must have no cast time."
L["LM_PREUSE_ACTION"] = "Use Item Before Mounting"
L["LM_PREUSE_DESCRIPTION"] = "Register an item to try use before mounting. Enter an item name, item ID or equipment slot number. Only used before journal mounts. The item should have no cast time."
L["LM_PRIORITY"] = "Priority"
L["LM_PRIORITY_DESC1"] = "Normal"
L["LM_PRIORITY_DESC2"] = "More often"
L["LM_PRIORITY_DESC3"] = "A lot more often"
L["LM_PRIORITYMOUNT_ACTION"] = "Priority Mount"
L["LM_PRIORITYMOUNT_DESCRIPTION"] = "Summon a random mount. Uses the priorities/rarities for summoning mounts more or less often (or never)."
L["LM_PROFILES"] = "Profiles"
L["LM_PROFILES_EXP"] = "Profiles are different configurations that you can switch between. Each of your characters has its own selected profile. All settings except the Combat and Unavailable macros are saved in the profile and change when switching profiles."
L["LM_RANDOM_PERSISTENCE"] = "How often to select a new random mount"
L["LM_RARITY_DATA_INFO"] = "Rarity data (how many accounts have collected each mount) is provided by DataForAzeroth and updated each time a LiteMount version is released. For more frequently updated data please also install the MountsRarity AddOn."
L["LM_RARITY_DISABLES_PRIORITY"] = "Priorities other than 0 (disabled) are inactive because summon by rarity has been selected in the General settings."
L["LM_RARITY_FORMAT"] = "%0.1f%%"
L["LM_RARITY_FORMAT_LONG"] = "Collected by %0.1f%% of WoW accounts."
L["LM_RENAME_FLAG"] = "Rename Flag"
L["LM_RENAME_GROUP"] = "Rename Group"
L["LM_REPORT_BUG"] = "Report Bug"
L["LM_REPORT_BUG_EXP"] = "To report a bug in LiteMount, please describe the bug at the top of the field below, then cut-and-paste the entire text into the Create Issue form at this URL:"
L["LM_RESET_PROFILE"] = "Reset Profile"
L["LM_RESTORE_FORMS"] = "Try to restore druid shapeshift forms when dismounting."
L["LM_RULES_EXP"] = "Rules for mounting. Each rule has up to 3 conditions and an action. Rules are checked in order, and if all conditions match the action is applied."
L["LM_RULES_INACTIVE"] = "Rules for key binding %d are inactive because your custom action list (in Advanced Options) does not contain the 'ApplyRules' action."
L["LM_SEASON"] = "Season"
L["LM_SEASON_FALL"] = "Fall"
L["LM_SEASON_SPRING"] = "Spring"
L["LM_SEASON_SUMMER"] = "Summer"
L["LM_SEASON_WINTER"] = "Winter"
L["LM_SET_DEFAULT_MOUNT_PRIORITY_TO"] = "Set default mount priority to %d (%s) instead of %d (%s)."
L["LM_SETTINGS_TAGLINE"] = "Simple and reliable random mount summoning."
L["LM_SEX"] = "Sex"
L["LM_SHOW_ALL_MOUNTS"] = "Show all mounts"
L["LM_SMARTMOUNT_ACTION"] = "Smart Priority Mount"
L["LM_SMARTMOUNT_DESCRIPTION"] = "Summon a random mount of the best available type for the current situation. Uses the priorities/rarities for summoning mounts more or less often (or never)."
L["LM_SPELL_ACTION"] = "Cast Spell"
L["LM_SPELL_DESCRIPTION"] = "Cast a spell. Enter either a spell name or a spell ID."
L["LM_STEADY_FLIGHT"] = "Steady Flight"
L["LM_SUMMON_CHAT_MESSAGE"] = "%s (Priority: %d, Summons: %d)"
L["LM_SUMMON_CHAT_MESSAGE_RARITY"] = "%s (Rarity: %s, Summons: %d)"
L["LM_SUMMON_STYLE"] = "How to choose a random mount"
L["LM_SUMMON_STYLE_LEASTUSED"] = "Summon mounts you have used the least"
L["LM_SUMMON_STYLE_PRIORITY"] = "Use the manually set mount priorities"
L["LM_SUMMON_STYLE_RARITY"] = "Summon rare (fewer players know them) mounts more often"
L["LM_TRANSLATORS"] = "Translators"
L["LM_USABLE"] = "Usable"
L["LM_USE_ACTION"] = "Use Item"
L["LM_USE_DESCRIPTION"] = "Use an item. Enter an item name, item ID, or an equipment slot number."
L["LM_USE_RARITY_WEIGHTS"] = "Summon mounts more or less often based on their rarity (instead of priority)."
L["LM_WARN_REPLACE_COND"] = "The [%s] action list condition has been replaced by [%s] due to Blizzard changes."
-- Family
L["Alpaca"] = "Alpaca"
L["Aqir Drone"] = "Aqir Drone"
L["Aqiri"] = "Aqiri"
L["Aquilon"] = "Aquilon"
L["Armoredon"] = "Armoredon"
L["Bakar"] = "Bakar"
L["Basilisk"] = "Basilisk"
L["Bat"] = "Bat"
L["Bear"] = "Bear"
L["Bee"] = "Bee"
L["Beetle"] = "Beetle"
L["Bird"] = "Bird"
L["Bloodswarmer"] = "Bloodswarmer"
L["Boar"] = "Boar"
L["Bonehoof"] = "Bonehoof"
L["Bruffalon"] = "Bruffalon"
L["Brutosaur"] = "Brutosaur"
L["Butterfly"] = "Butterfly"
L["Camel"] = "Camel"
L["Cat"] = "Cat"
L["Charhound"] = "Charhound"
L["Chimaera"] = "Chimaera"
L["Clefthoof"] = "Clefthoof"
L["Cloud Serpent"] = "Cloud Serpent"
L["Cloudrook"] = "Cloudrook"
L["Core Hound"] = "Core Hound"
L["Corpsefly"] = "Corpsefly"
L["Courser"] = "Courser"
L["Crab"] = "Crab"
L["Cradle"] = "Cradle"
L["Crane"] = "Crane"
L["Crawg"] = "Crawg"
L["Crocolisk"] = "Crocolisk"
L["Deathroc"] = "Deathroc"
L["Devourer"] = "Devourer"
L["Direhorn"] = "Direhorn"
L["Disc"] = "Disc"
L["Donkey"] = "Donkey"
L["Dragon Turtle"] = "Dragon Turtle"
L["Dragonhawk"] = "Dragonhawk"
L["Drake"] = "Drake"
L["Dread Raven"] = "Dread Raven"
L["Dreadsteed"] = "Dreadsteed"
L["Dreadwake"] = "Dreadwake"
L["Dreamsaber"] = "Dreamsaber"
L["Dreamstag"] = "Dreamstag"
L["Dreamtalon"] = "Dreamtalon"
L["Eagle"] = "Eagle"
L["Eel"] = "Eel"
L["Elderhorn"] = "Elderhorn"
L["Elekk"] = "Elekk"
L["Elemental"] = "Elemental"
L["Fathom Dweller"] = "Fathom Dweller"
L["Fathom Ray"] = "Fathom Ray"
L["Felbat"] = "Felbat"
L["Felhunter"] = "Felhunter"
L["Fey Dragon"] = "Fey Dragon"
L["Fire Hawk"] = "Fire Hawk"
L["Fish"] = "Fish"
L["Flying Carpet"] = "Flying Carpet"
L["Flying Machine"] = "Flying Machine"
L["Fox"] = "Fox"
L["Gargon"] = "Gargon"
L["Glowmite"] = "Glowmite"
L["Goat"] = "Goat"
L["Gorm"] = "Gorm"
L["Gravewing"] = "Gravewing"
L["Gronnling"] = "Gronnling"
L["Gryphon"] = "Gryphon"
L["Hand"] = "Hand"
L["Hawkstrider"] = "Hawkstrider"
L["Helicid"] = "Helicid"
L["Hippogryph"] = "Hippogryph"
L["Hivemind"] = "Hivemind"
L["Horse"] = "Horse"
L["Hound"] = "Hound"
L["Hyena"] = "Hyena"
L["Infernal"] = "Infernal"
L["Jawcrawler"] = "Jawcrawler"
L["Kodo"] = "Kodo"
L["Krolusk"] = "Krolusk"
L["Larion"] = "Larion"
L["Magic"] = "Magic"
L["Mammoth"] = "Mammoth"
L["Mana Ray"] = "Mana Ray"
L["Meat Wagon"] = "Meat Wagon"
L["Mechacycle"] = "Mechacycle"
L["Mechanical"] = "Mechanical"
L["Mechanocat"] = "Mechanocat"
L["Mechanocrawler"] = "Mechanocrawler"
L["Mechanostrider"] = "Mechanostrider"
L["Mole"] = "Mole"
L["Moonbeast"] = "Moonbeast"
L["Moth"] = "Moth"
L["Motorcycle"] = "Motorcycle"
L["Murloc"] = "Murloc"
L["Mushan Beast"] = "Mushan Beast"
L["Nether Drake"] = "Nether Drake"
L["Nether Ray"] = "Nether Ray"
L["Ottuk"] = "Ottuk"
L["Owl"] = "Owl"
L["Pandaren Kite"] = "Pandaren Kite"
L["Panthara"] = "Panthara"
L["Peafowl"] = "Peafowl"
L["Phalynx"] = "Phalynx"
L["Phoenix"] = "Phoenix"
L["Proto-Drake"] = "Proto-Drake"
L["Pterrordax"] = "Pterrordax"
L["Ram"] = "Ram"
L["Raptor"] = "Raptor"
L["Ratstallion"] = "Ratstallion"
L["Ravager"] = "Ravager"
L["Raven"] = "Raven"
L["Ray"] = "Ray"
L["Razorwing"] = "Razorwing"
L["Riverbeast"] = "Riverbeast"
L["Rocket"] = "Rocket"
L["Rodent"] = "Rodent"
L["Rooster"] = "Rooster"
L["Runedeer"] = "Runedeer"
L["Rylak"] = "Rylak"
L["Salamanther"] = "Salamanther"
L["Scarab"] = "Scarab"
L["Scorpid"] = "Scorpid"
L["Seahorse"] = "Seahorse"
L["Serpent"] = "Serpent"
L["Shalewing"] = "Shalewing"
L["Shapeshift"] = "Shapeshift"
L["Shardhide"] = "Shardhide"
L["Skeletal Horse"] = "Skeletal Horse"
L["Skitterfly"] = "Skitterfly"
L["Skullboar"] = "Skullboar"
L["Skyrazor"] = "Skyrazor"
L["Slitherdrake"] = "Slitherdrake"
L["Slug"] = "Slug"
L["Slyvern"] = "Slyvern"
L["Snapdragon"] = "Snapdragon"
L["Spider"] = "Spider"
L["Stone Drake"] = "Stone Drake"
L["Stone Hound"] = "Stone Hound"
L["Stone Panther"] = "Stone Panther"
L["Storm Dragon"] = "Storm Dragon"
L["Talbuk"] = "Talbuk"
L["Tallstrider"] = "Tallstrider"
L["Tauralus"] = "Tauralus"
L["Thunderspine"] = "Thunderspine"
L["Toad"] = "Toad"
L["Turtle"] = "Turtle"
L["Ur'zul"] = "Ur'zul"
L["Vespoid"] = "Vespoid"
L["Vile Fiend"] = "Vile Fiend"
L["Vombata"] = "Vombata"
L["Vorquin"] = "Vorquin"
L["Warp Stalker"] = "Warp Stalker"
L["Wasp"] = "Wasp"
L["Water Strider"] = "Water Strider"
L["Wilderling"] = "Wilderling"
L["Wind Drake"] = "Wind Drake"
L["Wind Rider"] = "Wind Rider"
L["Wolf"] = "Wolf"
L["Wolfhawk"] = "Wolfhawk"
L["Wylderdrake"] = "Wylderdrake"
L["Wyrm"] = "Wyrm"
L["Yak"] = "Yak"
L["Yeti"] = "Yeti"
L["Zodiac"] = "Zodiac"
-- deDE ------------------------------------------------------------------------
if locale == "deDE" then
L = L or {}
L["LM_ACTION"] = "Aktion"
L["LM_ADD_MOUNTS_AT_PRIORITY_0"] = "Setze die Priorität auf 0 (deaktiviert), wenn Blizzard ein neues Reittier hinzufügt."
L["LM_ADVANCED_EXP"] = "Mit diesen Einstellungen können Sie die Aktionen anpassen, die von den einzelnen LiteMount-Tastenbindungen ausgeführt werden. Bitte lesen Sie die Dokumentation unter der folgenden URL, bevor Sie etwas ändern."
L["LM_ANNOUNCE_FLIGHT_STYLE"] = "Flugstilwechsel ankündigen."
L["LM_ANNOUNCE_MOUNTS"] = "Kündigen Sie beschworene Reittiere an:"
L["LM_AREA_FMT_S"] = "%s Bereich"
L["LM_AUTHOR"] = "Autor"
L["LM_CHANGE_PROFILE"] = "Profil wechseln"
L["LM_COLOR_BY_PRIORITY"] = "Farbe nach Priorität"
L["LM_COMBAT_MACRO_EXP"] = "Bei Aktivierung wird dieses Makro anstelle von normalen Kampfhandlungen benutzt, wenn LiteMount im Kampf verwendet wird."
L["LM_CONDITIONS"] = "Bedingungen"
L["LM_COPY_TARGETS_MOUNT"] = "Versuche, das Reittier deines Ziels zu kopieren."
L["LM_COVENANT"] = "Pakt"
L["LM_CREATE_GLOBAL_GROUP"] = "Global"
L["LM_CREATE_PROFILE_GROUP"] = "Profil"
L["LM_CURRENT_PROFILE"] = "Aktuelles Profil"
L["LM_CURRENT_SETTINGS"] = "Aktuelle Einstellungen"
L["LM_DEBUGGING_DISABLED"] = "Fehlersuche aus"
L["LM_DEBUGGING_ENABLED"] = "Fehlersuche ein"
L["LM_DEFAULT_SETTINGS"] = "Standardeinstellungen"
L["LM_DELETE_FLAG"] = "Markierung löschen"
L["LM_DELETE_GROUP"] = "Gruppe löschen"
L["LM_DELETE_PROFILE"] = "Profil löschen"
L["LM_DISABLING_MOUNT"] = "Deaktiviere aktuelles Reittier: %s"
L["LM_EDIT_RULE"] = "Regel bearbeiten"
L["LM_ENABLE_DEBUGGING"] = "Debug-Meldungen aktivieren."
L["LM_ENABLING_MOUNT"] = "Aktiviere aktuelles Reittier: %s"
L["LM_ERR_BAD_ACTION"] = "Ungültige Aktion '%s'"
L["LM_ERR_BAD_ARGUMENTS"] = "Ungültige Argumente '%s'"
L["LM_ERR_BAD_CONDITION"] = "Ungültige Bedingung '%s'"
L["LM_ERR_BAD_RULE"] = "Ungültige Regel '%s': %s"
L["LM_EVERY_D_MINUTES"] = "alle %d Minuten"
L["LM_EVERY_D_SECONDS"] = "alle %d Sekunden"
L["LM_EVERY_TIME"] = "jedes Mal"
L["LM_EXCLUDE_MOUNTS"] = "Reittiere ausschließen"
L["LM_EXPORT_PROFILE"] = "Profil exportieren"
L["LM_EXPORT_PROFILE_EXP"] = "Kopieren Sie den folgenden Text und fügen Sie ihn in eine Datei ein, um dieses Profil zu speichern. Sie können es mit 'Profil importieren' wiederherstellen."
L["LM_FAMILY"] = "Reittiertyp"
L["LM_FLAG"] = "Markierung"
L["LM_FLAGS"] = "Markierungen"
L["LM_FLIGHT_STYLE"] = "Flugstil"
L["LM_GATHERED_RECENTLY"] = "Kürzlich gesammelt"
L["LM_GROUND"] = "Boden"
L["LM_GROUP"] = "Gruppe"
L["LM_GROUPS"] = "Gruppen"
L["LM_GROUPS_EXP"] = "Hier kannst du Gruppen von Reittieren verwalten, welche in den Regeln und den erweiterten Optionen verwendet werden können. "
L["LM_HELP_TRANSLATE"] = "Hilf dabei, LiteMount in deine Sprache zu übersetzen. Danke."
L["LM_HERB"] = "Kraut"
L["LM_HIDDEN"] = "Versteckt"
L["LM_HOLIDAY"] = "Feiertag"
L["LM_IMPORT_PROFILE"] = "Importprofil"
L["LM_IMPORT_PROFILE_EXP"] = "Fügen Sie ein zuvor exportiertes Profil in das Feld unten ein, um es unter dem angegebenen Namen zu importieren."
L["LM_INCLUDE_MOUNTS"] = "Reittiere einschließen"
L["LM_INSTANT_ONLY_MOVING"] = "Keine Instant-Reittiere beschwören, außer wenn du dich bewegst. "
L["LM_LIMIT_MOUNTS"] = "Reittiere einschränken"
L["LM_MACRO_EXP"] = "Dieses Makro wird ausgeführt, wenn LiteMount kein nutzbares Reittier findet. Dies kann passieren, wenn du dich in Gebäuden aufhältst oder läufst und keine spontan wirkbaren Reittiere hast."
L["LM_MODIFIER_KEY"] = "Modifikatortaste"
L["LM_MOUNT_ACTION"] = "Zufälliges Reittier"
L["LM_MOUSE_BUTTON_CLICKED"] = "Maustaste klickte"
L["LM_NEW_FLAG"] = "Markierung hinzufügen"
L["LM_NEW_GROUP"] = "Gruppe erstellen"
L["LM_NEW_PROFILE"] = "Neues Profil"
L["LM_NOT"] = "Nicht"
L["LM_NOT_FORMAT"] = "Nicht %s"
L["LM_ON_SCREEN_DISPLAY"] = "Bildschirmanzeige"
L["LM_ORE"] = "Erz"
L["LM_PARTY_OR_RAID_GROUP"] = "In einer Party oder Raidgruppe "
L["LM_PRECAST_DESCRIPTION"] = "Registriere einen Zauber, der vor dem Aufsatteln gewirkt werden soll. Gib einen Zaubernamen oder eine Zauber-ID ein. Wird nur vor Tagebuch-Reittieren gewirkt, und der Zauber darf keine Zauberzeit haben."
L["LM_PREUSE_DESCRIPTION"] = "Registriere ein Item, welches vor dem Aufsatteln verwendet werden soll. Gib ein Item Namen, eine Item-ID oder eine Ausrüstungsplatznummer ein. Wird nur vor Tagebuch-Reittieren verwendet. Der Gegenstand sollte keine Zauberzeit haben."
L["LM_PRIORITY"] = "Priorität"
L["LM_PRIORITY_DESC1"] = "Normal"
L["LM_PRIORITY_DESC2"] = "Öfter"
L["LM_PRIORITY_DESC3"] = "Viel öfter"
L["LM_PRIORITYMOUNT_ACTION"] = "Prioritätreittier"
L["LM_PRIORITYMOUNT_DESCRIPTION"] = "Beschwöre ein zufälliges Reittier. Beachtet die Priorität/Seltenheit, um Reittiere häufiger, seltener oder nie zu beschwören."
L["LM_PROFILES"] = "Profile"
L["LM_PROFILES_EXP"] = "Profile sind verschiedene Konfigurationen, zwischen denen Sie wechseln können. Jeder deiner Charaktere hat sein eigenes ausgewähltes Profil. Alle Einstellungen außer den Combat- und Unvailable-Makros werden im Profil gespeichert und ändern sich beim Profilwechsel."
L["LM_RANDOM_PERSISTENCE"] = "Wie oft soll ein neues zufälliges Reittier ausgewählt werden"
L["LM_RARITY_DATA_INFO"] = "Raritätsdaten (wie viel Accounts jedes Reittier gesammelt haben) werden von DataForAzeroth bereitgestellt und werden aktualisiert, wenn eine neue LiteMount Version veröffentlicht wird. For aktuellere Daten, installiere bitte das MountsRarity AddOn."
L["LM_RARITY_DISABLES_PRIORITY"] = "Andere Prioritäten als 0 (deaktiviert) sind inaktiv, da in den allgemeinen Einstellungen die Option Beschwöre nach Seltenheit ausgewählt wurde."
L["LM_RARITY_FORMAT"] = "%0.1f%%"
L["LM_RARITY_FORMAT_LONG"] = "Gesammelt von %0.1f%% der WoW-Accounts."
L["LM_RENAME_FLAG"] = "Markierung umbenennen"
L["LM_RENAME_GROUP"] = "Gruppe umbenennen"
L["LM_REPORT_BUG"] = "Bug melden"
L["LM_REPORT_BUG_EXP"] = "Um einen Fehler in LiteMount zu melden, beschreiben Sie den Fehler und kopieren Sie den gesamten Text und fügen Sie ihn in das Formular \"Neues Problem\" ein:"
L["LM_RESET_PROFILE"] = "Profil zurücksetzen"
L["LM_RESTORE_FORMS"] = "Versuche, Gestaltwandlungen vom Druiden beim Absitzen wiederherzustellen."
L["LM_RULES_EXP"] = "Regeln fürs Aufsitzen. Jede Regel hat bis zu 3 Bedingungen und eine Aktion. Die Regeln werden der Reihe nach überprüft und falls alle Bedingungen zutreffen, wird die Aktion ausgeführt. "
L["LM_RULES_INACTIVE"] = "Regeln für Tastenbelegung %d sind inaktiv, da deine benutzerdefinierte Aktionsliste (in den erweiterten Optionen) nicht die Aktion \"ApplyRules\" beinhaltet. "
L["LM_SEASON"] = "Jahreszeit"
L["LM_SEASON_FALL"] = "Herbst"
L["LM_SEASON_SPRING"] = "Frühling"
L["LM_SEASON_SUMMER"] = "Sommer"
L["LM_SEASON_WINTER"] = "Winter"
L["LM_SET_DEFAULT_MOUNT_PRIORITY_TO"] = "Setze die Reittier-Priorität standardmäßig auf %d (%s) statt auf %d (%s)."
L["LM_SETTINGS_TAGLINE"] = "Einfaches und zuverlässiges Beschwören von zufälligen Reittieren."
L["LM_SEX"] = "Geschlecht"
L["LM_SHOW_ALL_MOUNTS"] = "Alle Reittiere anzeigen"
L["LM_SMARTMOUNT_ACTION"] = "Intelligente Prioritätreittier"
L["LM_SMARTMOUNT_DESCRIPTION"] = "Beschwöre ein zufälliges Reittier, welches für die aktuelle Situation am besten ist. Beachtet die Priorität/Seltenheit, um Reittiere häufiger, seltener oder nie zu beschwören."
L["LM_SPELL_ACTION"] = "Zauber wirken"
L["LM_SPELL_DESCRIPTION"] = "Einen Zauber wirken. Gib den Namen des Zaubers oder die Zauber ID ein."
L["LM_STEADY_FLIGHT"] = "Statisches Fliegen"
L["LM_SUMMON_CHAT_MESSAGE"] = "%s (Priorität: %d, Beschwörungen: %d)"
L["LM_SUMMON_CHAT_MESSAGE_RARITY"] = "%s (Seltenheit:%s, Beschwörungen: %d)"
L["LM_TRANSLATORS"] = "Übersetzer"
L["LM_USABLE"] = "Benutzbare"
L["LM_USE_ACTION"] = "Item benutzen"
L["LM_USE_DESCRIPTION"] = "Benutze ein Item. Gebe ein Item Namen, Item ID oder die Ausrüstungsslot Nummer ein."
L["LM_USE_RARITY_WEIGHTS"] = "Beschwöre Reittiere mehr oder weniger häufig basierend auf ihrer Seltenheit (anstatt ihrer Priorität)."
L["LM_WARN_REPLACE_COND"] = "Die Bedingung der [%s] -Aktionsliste wurde aufgrund von Blizzard-Änderungen durch [%s] ersetzt."
-- Family
L["Alpaca"] = "Alpaka"
L["Aqir Drone"] = "Drohne der Aqir"
L["Aqiri"] = "Aqir"
L["Aquilon"] = "Aquilon"
L["Armoredon"] = "Panzerdon"
L["Bakar"] = "Bakar"
L["Basilisk"] = "Basilisk"
L["Bat"] = "Fledermaus"
L["Bear"] = "Bär"
L["Bee"] = "Biene"
L["Beetle"] = "Käfer"
L["Bird"] = "Vogel"
L["Bloodswarmer"] = "Blutschwärmer"
L["Boar"] = "Eber"
L["Bonehoof"] = "Knochenhuf"
L["Bruffalon"] = "Brüffelch"
L["Brutosaur"] = "Brutosaurus"
L["Butterfly"] = "Schmetterling"
L["Camel"] = "Kamel"
L["Cat"] = "Katze"
L["Charhound"] = "Aschenhund"
L["Chimaera"] = "Schimäre"
L["Clefthoof"] = "Grollhuf"
L["Cloud Serpent"] = "Wolkenschlange"
L["Cloudrook"] = "Wolkenkrähe"
L["Core Hound"] = "Kernhund"
L["Corpsefly"] = "Leichenfliege"
L["Courser"] = "Renner"
L["Crab"] = "Krebs"
L["Cradle"] = "Wiege"
L["Crane"] = "Kranich"
L["Crawg"] = "Krogg"
L["Crocolisk"] = "Krokilisk"
L["Deathroc"] = "Todesroc"
L["Devourer"] = "Verschlinger"
L["Direhorn"] = "Terrorhorn"
L["Disc"] = "Scheibe"
L["Donkey"] = "Eselchen"
L["Dragon Turtle"] = "Drachenschildkröte"
L["Dragonhawk"] = "Drachenfalke"
L["Drake"] = "Drache"
L["Dread Raven"] = "Schreckensrabe"
L["Dreadsteed"] = "Schreckensross"
L["Dreadwake"] = "Schreckensflut"
L["Dreamsaber"] = "Traumsäbler"
L["Dreamstag"] = "Traumhirsch"
L["Dreamtalon"] = "Traumkralle"
L["Eagle"] = "Adler"
L["Eel"] = "Aal"
L["Elderhorn"] = "Horn"
L["Elekk"] = "Elekk"
L["Elemental"] = "Elementar"
L["Fathom Dweller"] = "Tiefenbewohner"
L["Fathom Ray"] = "Tiefenrochen"
L["Felbat"] = "Teufelsfledermaus"
L["Felhunter"] = "Teufelsjäger"
L["Fey Dragon"] = "Feendrache"
L["Fire Hawk"] = "Feuerfalke"
L["Fish"] = "Fisch"
L["Flying Carpet"] = "Fliegender Teppich"
L["Flying Machine"] = "Flugmaschine"
L["Fox"] = "Fuchs"
L["Gargon"] = "Gargon"
L["Glowmite"] = "Glühmilbe"
L["Goat"] = "Reitziege"
L["Gorm"] = "Gorm"
L["Gravewing"] = "Grabschwinge"
L["Gronnling"] = "Gronnling"
L["Gryphon"] = "Greif"
L["Hand"] = "Hand"
L["Hawkstrider"] = "Falkenschreiter"
L["Helicid"] = "Helicid"
L["Hippogryph"] = "Hippogryph"
L["Hivemind"] = "Schwarmbewusstsein"
L["Horse"] = "Pferd"
L["Hound"] = "Jagdhund"
L["Hyena"] = "Hyäne"
L["Infernal"] = "Höllenbestie"
L["Jawcrawler"] = "Kieferkriecher"
L["Kodo"] = "Kodo"
L["Krolusk"] = "Krolusk"
L["Larion"] = "Larion"
L["Magic"] = "Magie"
L["Mammoth"] = "Mammut"
L["Mana Ray"] = "Manarochen"
L["Meat Wagon"] = "Fleischwagen"
L["Mechacycle"] = "Mechamotorrad"
L["Mechanical"] = "Máquina"
L["Mechanocat"] = "Mechanokatze"
L["Mechanocrawler"] = "Mechanokrabbler"
L["Mechanostrider"] = "Roboschreiter"
L["Mole"] = "Maulwurf"
L["Moonbeast"] = "Mondbestie"
L["Moth"] = "Motte"
L["Motorcycle"] = "Chopper"
L["Murloc"] = "Murloc"
L["Mushan Beast"] = "Mushan"
L["Nether Drake"] = "Netherdrache"
L["Nether Ray"] = "Netherrochen"
L["Ottuk"] = "Ottuk"
L["Owl"] = "Eule"
L["Pandaren Kite"] = "Pandarendrachen"
L["Panthara"] = "Panthara"
L["Peafowl"] = "Pfau"
L["Phalynx"] = "Phalynx"
L["Phoenix"] = "Phönix"
L["Proto-Drake"] = "Protodrache"
L["Pterrordax"] = "Pterrordax"
L["Ram"] = "Widder "
L["Raptor"] = "Raptor"
L["Ratstallion"] = "Rattenhengst"
L["Ravager"] = "Felshetzer"
L["Raven"] = "Rabe"
L["Ray"] = "Rochen"
L["Razorwing"] = "Klingenschwinge"
L["Riverbeast"] = "Flussbestie"
L["Rocket"] = "Rakete"
L["Rodent"] = "Nager"
L["Rooster"] = "Hahn"
L["Runedeer"] = "Runenreh"
L["Rylak"] = "Rylak"
L["Salamanther"] = "Salamanther"
L["Scarab"] = "Skarabäus"
L["Scorpid"] = "Skorpid"
L["Seahorse"] = "Seepferdchen"
L["Serpent"] = "Schlange"
L["Shalewing"] = "Schieferschwinge"
L["Shapeshift"] = "Gestaltwandel"
L["Shardhide"] = "Splitterfell"
L["Skeletal Horse"] = "Skelettpferd"
L["Skitterfly"] = "Flatterlibelle"
L["Skullboar"] = "Schädeleber"
L["Skyrazor"] = "Himmelsreißer"
L["Slitherdrake"] = "Kriecherdrache"
L["Slug"] = "Schnecke"
L["Slyvern"] = "Slyvern"
L["Snapdragon"] = "Schnappdrache"
L["Spider"] = "Spinne"
L["Stone Drake"] = "Steindrache"
L["Stone Hound"] = "Steinhund"
L["Stone Panther"] = "Steinpanther"
L["Storm Dragon"] = "Sturmdrache"
L["Talbuk"] = "Talbuk"
L["Tallstrider"] = "Weitschreiter"
L["Tauralus"] = "Tauralus"
L["Thunderspine"] = "Donnerrückgrat"
L["Toad"] = "Kröte"
L["Turtle"] = "Schildkröte"
L["Ur'zul"] = "Ur'zul"
L["Vespoid"] = "Vespid"
L["Vile Fiend"] = "Übles Scheusal"
L["Vombata"] = "Vombata"
L["Vorquin"] = "Vorquin"
L["Warp Stalker"] = "Sphärenjäger"
L["Wasp"] = "Wespe"
L["Water Strider"] = "Wasserschreiter"
L["Wilderling"] = "Wildling"
L["Wind Drake"] = "Winddrache"
L["Wind Rider"] = "Windreiter"
L["Wolf"] = "Wolf"
L["Wolfhawk"] = "Wolfsfalke"
L["Wylderdrake"] = "Wilddrache"
L["Wyrm"] = "Wyrm"
L["Yak"] = "Yak"
L["Yeti"] = "Yeti"
L["Zodiac"] = "Tierkreis"
end
-- esES / esMX -----------------------------------------------------------------
if locale == "esES" or locale == "esMX" then
L = L or {}
L["LM_ACTION"] = "Acción"
L["LM_ADD_MOUNTS_AT_PRIORITY_0"] = "Cuando Blizzard añade una nueva montura, establecerla con prioridad 0 (desactivada)."
L["LM_ADVANCED_EXP"] = "Estas configuraciones le permiten personalizar las acciones ejecutadas por cada uno de los acciones clave de LiteMount. Lea la documentación en la URL a continuación antes de cambiar cualquier cosa."
L["LM_ANNOUNCE_FLIGHT_STYLE"] = "Anuncia cambios en el estilo de vuelo."
L["LM_ANNOUNCE_MOUNTS"] = "Anuncia las monturas convocadas a:"
L["LM_AREA_FMT_S"] = "Área de %s"
L["LM_AUTHOR"] = "Auto"
L["LM_CHANGE_PROFILE"] = "Cambiar de perfil"
L["LM_COLOR_BY_PRIORITY"] = "Color por prioridad"
L["LM_COMBAT_MACRO_EXP"] = "Si está habilitado, esta macro se ejecutará en lugar de las acciones de combate predeterminadas si LiteMount se activa mientras estás en combate."
L["LM_CONDITIONS"] = "Condiciones"
L["LM_COPY_TARGETS_MOUNT"] = "Intenta copiar la montura del objetivo."
L["LM_COVENANT"] = "Curia"
L["LM_CREATE_GLOBAL_GROUP"] = "Global"
L["LM_CREATE_PROFILE_GROUP"] = "Perfil"
L["LM_CURRENT_PROFILE"] = "Perfil actual"
L["LM_CURRENT_SETTINGS"] = "Configuraciones actuales"
L["LM_DEBUGGING_DISABLED"] = "Depuración desactivada."
L["LM_DEBUGGING_ENABLED"] = "Depuración activada."
L["LM_DEFAULT_SETTINGS"] = "Configuración por defecto"
L["LM_DELETE_FLAG"] = "Borrar un marbete"
L["LM_DELETE_GROUP"] = "Eliminar grupo"
L["LM_DELETE_PROFILE"] = "Borrar un perfil"
L["LM_DISABLING_MOUNT"] = "Desactivar la montura activa: %s"
L["LM_EDIT_RULE"] = "Editar regla"
L["LM_ENABLE_DEBUGGING"] = "Activar los mensajes de depuración."
L["LM_ENABLING_MOUNT"] = "Activando el montaje activo: %s"
L["LM_ERR_BAD_ACTION"] = "Acción no válida '%s'"
L["LM_ERR_BAD_ARGUMENTS"] = "Argumento no válido '%s'"
L["LM_ERR_BAD_CONDITION"] = "Estado no válida '%s' ."
L["LM_ERR_BAD_RULE"] = "Regla no válida '%s': %s"
L["LM_EVERY_D_MINUTES"] = "Cada %d minutos"
L["LM_EVERY_D_SECONDS"] = "Cada %d segundos"
L["LM_EVERY_TIME"] = "Cada vez"
L["LM_EXCLUDE_MOUNTS"] = "Excluir monturas"
L["LM_EXPORT_PROFILE"] = "Exportar perfil"
L["LM_EXPORT_PROFILE_EXP"] = "Corta y pega el texto a continuación en un archivo para guardar este perfil. Puede restaurarlo nuevamente con 'Importar perfil'."
L["LM_FAMILY"] = "Familia"
L["LM_FLAG"] = "Marbete"
L["LM_FLAGS"] = "Marbetes"
L["LM_FLIGHT_STYLE"] = "Estilo de vuelo"
L["LM_GATHERED_RECENTLY"] = "Reunido recientemente"
L["LM_GROUND"] = "Terrestre"
L["LM_GROUP"] = "Grupo"
L["LM_GROUPS"] = "Grupos"
L["LM_GROUPS_EXP"] = "Aquí puede gestionar grupos de monturas, que pueden utilizarse en las Reglas y en los Ajustes avanzados."
L["LM_HELP_TRANSLATE"] = "Ayuda a traducir LiteMount a tu idioma. Gracias."
L["LM_HERB"] = "Hierba"
L["LM_HIDDEN"] = "Ocultada"
L["LM_HOLIDAY"] = "Festividades"
L["LM_IMPORT_PROFILE"] = "Importar perfil"
L["LM_IMPORT_PROFILE_EXP"] = "Pegue un perfil exportado previamente en el cuadro de abajo para importarlo como el nombre ingresado."
L["LM_INCLUDE_MOUNTS"] = "Incluir monturas"
L["LM_INSTANT_ONLY_MOVING"] = "No convoques monturas de lanzamiento instantáneo a menos que estés en movimiento."
L["LM_LIMIT_MOUNTS"] = "Límite"
L["LM_LIMITEXCLUDE_DESCRIPTION"] = "Elimina las monturas especificadas del conjunto disponible para acciones posteriores."
L["LM_LIMITINCLUDE_DESCRIPTION"] = "Añade las monturas especificadas al conjunto disponible para acciones posteriores."
L["LM_LIMITSET_DESCRIPTION"] = "Limite las monturas disponibles a aquellas especificadas para todas las acciones posteriores."
L["LM_MACRO_EXP"] = "Esta macro se ejecutará si LiteMount no puede encontrar una montura utilizable. Esto podría deberse a que está en el interior, o se está moviendo, y no conoce ningún montaje instantáneo."
L["LM_MACRO_NOT_ALLOWED"] = "Esta configuración no funciona al activar LiteMount utilizando una macro en una barra de acción. Esto se debe a que Blizzard impide que las macros llamen a otras macros."
L["LM_MODIFIER_KEY"] = "Tecla modificadora"
L["LM_MOUNT_ACTION"] = "Montura aleatorio"
L["LM_MOUNT_DESCRIPTION"] = "Invoca una montura aleatoria"
L["LM_MOUSE_BUTTON_CLICKED"] = "El botón del ratón hizo clic"
L["LM_NEW_FLAG"] = "Crear un marbete"
L["LM_NEW_GROUP"] = "Nuevo grupo"
L["LM_NEW_PROFILE"] = "Crear un perfil"
L["LM_NOT"] = "No"
L["LM_NOT_FORMAT"] = "No %s"
L["LM_ON_SCREEN_DISPLAY"] = "Visualización en pantalla"
L["LM_ORE"] = "Mena"
L["LM_PARTY_OR_RAID_GROUP"] = "En una grupo o banda"
L["LM_PRECAST_ACTION"] = "Lanzar hechizo antes de montar"
L["LM_PRECAST_DESCRIPTION"] = "Registra un hechizo para intentar lanzarlo antes de montar. Ingresa el nombre o el ID de un hechizo. Solo se usa antes de usar una montura de tropa y el hechizo no debe tener tiempo de lanzamiento."
L["LM_PREUSE_ACTION"] = "Utilizar objeto antes de montar"
L["LM_PREUSE_DESCRIPTION"] = "Registra un objeto para probar su uso antes de montarlo. Introduce un nombre de objeto, un ID de objeto o un número de ranura de equipo. Solo se utiliza antes de la lista de monturas de tropa. El objeto no debe tener tiempo de lanzamiento."
L["LM_PRIORITY"] = "Prioridad"
L["LM_PRIORITY_DESC1"] = "Normal"
L["LM_PRIORITY_DESC2"] = "Más a menudo"
L["LM_PRIORITY_DESC3"] = "Mucho más a menudo"
L["LM_PRIORITYMOUNT_ACTION"] = "Montura prioritario"
L["LM_PRIORITYMOUNT_DESCRIPTION"] = "Invoca una montura aleatoria. Utiliza las prioridades/rarezas para invocar monturas con mayor o menor frecuencia (o nunca)."
L["LM_PROFILES"] = "Perfiles"
L["LM_PROFILES_EXP"] = "Los perfiles son configuraciones diferentes entre las que puede cambiar. Cada uno de tus personajes tiene su propio perfil seleccionado. Todas las configuraciones, excepto las macros Combate y No disponible, se guardan en el perfil y cambian al cambiar de perfil."
L["LM_RANDOM_PERSISTENCE"] = "Con qué frecuencia seleccionar una nueva montura aleatoria"
L["LM_RARITY_DATA_INFO"] = "Los datos de rareza (cuántas cuentas han coleccionado cada montura) son proporcionados por DataForAzeroth y se actualizan cada vez que se lanza una nueva versión de LiteMount. Para obtener datos actualizados con mayor frecuencia, por favor instala también el AddOn MountsRarity."
L["LM_RARITY_DISABLES_PRIORITY"] = "Las prioridades distintas de 0 (desactivadas) están inactivas porque se ha seleccionado invocar por rareza en la configuración general."
L["LM_RARITY_FORMAT"] = "%0.1f%%"
L["LM_RARITY_FORMAT_LONG"] = "Coleccionado por el %0.1f%% de las cuentas de WoW."
L["LM_RENAME_FLAG"] = "Cambiar un marbete"
L["LM_RENAME_GROUP"] = "Cambiar un grupo"
L["LM_REPORT_BUG"] = "Informar un error"
L["LM_REPORT_BUG_EXP"] = "Para informar un error en LiteMount, describa el error en la parte superior del campo a continuación, luego corte y pegue todo el texto en el formulario Crear problema en esta URL:"
L["LM_RESET_PROFILE"] = "Reiniciar perfil"
L["LM_RESTORE_FORMS"] = "Intentar restaurar la forma cambiada de druida al desmontar"
L["LM_RULES_EXP"] = "Reglas de montado. Cada regla tiene hasta 3 condiciones y una acción. Las reglas se comprueban en orden, y si todas las condiciones coinciden se aplica la acción."
L["LM_RULES_INACTIVE"] = "Las reglas para el teclado %d están inactivas porque su lista de acciones personalizadas (en Opciones Avanzadas) no contiene la acción 'ApplyRules'."
L["LM_SEASON"] = "Estación"
L["LM_SEASON_FALL"] = "Otoño"
L["LM_SEASON_SPRING"] = "Primavera"
L["LM_SEASON_SUMMER"] = "Verano"
L["LM_SEASON_WINTER"] = "Invierno"
L["LM_SET_DEFAULT_MOUNT_PRIORITY_TO"] = "Imposta la priorità di montatura predefinita a %d (%s) invece che a %d (%s)."
L["LM_SETTINGS_TAGLINE"] = "Invocación de monturas aleatorio simple y confiable."
L["LM_SEX"] = "Género"
L["LM_SHOW_ALL_MOUNTS"] = "Mostrar todas las monturas "
L["LM_SMARTMOUNT_ACTION"] = "Montura prioritario inteligente"
L["LM_SMARTMOUNT_DESCRIPTION"] = "Invoca una montura aleatoria del mejor tipo disponible para la situación actual. Utiliza las prioridades/rarezas para invocar monturas con más o menos frecuencia (o nunca)."
L["LM_SPELL_ACTION"] = "Lanzar hechizo"
L["LM_SPELL_DESCRIPTION"] = "Lanza un hechizo. Introduce el nombre del hechizo o su identificador (ID)."
L["LM_STEADY_FLIGHT"] = "Vuelo constante"
L["LM_SUMMON_CHAT_MESSAGE"] = "%s (Prioridad: %d, Invoca: %d)"
L["LM_SUMMON_CHAT_MESSAGE_RARITY"] = "%s (Rareza: %s, Invocaciones: %d)"
L["LM_TRANSLATORS"] = "Traductores"
L["LM_USABLE"] = "Utilizable"
L["LM_USE_ACTION"] = "Utilizar objeto"
L["LM_USE_DESCRIPTION"] = "Utiliza un objeto. Introduce el nombre del objeto, su identificador (ID), o el número de la ranura de equipo."
L["LM_USE_RARITY_WEIGHTS"] = "Invoca monturas mas o menos veces basándose en su rareza (en vez de la prioridad)."
L["LM_WARN_REPLACE_COND"] = "La condición de la lista de acciones [%s] ha sido reemplazada por [%s] debido a los cambios de Blizzard."
-- Family
L["Alpaca"] = "Alpaca"
L["Aqir Drone"] = "Zángano aqir"
L["Aqiri"] = "Aqir"
L["Aquilon"] = "Aquilon"
L["Armoredon"] = "Rinocerontes blindados"
L["Bakar"] = "Bakar"
L["Basilisk"] = "Basilisco"
L["Bat"] = "Murciélago"
L["Bear"] = "Oso"
L["Bee"] = "Abeja"
L["Beetle"] = "Escarabajo"
L["Bird"] = "Pájaro"
L["Bloodswarmer"] = "Enjambrista"
L["Boar"] = "Jabalí"
L["Bonehoof"] = "Cascohueso"
L["Bruffalon"] = "Brúfalo"
L["Brutosaur"] = "Brutosaurio"
L["Butterfly"] = "Mariposa"
L["Camel"] = "Camello"
L["Cat"] = "Felino"
L["Charhound"] = "Sabueso calcinado"
L["Chimaera"] = "Quimera"
L["Clefthoof"] = "Uñagrieta"
L["Cloud Serpent"] = "Dragón nimbo"
L["Cloudrook"] = "Nubegrajo"
L["Core Hound"] = "Can del Núcleo"
L["Corpsefly"] = "Moscadáver"
L["Courser"] = "Trotador"
L["Crab"] = "Cangrejo"
L["Cradle"] = "Cuna"
L["Crane"] = "Grulla"
L["Crawg"] = "Tragadón"
L["Crocolisk"] = "Crocolisco"
L["Deathroc"] = "Roc mortífero"
L["Devourer"] = "Devorador"
L["Direhorn"] = "Cuernoatroz"
L["Disc"] = "Disco"
L["Donkey"] = "Burro"
L["Dragon Turtle"] = "Tortuga dragón"
L["Dragonhawk"] = "Dracohalcón"
L["Drake"] = "Draco"
L["Dread Raven"] = "Cuervo aterrador"
L["Dreadsteed"] = "Corcel nefasto"
L["Dreadwake"] = "Rastro del Pavor"
L["Dreamsaber"] = "Sable onírico"
L["Dreamstag"] = "Sueñovenado"
L["Dreamtalon"] = "Garfasueño"
L["Eagle"] = "Águila"
L["Eel"] = "Anguila"
L["Elderhorn"] = "Cuernoviejo"
L["Elekk"] = "Elekk"
L["Elemental"] = "Elemental"
L["Fathom Dweller"] = "Medusa"
L["Fathom Ray"] = "Mantarraya sondeadora"
L["Felbat"] = "Murciélago vil"
L["Felhunter"] = "Manáfago"
L["Fey Dragon"] = "Dragón hada"
L["Fire Hawk"] = "Halcón de fuego"
L["Fish"] = "Pescado"
L["Flying Carpet"] = "Alfombra voladora"
L["Flying Machine"] = "Máquina voladora"
L["Fox"] = "Zorro"
L["Gargon"] = "Gargon"
L["Glowmite"] = "Brillácaro"
L["Goat"] = "Cabra"
L["Gorm"] = "Gorm"
L["Gravewing"] = "Alatumba"
L["Gronnling"] = "Gronnito"
L["Gryphon"] = "Grifo"
L["Hand"] = "Mano"
L["Hawkstrider"] = "Halcón zancudo"
L["Helicid"] = "Helícido"
L["Hippogryph"] = "Hipogrifo"
L["Hivemind"] = "Mente colmena"
L["Horse"] = "Caballo"
L["Hound"] = "Can"
L["Hyena"] = "Hiena"
L["Infernal"] = "Infernal"
L["Jawcrawler"] = "Reptafauces"
L["Kodo"] = "Kodo"
L["Krolusk"] = "Krolusko"
L["Larion"] = "Larión"
L["Magic"] = "Magia"
L["Mammoth"] = "Mamut"
L["Mana Ray"] = "Raya de maná"
L["Meat Wagon"] = "Catapulta"
L["Mechacycle"] = "Mecaciclo"
L["Mechanical"] = "Mecánico"
L["Mechanocat"] = "Mecanogato"
L["Mechanocrawler"] = "Mecarreptador"
L["Mechanostrider"] = "Mecazancudo"
L["Mole"] = "Topo"
L["Moonbeast"] = "Bestia lunar"
L["Moth"] = "Palomilla"
L["Motorcycle"] = "Chopper"
L["Murloc"] = "Múrloc"
L["Mushan Beast"] = "Bestia mushan"
L["Nether Drake"] = "Draco abisal"
L["Nether Ray"] = "Raya abisal"
L["Ottuk"] = "Nutrión"
L["Owl"] = "Búho"
L["Pandaren Kite"] = "Cometa pandaren"
L["Panthara"] = "Panthara"
L["Peafowl"] = "Pavo real"
L["Phalynx"] = "Falince"
L["Phoenix"] = "Fénix"
L["Proto-Drake"] = "Protodraco"
L["Pterrordax"] = "Pterrordáctilo"
L["Ram"] = "Carnero"
L["Raptor"] = "Raptor"
L["Ratstallion"] = "Ratrotón"
L["Ravager"] = "Devastador"
L["Raven"] = "Cuervo"
L["Ray"] = "Raya"
L["Razorwing"] = "Alafilada"
L["Riverbeast"] = "Bestia fluvial"
L["Rocket"] = "Cohete"
L["Rodent"] = "Roedor"
L["Rooster"] = "Gallo"
L["Runedeer"] = "Ciervo rúnico"
L["Rylak"] = "Rylak"
L["Salamanther"] = "Salamantra"
L["Scarab"] = "Escarabajo"
L["Scorpid"] = "Escórpido"
L["Seahorse"] = "Caballito de mar"
L["Serpent"] = "Serpiente"
L["Shalewing"] = "Alaesquisto"
L["Shapeshift"] = "Forma"
L["Shardhide"] = "Pellejosquirla"
L["Skeletal Horse"] = "Caballo esquelético"
L["Skitterfly"] = "Escurriposa"
L["Skullboar"] = "Calaverón"
L["Skyrazor"] = "Cuchilla del cielo"
L["Slitherdrake"] = "Reptadraco"
L["Slug"] = "Babosa"
L["Slyvern"] = "Astudraco"
L["Snapdragon"] = "Bocadragón"
L["Spider"] = "Araña"
L["Stone Drake"] = "Draco de piedra"
L["Stone Hound"] = "Can de piedra"
L["Stone Panther"] = "Pantera de piedra"
L["Storm Dragon"] = "Dragón de tormenta"
L["Talbuk"] = "Talbuk"
L["Tallstrider"] = "Zancaalta"
L["Tauralus"] = "Tauralus"
L["Thunderspine"] = "Espinatrueno"
L["Toad"] = "Sapo"
L["Turtle"] = "Tortuga"
L["Ur'zul"] = "Ur'zul"
L["Vespoid"] = "Vespoide"
L["Vile Fiend"] = "Maligno vil"
L["Vombata"] = "Vombata"
L["Vorquin"] = "Vorquin"
L["Warp Stalker"] = "Acechador deformado"
L["Wasp"] = "Avispa"
L["Water Strider"] = "Zancudo acuático"
L["Wilderling"] = "Salvajizo"
L["Wind Drake"] = "Draco de Viento"
L["Wind Rider"] = "Jinete del viento"
L["Wolf"] = "Lobo"
L["Wolfhawk"] = "Lobohalcón"
L["Wylderdrake"] = "Dracosalvaje"
L["Wyrm"] = "Vermis"
L["Yak"] = "Yak"
L["Yeti"] = "Yeti"
L["Zodiac"] = "Zodíaco"
end
-- frFR ------------------------------------------------------------------------
if locale == "frFR" then
L = L or {}
L["LM_ACTION"] = "Action"
L["LM_ADD_MOUNTS_AT_PRIORITY_0"] = "Lorsque Blizzard ajoute une nouvelle monture, mettre la priorité à 0 (désactivé)."
L["LM_ADVANCED_EXP"] = "Ces paramètres vous permettent de customiser les actions lancées par chacun des raccourcis de LiteMount. Veillez à lire la documentation jointe à l’URL ci-dessous avant de changer quoique ce soit."
L["LM_ANNOUNCE_FLIGHT_STYLE"] = "Annonce les changements de style de vol."
L["LM_ANNOUNCE_MOUNTS"] = "Annoncez les montures invoquées à :"
L["LM_AREA_FMT_S"] = "Zone de %s"
L["LM_AUTHOR"] = "Auteur"
L["LM_CHANGE_PROFILE"] = "Changer de profil"
L["LM_COLOR_BY_PRIORITY"] = "Couleur par priorité"
L["LM_COMBAT_MACRO_EXP"] = "Si cochée, cette macro sera lancée à la place de l'action de combat par défaut si LiteMount est actif lorsque vous êtes en combat."
L["LM_CONDITIONS"] = "Conditions"
L["LM_COPY_TARGETS_MOUNT"] = "Essaye de copier la monture de la cible."
L["LM_COVENANT"] = "Congrégation"
L["LM_CREATE_GLOBAL_GROUP"] = "Global"
L["LM_CREATE_PROFILE_GROUP"] = "Profil"
L["LM_CURRENT_PROFILE"] = "Profil actuel"
L["LM_CURRENT_SETTINGS"] = "Réglages actuels"
L["LM_DEBUGGING_DISABLED"] = "Débogage désactivé."
L["LM_DEBUGGING_ENABLED"] = "Débogage activé."
L["LM_DEFAULT_SETTINGS"] = "Réglages par défaut"
L["LM_DELETE_FLAG"] = "Supprimer le Tag"
L["LM_DELETE_GROUP"] = "Supprimer le groupe"
L["LM_DELETE_PROFILE"] = "Effacer le profil"
L["LM_DISABLING_MOUNT"] = "Désactivation de la monture courante: %s"
L["LM_EDIT_RULE"] = "Modifier la règle"
L["LM_ENABLE_DEBUGGING"] = "Activer les messages de débogage."
L["LM_ENABLING_MOUNT"] = "Activation de la monture courante: %s"
L["LM_ERR_BAD_ACTION"] = "Action invalide '%s'"
L["LM_ERR_BAD_ARGUMENTS"] = "Arguments invalides '%s'"
L["LM_ERR_BAD_CONDITION"] = "Condition invalide '%s'"
L["LM_ERR_BAD_RULE"] = "Règle invalide '%s'"
L["LM_EVERY_D_MINUTES"] = "Toutes les %d minutes"
L["LM_EVERY_D_SECONDS"] = "Toutes les %d secondes"
L["LM_EVERY_TIME"] = "À chaque fois"
L["LM_EXCLUDE_MOUNTS"] = "Exclure les montures"
L["LM_EXPORT_PROFILE"] = "Exporter un profil"
L["LM_EXPORT_PROFILE_EXP"] = "Coupez-collez le texte ci-dessous dans un fichier pour enregistrer ce profil. Vous pouvez le restaurer à nouveau avec «Importer un profil»."
L["LM_FAMILY"] = "Famille"
L["LM_FLAG"] = "Tag"
L["LM_FLAGS"] = "Tags"
L["LM_FLIGHT_STYLE"] = "Style de vol"
L["LM_GATHERED_RECENTLY"] = "Récolte récente"
L["LM_GROUND"] = "Terrestre"
L["LM_GROUP"] = "Groupe"
L["LM_GROUPS"] = "Groupes"
L["LM_GROUPS_EXP"] = "Ici, vous pouvez gérer des groupes de montures, qui peuvent être utilisés dans les Règles et les Paramètres avancés."
L["LM_HELP_TRANSLATE"] = "Aidez a traduire LiteMount dans votre langue. Merci."
L["LM_HERB"] = "Herbe"
L["LM_HIDDEN"] = "Masquée"
L["LM_HOLIDAY"] = "Événement saisonnier"
L["LM_IMPORT_PROFILE"] = "Importer un profil"
L["LM_IMPORT_PROFILE_EXP"] = "Collez un profil précédemment exporté dans la case ci-dessous pour l'importer sous le nom saisi."
L["LM_INCLUDE_MOUNTS"] = "Inclure les montures"
L["LM_INSTANT_ONLY_MOVING"] = "N'invoque pas de montures à lancer instantané à moins de vous déplacer."
L["LM_LIMIT_MOUNTS"] = "Limite les montures"
L["LM_LIMITEXCLUDE_DESCRIPTION"] = "Supprime les montures spécifiées de l'ensemble des montures disponibles pour des actions ultérieures."
L["LM_LIMITINCLUDE_DESCRIPTION"] = "Ajoute les montures spécifiées à l'ensemble des montures disponibles pour des actions ultérieures."
L["LM_LIMITSET_DESCRIPTION"] = "Limite les montures disponibles pour toutes les actions ultérieures à celles spécifiés."
L["LM_MACRO_EXP"] = "Cette macro sera exécutée si LiteMount ne trouve pas de monture utilisable. Cela peut arriver si vous êtes en intérieur, ou si vous bougez et n'avez pas de monture instantanée."
L["LM_MACRO_NOT_ALLOWED"] = "Ce paramètre ne fonctionne pas lorsque l'on active LiteMount en utilisant une macro depuis une barre d'action. Ceci est dû au fait que Blizzard empêche les macros d'appeler d'autres macros."
L["LM_MODIFIER_KEY"] = "Touche de modification"
L["LM_MOUNT_ACTION"] = "Monture aléatoire"
L["LM_MOUNT_DESCRIPTION"] = "Invoque une monture aléatoire."
L["LM_MOUSE_BUTTON_CLICKED"] = "Bouton de la souris cliqué"
L["LM_NEW_FLAG"] = "Nouveau Tag"
L["LM_NEW_GROUP"] = "Nouveau groupe"
L["LM_NEW_PROFILE"] = "Créer un profil"
L["LM_NOT"] = "Ne pas"
L["LM_NOT_FORMAT"] = "Ne pas %s"
L["LM_ON_SCREEN_DISPLAY"] = "L'affichage sur écran"
L["LM_ORE"] = "Minerai"
L["LM_PARTY_OR_RAID_GROUP"] = "Dans un groupe ou un groupe de raid"
L["LM_PRECAST_ACTION"] = "Lance un sort avant l'invocation"
L["LM_PRECAST_DESCRIPTION"] = "Enregistre un sort à lancer avant d'invoquer une monture. Entrez le nom ou l'ID du sort. Le sort n'est lancé qu'avant les montures du journal, et il doit être instantané."
L["LM_PREUSE_ACTION"] = "Utilise un objet avant l'invocation"
L["LM_PREUSE_DESCRIPTION"] = "Enregistre un objet à utiliser avant d'invoquer une monture. Entrez le nom ou l'ID de l'objet, ou un numéro d'emplacement d'un équipement. Il ne sera utilisé qu'avant l'invocation d'une monture du journal et doit être instantané."
L["LM_PRIORITY"] = "Priorité"
L["LM_PRIORITY_DESC1"] = "Normal"
L["LM_PRIORITY_DESC2"] = "Plus souvent"
L["LM_PRIORITY_DESC3"] = "Beaucoup plus souvent"
L["LM_PRIORITYMOUNT_ACTION"] = "Monture prioritaire"
L["LM_PRIORITYMOUNT_DESCRIPTION"] = "Invoque une monture aléatoire. Utilise les priorités/raretés d'invocation plus ou moins souvent (ou jamais)."
L["LM_PROFILES"] = "Profils"
L["LM_PROFILES_EXP"] = "Les profils ont différentes configurations entre lesquelles vous pouvez basculer. Chacun de vos personnages peut sélectionner son propre profil. Tous les paramètres, à l'exception des macros Combat et Indisponible, sont enregistrés dans le profil et changent lors du changement de profil."