vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | --Version |
2 | SCT.Version = "5.0"; |
||
3 | |||
4 | --Locals |
||
5 | SCT.LOCALS = {} |
||
6 | SCT.LOCALS.EXAMPLE = "SCT"; |
||
7 | SCT.LOCALS.EXAMPLE2 = "SCT2"; |
||
8 | SCT.LOCALS.MSG_EXAMPLE = "SCT Message"; |
||
9 | |||
10 | --Everything From here on would need to be translated and put |
||
11 | --into if statements for each specific language. |
||
12 | |||
13 | --*********** |
||
14 | --ENGLISH |
||
15 | --*********** |
||
16 | |||
17 | -- Static Messages |
||
18 | SCT.LOCALS.LowHP= "Low Health!"; -- Message to be displayed when HP is low |
||
19 | SCT.LOCALS.LowMana= "Low Mana!"; -- Message to be displayed when Mana is Low |
||
20 | SCT.LOCALS.SelfFlag = "*"; -- Icon to show self hits |
||
21 | SCT.LOCALS.Combat = "+Combat"; -- Message to be displayed when entering combat |
||
22 | SCT.LOCALS.NoCombat = "-Combat"; -- Message to be displayed when leaving combat |
||
23 | SCT.LOCALS.ComboPoint = "CP"; -- Message to be displayed when gaining a combo point |
||
24 | SCT.LOCALS.FiveCPMessage = "Finish It!"; -- Message to be displayed when you have 5 combo points |
||
25 | SCT.LOCALS.ExtraAttack = "Extra Attack!"; -- Message to be displayed when time to execute |
||
26 | |||
27 | --Option messages |
||
28 | SCT.LOCALS.STARTUP = "Scrolling Combat Text "..SCT.Version.." AddOn loaded. Type /sct for options."; |
||
29 | SCT.LOCALS.Option_Crit_Tip = "Make this event always appear as a CRITICAL."; |
||
30 | SCT.LOCALS.Option_Msg_Tip = "Make this event always appear as a MESSAGE. Overrides Criticals."; |
||
31 | SCT.LOCALS.Frame1_Tip = "Make this event always appear in ANIMATION FRAME 1."; |
||
32 | SCT.LOCALS.Frame2_Tip = "Make this event always appear in ANIMATION FRAME 2"; |
||
33 | |||
34 | --Warnings |
||
35 | SCT.LOCALS.Version_Warning= "|cff00ff00SCT WARNING|r\n\nYour saved variables are from an outdated version of SCT. If you encounter errors or strange behavior, please RESET your options using the Reset button or by typing /sctreset"; |
||
36 | SCT.LOCALS.Load_Error = "|cff00ff00Error Loading SCT Options. It may be disabled.|r Error: "; |
||
37 | |||
38 | --nouns |
||
39 | SCT.LOCALS.TARGET = "Target "; |
||
40 | SCT.LOCALS.PROFILE = "SCT Profile Loaded: |cff00ff00"; |
||
41 | SCT.LOCALS.PROFILE_DELETE = "SCT Profile Deleted: |cff00ff00"; |
||
42 | SCT.LOCALS.PROFILE_NEW = "SCT New Profile Created: |cff00ff00"; |
||
43 | SCT.LOCALS.WARRIOR = "Warrior"; |
||
44 | SCT.LOCALS.ROGUE = "Rogue"; |
||
45 | SCT.LOCALS.HUNTER = "Hunter"; |
||
46 | SCT.LOCALS.MAGE = "Mage"; |
||
47 | SCT.LOCALS.WARLOCK = "Warlock"; |
||
48 | SCT.LOCALS.DRUID = "Druid"; |
||
49 | SCT.LOCALS.PRIEST = "Priest"; |
||
50 | SCT.LOCALS.SHAMAN = "Shaman"; |
||
51 | SCT.LOCALS.PALADIN = "Paladin"; |
||
52 | |||
53 | --Useage |
||
54 | SCT.LOCALS.DISPLAY_USEAGE = "Useage: \n"; |
||
55 | SCT.LOCALS.DISPLAY_USEAGE = SCT.LOCALS.DISPLAY_USEAGE .. "/sctdisplay 'message' (for white text)\n"; |
||
56 | SCT.LOCALS.DISPLAY_USEAGE = SCT.LOCALS.DISPLAY_USEAGE .. "/sctdisplay 'message' red(0-10) green(0-10) blue(0-10)\n"; |
||
57 | SCT.LOCALS.DISPLAY_USEAGE = SCT.LOCALS.DISPLAY_USEAGE .. "Example: /sctdisplay 'Heal Me' 10 0 0\nThis will display 'Heal Me' in bright red\n"; |
||
58 | SCT.LOCALS.DISPLAY_USEAGE = SCT.LOCALS.DISPLAY_USEAGE .. "Some Colors: red = 10 0 0, green = 0 10 0, blue = 0 0 10,\nyellow = 10 10 0, magenta = 10 0 10, cyan = 0 10 10"; |
||
59 | |||
60 | --Fonts |
||
61 | SCT.LOCALS.FONTS = { |
||
62 | [1] = { name="Default", path="Fonts\\FRIZQT__.TTF"}, |
||
63 | [2] = { name="TwCenMT", path="Interface\\Addons\\sct\\fonts\\Tw_Cen_MT_Bold.TTF"}, |
||
64 | [3] = { name="Adventure", path="Interface\\Addons\\sct\\fonts\\Adventure.ttf"}, |
||
65 | [4] = { name="Enigma", path="Interface\\Addons\\sct\\fonts\\Enigma__2.TTF"}, |
||
66 | } |
||
67 | |||
68 | -- Cosmos button |
||
69 | SCT.LOCALS.CB_NAME = "Scrolling Combat Text".." "..SCT.Version; |
||
70 | SCT.LOCALS.CB_SHORT_DESC = "by Grayhoof"; |
||
71 | SCT.LOCALS.CB_LONG_DESC = "Click to open SCT options menu"; |
||
72 | SCT.LOCALS.CB_ICON = "Interface\\Icons\\Spell_Shadow_EvilEye"; -- "Interface\\Icons\\Spell_Shadow_FarSight" |