vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | KC_ITEMS_LOCALS.modules.auction = {} |
2 | local locals = KC_ITEMS_LOCALS.modules.auction |
||
3 | |||
4 | if( not ace:LoadTranslation("KC_Auction") ) then |
||
5 | |||
6 | locals.name = "KC_Auction" |
||
7 | locals.description = "Keeps Track of Auction Data" |
||
8 | |||
9 | locals.labels = {} |
||
10 | locals.labels.all = "All" |
||
11 | locals.labels.scan = "Scan" |
||
12 | locals.labels.stopscan = "Stop Scan" |
||
13 | |||
14 | locals.labels.min = {} |
||
15 | locals.labels.min.short = "|cff00ffffMin (|r%s|cff00ffff)|r" |
||
16 | locals.labels.min.long = "|cff00ffffMinBid|r " |
||
17 | locals.labels.buy = {} |
||
18 | locals.labels.buy.short = "|cff00ffffBid (|r%s|cff00ffff)|r" |
||
19 | locals.labels.buy.long = "|cff00ffffBuyout|r " |
||
20 | locals.labels.bid = {} |
||
21 | locals.labels.bid.short = "|cff00ffffBuy (|r%s|cff00ffff)|r" |
||
22 | locals.labels.bid.long = "|cff00ffffActual Bid|r " |
||
23 | |||
24 | locals.labels.stats = "|cff00ffffSeen |r%s|cff00ffff times, in Avg Stacks of |r%s" |
||
25 | locals.labels.header = "|cff00ffffAuction prices for (|r%s|cff00ffff)" |
||
26 | |||
27 | locals.sep = "-"; |
||
28 | locals.sepcolor = "|cff00ffff"; |
||
29 | |||
30 | locals.auction = {} |
||
31 | locals.auction.cantscan = "Must have the auction house window open during a scan." |
||
32 | |||
33 | locals.auction.base = format(ACE_CMD_RESULT, KC_Items.name, KC_ITEMS_LOCALS.msg.color) |
||
34 | locals.auction.notargets = format("%s%s", locals.auction.base, "You must have at least one category selected to perform a scan.") |
||
35 | locals.auction.scanning = format("%s%s", locals.auction.base, "Is currently scanning page %s of %s of the \"%s\" category.") |
||
36 | locals.auction.settingup = format("%s%s", locals.auction.base, "Is setting up to scan the marked categories.") |
||
37 | locals.auction.done = format("%s%s", locals.auction.base, "Scanning has been completed.") |
||
38 | locals.auction.canceled = format("%s%s", locals.auction.base, "Scanning has been cancled.") |
||
39 | |||
40 | locals.msg = {} |
||
41 | locals.msg.short = "Short display mode" |
||
42 | locals.msg.single = "Display of single prices" |
||
43 | locals.msg.bid = "Display of bid price" |
||
44 | locals.msg.stats = "Display of item's stats" |
||
45 | |||
46 | |||
47 | -- Chat handler locals |
||
48 | locals.chat = { |
||
49 | option = "auction", |
||
50 | desc = "Auction scanning related commands.", |
||
51 | args = { |
||
52 | { |
||
53 | option = "short", |
||
54 | desc = "Toggles use of the short display mode.", |
||
55 | method = "short" |
||
56 | }, |
||
57 | { |
||
58 | option = "single", |
||
59 | desc = "Toggles display of the single price.", |
||
60 | method = "single" |
||
61 | }, |
||
62 | { |
||
63 | option = "showbid", |
||
64 | desc = "Toggles display of the bid average.", |
||
65 | method = "showbid" |
||
66 | }, |
||
67 | { |
||
68 | option = "showstats", |
||
69 | desc = "Toggles display of the item's stats.", |
||
70 | method = "showstats" |
||
71 | }, |
||
72 | }, |
||
73 | } |
||
74 | |||
75 | end |