vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 CT_EH_REPAIR = "Repair";
2 CT_EH_FLIGHT = "Flight";
3 CT_EH_REAGENT = "Reagent";
4 CT_EH_AMMO = "Ammo";
5 CT_EH_MAIL = "Mail";
6  
7 CT_EH_LOGDATE = "Date";
8 CT_EH_LOGTYPE = "Type";
9 CT_EH_LOGCHAR = "Character";
10 CT_EH_LOGCOST = "Cost";
11  
12 CT_EH_AVERAGEREPAIR = "Average Repair:";
13 CT_EH_AVERAGEEXPENSES = "Average Expenses/Day:";
14 CT_EH_FLIGHTCOSTS = "Flights:";
15 CT_EH_REPAIRCOSTS = "Repairs:";
16 CT_EH_REAGENTCOSTS = "Reagents:";
17 CT_EH_AMMOCOSTS = "Ammo:";
18 CT_EH_MAILCOSTS = "Mail Postage:";
19  
20 CT_EH_TOTALCOST = "Total Amount Spent:";
21 CT_EH_PLAYERDISTRIBUTION = "Player Distribution:";
22 CT_EH_ALLCHARACTERS = "All Characters";
23 CT_EH_RECORDINGFROM = "Recorded data from |c00FFFFFF%s|r.";
24 CT_EH_VIEWING = "Viewing |c00FFFFFF%s|r";
25  
26 CT_EH_SUMMARY = "Summary";
27 CT_EH_LOG = "Log";
28  
29 -- Classes
30 CT_EH_WARRIOR = "Warrior";
31 CT_EH_MAGE = "Mage";
32 CT_EH_DRUID = "Druid";
33 CT_EH_ROGUE = "Rogue";
34 CT_EH_PRIEST = "Priest";
35 CT_EH_WARLOCK = "Warlock";
36 CT_EH_HUNTER = "Hunter";
37 CT_EH_SHAMAN = "Shaman";
38 CT_EH_PALADIN = "Paladin";
39  
40 -- Reagents to check for to flag as reagents vendor
41 CT_EH_SCANFORREAGENTS = {
42 ["arcane powder"] = true,
43 ["wild berries"] = true,
44 ["wild thornroot"] = true,
45 ["holy candle"] = true,
46 ["sacred candle"] = true,
47 ["ankh"] = true,
48 ["rune of teleportation"] = true,
49 ["rune of portals"] = true,
50 ["symbol of divinity"] = true,
51 ["maple seed"] = true,
52 ["stranglethorn seed"] = true,
53 ["ashwood seed"] = true,
54 ["hornbeam seed"] = true,
55 ["ironwood seed"] = true,
56 ["flash powder"] = true
57 };
58 CT_EH_SCANFORAMMO = {
59 ["ice threaded arrow"] = true,
60 ["jagged arrow"] = true,
61 ["razor arrow"] = true,
62 ["sharp arrow"] = true,
63 ["rough arrow"] = true,
64 ["ice threaded bullet"] = true,
65 ["accurate slugs"] = true,
66 ["solid shot"] = true,
67 ["smooth pebble"] = true,
68 ["heavy shot"] = true,
69 ["light shot"] = true,
70 ["wicked throwing dagger"] = true,
71 ["gleaming throwing axe"] = true,
72 ["deadly throwing axe"] = true,
73 ["heavy throwing dagger"] = true,
74 ["keen throwing knife"] = true,
75 ["sharp throwing axe"] = true,
76 ["balanced throwing dagger"] = true,
77 ["weighted throwing axe"] = true,
78 ["crude throwing axe"] = true,
79 ["small throwing knife"] = true
80 };
81  
82 CT_EH_MODINFO = {
83 "Expense History",
84 "Show Dialog",
85 "Displays the Expense History dialog, where you can view a listing and summary of your expenses."
86 };