48 lines
1.2 KiB
Lua
48 lines
1.2 KiB
Lua
---@type l10n
|
|
local l10n = QuestieLoader:ImportModule("l10n")
|
|
|
|
l10n.questCategoryLookup = {
|
|
[-1] = "Epic",
|
|
[-21] = "Hallow's End",
|
|
[-22] = "Seasonal",
|
|
[-23] = "Undercity",
|
|
[-24] = "Herbalism",
|
|
[-25] = "Battlegrounds",
|
|
[-41] = "Day of the Dead",
|
|
[-61] = "Warlock",
|
|
[-81] = "Warrior",
|
|
[-82] = "Shaman",
|
|
[-101] = "Fishing",
|
|
[-121] = "Blacksmithing",
|
|
[-141] = "Paladin",
|
|
[-161] = "Mage",
|
|
[-162] = "Rogue",
|
|
[-181] = "Alchemy",
|
|
[-182] = "Leatherworking",
|
|
[-201] = "Engineering",
|
|
[-221] = "Treasure Map",
|
|
[-241] = "Tournament",
|
|
[-261] = "Hunter",
|
|
[-262] = "Priest",
|
|
[-263] = "Druid",
|
|
[-264] = "Tailoring",
|
|
[-284] = "Special",
|
|
[-304] = "Cooking",
|
|
[-324] = "First Aid",
|
|
[-344] = "Legendary",
|
|
[-364] = "Darkmoon Faire",
|
|
[-365] = "Ahn'Qiraj War",
|
|
[-366] = "Lunar Festival",
|
|
[-367] = "Reputation",
|
|
[-368] = "Invasion",
|
|
[-369] = "Midsummer",
|
|
[-370] = "Brewfest",
|
|
[-371] = "Inscription",
|
|
[-372] = "Death Knight",
|
|
[-373] = "Jewelcrafting",
|
|
[-374] = "Noblegarden",
|
|
[-375] = "Pilgrim's Bounty",
|
|
[-376] = "Love is in the Air",
|
|
[-641] = "Nightmare Incursions",
|
|
};
|