annotate LocalizeDefault.lua @ 5:a10b7ef54e09 Release

Fixed an LUA error effecting Shrine of Two Moons
author only1yzerman
date Thu, 30 May 2013 05:44:47 -0400
parents 91131c35a2c3
children 75ca29b399e8
rev   line source
only1yzerman@0 1 --[[
only1yzerman@0 2
only1yzerman@0 3 To localize this add-on, include another LUA file that follows this one in the TOC and
only1yzerman@0 4 overrides the default values. Example:
only1yzerman@0 5
only1yzerman@0 6 if GetLocale()=="deDE" then
only1yzerman@0 7 L["Bloodhound2"] = "Schweißhund2"
only1yzerman@0 8 -- etc.
only1yzerman@0 9 end
only1yzerman@0 10
only1yzerman@0 11 Limit each LUA file to a single locale.
only1yzerman@0 12
only1yzerman@0 13 ]]
only1yzerman@0 14 L = {};
only1yzerman@0 15
only1yzerman@0 16 L["Bloodhound2"] = "Bloodhound2";
only1yzerman@0 17 L["Bloodhound2 Options"] = "Bloodhound2 Options";
only1yzerman@0 18 L["Multi-Zone"] = "Multi-Zone";
only1yzerman@0 19 L["While flying"] = "While flying";
only1yzerman@0 20 L["Always"] = "Always";
only1yzerman@0 21 L["Never"] = "Never";
only1yzerman@0 22 L["Inspection radius"] = "Inspection radius";
only1yzerman@0 23 L["Zones"] = "Zones";
only1yzerman@0 24 L["All"] = "All";
only1yzerman@0 25 L["None"] = "None";
only1yzerman@0 26
only1yzerman@0 27 L["Herbs"] = "Herbs";
only1yzerman@0 28 L["Find Herbs"] = "Find Herbs";
only1yzerman@0 29 L[181166] = "Bloodthistle";
only1yzerman@0 30 L[1618] = "PeaceBloom";
only1yzerman@0 31 L[1617] = "Silverleaf";
only1yzerman@0 32 L[1619] = "Earthroot";
only1yzerman@0 33 L[1620] = "Mageroyal";
only1yzerman@0 34 L[1621] = "Briarthorn";
only1yzerman@0 35 L[2045] = "Stranglekelp";
only1yzerman@0 36 L[1622] = "Bruiseweed";
only1yzerman@0 37 L[1623] = "Wild Steelbloom";
only1yzerman@0 38 L[1628] = "Grave Moss";
only1yzerman@0 39 L[1624] = "Kingsblood";
only1yzerman@0 40 L[2041] = "Liferoot";
only1yzerman@0 41 L[2042] = "Fadeleaf";
only1yzerman@0 42 L[2046] = "Goldthorn";
only1yzerman@0 43 L[2043] = "Khadgar's Whisker";
only1yzerman@0 44 L[2044] = "Dragon's Teeth";
only1yzerman@0 45 L[2866] = "Firebloom";
only1yzerman@0 46 L[142140] = "Purple Lotus";
only1yzerman@0 47 L[142141] = "Arthas' Tears";
only1yzerman@0 48 L[142142] = "Sungrass";
only1yzerman@0 49 L[142143] = "Blindweed";
only1yzerman@0 50 L[142144] = "Ghost Mushroom";
only1yzerman@0 51 L[142145] = "Gromsblood";
only1yzerman@0 52 L[176583] = "Golden Sansam";
only1yzerman@0 53 L[176584] = "Dreamfoil";
only1yzerman@0 54 L[176586] = "Mountain Silversage";
only1yzerman@0 55 L[176587] = "Sorrowmoss";
only1yzerman@0 56 L[176588] = "Icecap";
only1yzerman@0 57 L[176589] = "Black Lotus";
only1yzerman@0 58 L[181270] = "Felweed";
only1yzerman@0 59 L[190174] = "Frozen Herb (300)";
only1yzerman@0 60 L[181271] = "Dreaming Glory";
only1yzerman@0 61 L[181275] = "Ragveil";
only1yzerman@0 62 L[181277] = "Terocone";
only1yzerman@0 63 L[181276] = "Flame Cap";
only1yzerman@0 64 L[181278] = "Ancient Lichen";
only1yzerman@0 65 L[189973] = "Goldclover";
only1yzerman@0 66 L[181279] = "Netherbloom";
only1yzerman@0 67 L[185881] = "Netherdust Bush";
only1yzerman@0 68 L[191303] = "Firethorn";
only1yzerman@0 69 L[181280] = "Nightmare Vine";
only1yzerman@0 70 L[181281] = "Mana Thistle";
only1yzerman@0 71 L[190169] = "Tiger Lily";
only1yzerman@0 72 L[190170] = "Talandra's Rose";
only1yzerman@0 73 L[191019] = "Adder's Tongue";
only1yzerman@0 74 L[190173] = "Frozen Herb (400)";
only1yzerman@0 75 L[190175] = "Frozen Herb (415)";
only1yzerman@0 76 L[190171] = "Lichbloom";
only1yzerman@0 77 L[190172] = "Icethorn";
only1yzerman@0 78 L[190176] = "Frost Lotus";
only1yzerman@0 79 L[202747] = "Cinderbloom";
only1yzerman@0 80 L[202748] = "Stormvine";
only1yzerman@0 81 L[202749] = "Azshara's Veil";
only1yzerman@0 82 L[202750] = "Heartblossom";
only1yzerman@0 83 L[202751] = "Twilight Jasmine";
only1yzerman@0 84 L[202752] = "Whiptail";
only1yzerman@0 85 L[209351] = "Snow Lily";
only1yzerman@0 86 L[215412] = "Sha-Touched Herb";
only1yzerman@0 87 L[209353] = "Rain Poppy";
only1yzerman@0 88 L[209354] = "Golden Lotus";
only1yzerman@0 89 L[209355] = "Fool's Cap";
only1yzerman@0 90 L[209349] = "Green Tea Leaf";
only1yzerman@0 91 L[209350] = "Silkweed";
only1yzerman@0 92 L[214510] = "Sha-Touched Herb";
only1yzerman@0 93 L[215410] = "Fool's Cap";
only1yzerman@0 94
only1yzerman@0 95 L["Minerals"] = "Minerals";
only1yzerman@0 96 L["Find Minerals"] = "Find Minerals";
only1yzerman@0 97 L[188432] = "Black Blood of Yogg-Saron";
only1yzerman@0 98 L[1731] = "Copper Vein";
only1yzerman@0 99 L[191844] = "Enchanted Earth";
only1yzerman@0 100 L[188699] = "Strange Ore";
only1yzerman@0 101 L[1610] = "Incendicite Mineral Vein";
only1yzerman@0 102 L[1732] = "Tin Vein";
only1yzerman@0 103 L[2653] = "Lesser Bloodstone Deposit";
only1yzerman@0 104 L[73940] = "Ooze Covered Silver Vein";
only1yzerman@0 105 L[1733] = "Silver Vein";
only1yzerman@0 106 L[1735] = "Iron Deposit";
only1yzerman@0 107 L[19903] = "Indurium Mineral Vein";
only1yzerman@0 108 L[1734] = "Gold Vein";
only1yzerman@0 109 L[73941] = "Ooze Covered Gold Vein";
only1yzerman@0 110 L[2040] = "Mithril Deposit";
only1yzerman@0 111 L[123310] = "Ooze Covered Mithril Deposit";
only1yzerman@0 112 L[165658] = "Dark Iron Deposit";
only1yzerman@0 113 L[123309] = "Ooze Covered Truesilver Deposit";
only1yzerman@0 114 L[2047] = "Truesilver Deposit";
only1yzerman@0 115 L[123848] = "Ooze Covered Thorium Vein";
only1yzerman@0 116 L[324] = "Small Thorium Vein";
only1yzerman@0 117 L[180215] = "Hakkari Thorium Vein";
only1yzerman@0 118 L[177388] = "Ooze Covered Rich Thorium Vein";
only1yzerman@0 119 L[175404] = "Rich Thorium Vein";
only1yzerman@0 120 L[181555] = "Fel Iron Deposit";
only1yzerman@0 121 L[185877] = "Nethercite Deposit";
only1yzerman@0 122 L[181069] = "Large Obsidian Chunk";
only1yzerman@0 123 L[181068] = "Small Obsidian Chunk";
only1yzerman@0 124 L[181556] = "Adamantite Deposit";
only1yzerman@0 125 L[189978] = "Cobalt Deposit";
only1yzerman@0 126 L[181569] = "Rich Adamantite Deposit";
only1yzerman@0 127 L[185557] = "Ancient Gem Vein";
only1yzerman@0 128 L[181557] = "Khorium Vein";
only1yzerman@0 129 L[189979] = "Rich Cobalt Deposit";
only1yzerman@0 130 L[189980] = "Saronite Deposit";
only1yzerman@0 131 L[189981] = "Rich Saronite Deposit";
only1yzerman@0 132 L[195036] = "Pure Saronite Deposit";
only1yzerman@0 133 L[191133] = "Titanium Vein";
only1yzerman@0 134 L[202736] = "Obsidium Deposit";
only1yzerman@0 135 L[202737] = "Pyrite Deposit";
only1yzerman@0 136 L[202738] = "Elementium Vein";
only1yzerman@0 137 L[202739] = "Rich Obsidium Deposit";
only1yzerman@0 138 L[202740] = "Rich Pyrite Deposit";
only1yzerman@0 139 L[202741] = "Rich Elementium Vein";
only1yzerman@0 140 L[209330] = "Rich Trillium Vein";
only1yzerman@0 141 L[209311] = "Ghost Iron Deposit";
only1yzerman@0 142 L[209312] = "Kyparite Deposit";
only1yzerman@0 143 L[209313] = "Trillium Vein";
only1yzerman@0 144 L[209328] = "Rich Ghost Iron Deposit";
only1yzerman@0 145 L[209329] = "Rich Kyparite Deposit";
only1yzerman@0 146 L[215413] = "Ghost Iron Deposit";
only1yzerman@2 147
only1yzerman@2 148 L[218593] = "Trove of the Thunder King";