comparison localization.lua @ 0:69b46322ff1b v1.2.1-Alpha

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