vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -- $Id: locals.lua 2106 2006-05-24 03:47:06Z kaelten $
2 KC_ET_LOCALS = {}
3  
4 local locals = KC_ET_LOCALS
5  
6 if( not ace:LoadTranslation("KC_EnhancedTrades") ) then
7  
8 locals.name = "KC_EnhancedTrades"
9 locals.description = "Enhances the trade skill window."
10  
11 locals.buyable = "[Buyable]"
12  
13 locals.hints = {
14 [0] = "Toggles KC_EnhancedTrades",
15 [1] = "Toggles the display of the legend in the title bar.",
16 [2] = "Toggles the usage of smart display.",
17 [3] = "Toggles the display of Inv + Vendor numbers.",
18 [4] = "Toggles the display of Inv + Bank numbers.",
19 [5] = "Toggles the display of Inv + Vendor + Bank numbers.",
20 [6] = "Toggles the display of Inv + Vendor + Bank + Alts numbers.",
21 }
22  
23 locals.titles = {
24 [0] = "KC_EnhancedTrades",
25 [1] = "Legend",
26 [2] = "Smart Display",
27 [3] = "Inv + Vendor",
28 [4] = "Inv + Bank",
29 [5] = "Inv + Vendor + Bank",
30 [6] = "Inv Vendor Bank + Alts",
31 }
32  
33 -- Chat handler locals
34 locals.chat = {
35 option = "trades",
36 desc = "Enhanced trades related commands.",
37 args = {
38 },
39 }
40  
41 end