vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -- Version
2 cgc.Version = "2.0.14"
3  
4 -- Locals
5 cgc.LOCALS = {}
6 cgc.LOCALS.DESCRIPTION = "Search the craft window for items by name or reagent."
7  
8 -- Frame Strings
9 cgc.LOCALS.FRAME_SUBMIT_TEXT = "S"
10 cgc.LOCALS.FRAME_RESET_TEXT = "R"
11 cgc.LOCALS.FRAME_NO_RESULTS = "No results matched your search."
12 cgc.LOCALS.FRAME_LINK_REAGENTS_TITLE = "To which channel:"
13 cgc.LOCALS.FRAME_LINK_REAGENTS = "Link"
14 cgc.LOCALS.FRAME_LINK_TYPES = {
15 [1] = {"Guild", "GUILD", nil},
16 [2] = {"Party", "PARTY", nil},
17 [3] = {"Say", "SAY", nil, },
18 [4] = {"Whisper", "WHISPER", "Type the name of the player you would like to send the reagent/material information to."},
19 [5] = {"Channel", "CHANNEL", "Type in which channel number you would like to post the information to. Note: _NOT_ the channel name. So if trade is /2, type simply: 2"},
20 }
21 cgc.LOCALS.FRAME_SEARCH_TYPE_TITLE = "Search By:"
22 cgc.LOCALS.FRAME_SEARCH_TYPES = {
23 [1] = "Name",
24 [2] = "Reagent",
25 [3] = "Requires",
26 }
27 cgc.LOCALS.FRAME_SEARCH_TYPES_DESC = {
28 [1] = "Search by the name of the item in the trade/craft window.",
29 [2] = "Reagent", "Search by the reagent that the item requires.",
30 [3] = "Requires", "Search by the type of tools/items required to create the item.",
31 }
32  
33