Vynn@0
|
1 -- slash commands
|
Vynn@0
|
2 SLASH_PROSPECTME1, SLASH_PROSPECTME2 = "/prospectme", "/pm"
|
Vynn@0
|
3
|
Vynn@0
|
4 -- Load confirmation msg (addon name, version and slash commands are inserted automatically):
|
Vynn@0
|
5 --Prospect Me v#.# Loaded - Use /prospectme or /pm for Help!
|
Vynn@0
|
6 PM_LOADMSG = "|cFFFFCC00" .. GetAddOnMetadata("ProspectMe", "Title") .. "|r v|cFF00FF00" .. GetAddOnMetadata("ProspectMe", "Version") .. "|r Loaded - Use |cAAFFCC00" .. SLASH_PROSPECTME1 .. "|r or |cAAFFCC00" .. SLASH_PROSPECTME2 .. "|r for Help!"
|
Vynn@0
|
7
|
Vynn@0
|
8 -- Help Message (slash commands are inserted automatically):
|
Vynn@0
|
9 --Use /prospectme or /pm followed by an argument:
|
Vynn@0
|
10 PM_HELPMSG = "Use |cFFFFCC00" .. SLASH_PROSPECTME1 .. "|r or |cFFFFCC00" .. SLASH_PROSPECTME2 .. "|r followed by an argument:"
|
Vynn@0
|
11
|
Vynn@0
|
12 --Headers for Options Frame
|
Vynn@0
|
13 PM_RESULTSHEADER = "Display Detailed Results"
|
Vynn@0
|
14
|
Vynn@0
|
15 PM_RESETBUTTON = "Reset Database"
|
Vynn@0
|
16 PM_RESETWARNING = "Resetting Prospect Me will wipe all results from the database! Are you sure you want to do this?"
|
Vynn@0
|
17
|
Vynn@0
|
18 -- Arguments for slash handling. Example: /prospectme results.
|
Vynn@0
|
19 PM_CONFIG = "config"
|
Vynn@0
|
20 PM_EPIC = "epic"
|
Vynn@0
|
21 PM_RARE = "rare"
|
Vynn@0
|
22 PM_UNCOMMON = "uncommon"
|
Vynn@0
|
23 PM_COMMON = "common"
|
Vynn@0
|
24 PM_POOR = "poor"
|
Vynn@0
|
25 PM_SESSION = "session"
|
Vynn@0
|
26 PM_PERCENT = "percent"
|
Vynn@0
|
27 PM_NUMBER = "number"
|
Vynn@0
|
28 PM_RESET = "reset"
|
Vynn@0
|
29
|
Vynn@0
|
30 -- Options Frame checkbox names
|
Vynn@0
|
31 PM_EPICTOGGLE = "|c00A335EE[Epic]|r"
|
Vynn@0
|
32 PM_RARETOGGLE = "|c000070DD[Rare]|r"
|
Vynn@0
|
33 PM_UNCOMMONTOGGLE = "|c001EFF00[Uncommon]|r"
|
Vynn@0
|
34 PM_COMMONTOGGLE = "|c00FFFFFF[Common]|r"
|
Vynn@0
|
35 PM_POORTOGGLE = "|c009D9D9D[Poor]|r"
|
Vynn@0
|
36 PM_SESSIONTOGGLE = "Default to Per-Session Display"
|
Vynn@0
|
37 PM_PERCENTTOGGLE = "Show Percentage Results"
|
Vynn@0
|
38 PM_NUMBERTOGGLE = "Show Number Results"
|
Vynn@0
|
39
|
Vynn@0
|
40 -- Tooltips, displayed with the /prospectme help dialog and when mousing over check boxes in the blizzard interface options frame.
|
Vynn@0
|
41 PM_CONFIGTOOLTIP = "Shows the Prospect Me Configuration Frame."
|
Vynn@0
|
42 PM_EPICTOOLTIP = "Toggles the display of Epic quality results."
|
Vynn@0
|
43 PM_RARETOOLTIP = "Toggles the display of Rare quality results."
|
Vynn@0
|
44 PM_UNCOMMONTOOLTIP = "Toggles the display of Uncommon quality results."
|
Vynn@0
|
45 PM_COMMONTOOLTIP = "Toggles the display of Common quality results."
|
Vynn@0
|
46 PM_POORTOOLTIP = "Toggles the display of Poor quality results."
|
Vynn@0
|
47 PM_SESSIONTOOLTIP = "Toggles the default tooltip display between Lifetime and Session Results. Holding Alt will temporarily display the alternative"
|
Vynn@0
|
48 PM_PERCENTTOOLTIP = "Toggles the display of result percentages"
|
Vynn@0
|
49 PM_NUMBERTOOLTIP = "Toggles the display of result totals"
|
Vynn@0
|
50 PM_RESETTOOLTIP = "Reset the Prospect Me database to an empty state" |