Vynn@0: -- slash commands Vynn@0: SLASH_PROSPECTME1, SLASH_PROSPECTME2 = "/prospectme", "/pm" Vynn@0: Vynn@0: -- Load confirmation msg (addon name, version and slash commands are inserted automatically): Vynn@0: --Prospect Me v#.# Loaded - Use /prospectme or /pm for Help! Vynn@0: 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: Vynn@0: -- Help Message (slash commands are inserted automatically): Vynn@0: --Use /prospectme or /pm followed by an argument: Vynn@0: PM_HELPMSG = "Use |cFFFFCC00" .. SLASH_PROSPECTME1 .. "|r or |cFFFFCC00" .. SLASH_PROSPECTME2 .. "|r followed by an argument:" Vynn@0: Vynn@0: --Headers for Options Frame Vynn@0: PM_RESULTSHEADER = "Display Detailed Results" Vynn@0: Vynn@0: PM_RESETBUTTON = "Reset Database" Vynn@0: PM_RESETWARNING = "Resetting Prospect Me will wipe all results from the database! Are you sure you want to do this?" Vynn@0: Vynn@0: -- Arguments for slash handling. Example: /prospectme results. Vynn@0: PM_CONFIG = "config" Vynn@0: PM_RESULTS = "results" Vynn@0: PM_EPIC = "epic" Vynn@0: PM_RARE = "rare" Vynn@0: PM_UNCOMMON = "uncommon" Vynn@0: PM_COMMON = "common" Vynn@0: PM_POOR = "poor" Vynn@0: PM_SESSION = "session" Vynn@0: PM_PERCENT = "percent" Vynn@0: PM_NUMBER = "number" Vynn@0: PM_RESET = "reset" Vynn@0: Vynn@0: -- Options Frame checkbox names Vynn@0: PM_RESULTSTOGGLE = "Show Detailed Results" Vynn@0: PM_EPICTOGGLE = "|c00A335EE[Epic]|r" Vynn@0: PM_RARETOGGLE = "|c000070DD[Rare]|r" Vynn@0: PM_UNCOMMONTOGGLE = "|c001EFF00[Uncommon]|r" Vynn@0: PM_COMMONTOGGLE = "|c00FFFFFF[Common]|r" Vynn@0: PM_POORTOGGLE = "|c009D9D9D[Poor]|r" Vynn@0: PM_SESSIONTOGGLE = "Default to Per-Session Display" Vynn@0: PM_PERCENTTOGGLE = "Show Percentage Results" Vynn@0: PM_NUMBERTOGGLE = "Show Number Results" Vynn@0: Vynn@0: -- Tooltips, displayed with the /prospectme help dialog and when mousing over check boxes in the blizzard interface options frame. Vynn@0: PM_CONFIGTOOLTIP = "Shows the Prospect Me Configuration Frame." Vynn@0: PM_RESULTSTOOLTIP = "Toggles the showing of detailed results in the tooltip." Vynn@0: PM_EPICTOOLTIP = "Toggles the display of Epic quality results." Vynn@0: PM_RARETOOLTIP = "Toggles the display of Rare quality results." Vynn@0: PM_UNCOMMONTOOLTIP = "Toggles the display of Uncommon quality results." Vynn@0: PM_COMMONTOOLTIP = "Toggles the display of Common quality results." Vynn@0: PM_POORTOOLTIP = "Toggles the display of Poor quality results." Vynn@0: PM_SESSIONTOOLTIP = "Toggles the default tooltip display between Lifetime and Session Results. Holding Alt will temporarily display the alternative" Vynn@0: PM_PERCENTTOOLTIP = "Toggles the display of result percentages" Vynn@0: PM_NUMBERTOOLTIP = "Toggles the display of result totals" Vynn@0: PM_RESETTOOLTIP = "Reset the Prospect Me database to an empty state"