vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[---------------------------------------------------------------------------------
2 Localisation for English
3 ----------------------------------------------------------------------------------]]
4  
5 local L = AceLibrary("AceLocale-2.0"):new("Clique")
6  
7 L:RegisterTranslations("enUS", function()
8 return {
9 RANK = "Rank",
10 MANA_PATTERN = "(%d+) Mana",
11 HEALTH_PATTERN = "(%d+) .+ (%d+)",
12  
13 ["Lesser Heal"] = "Lesser Heal",
14 ["Heal"] = "Heal",
15 ["Greater Heal"] = "Greater Heal",
16 ["Flash Heal"] = "Flash Heal",
17 ["Healing Touch"] = "Healing Touch",
18 ["Regrowth"] = "Regrowth",
19 ["Healing Wave"] = "Healing Wave",
20 ["Lesser Healing Wave"] = "Lesser Healing Wave",
21 ["Holy Light"] = "Holy Light",
22 ["Flash of Light"] = "Flash of Light",
23  
24 DUAL_HOLY_SHOCK = "Holy Shock",
25 DUAL_MIND_VISION = "Mind Vision",
26  
27 FREE_INNER_FIRE = "Inner Fire",
28  
29 CURE_CURE_DISEASE = "Cure Disease",
30 CURE_ABOLISH_DISEASE = "Abolish Disease",
31 CURE_PURIFY = "Purify",
32 CURE_CLEANSE = "Cleanse",
33 CURE_DISPEL_MAGIC = "Dispel Magic",
34 CURE_CURE_POISON = "Cure Poison",
35 CURE_ABOLISH_POISON = "Abolish Poison",
36 CURE_REMOVE_LESSER_CURSE = "Remove Lesser Curse",
37 CURE_REMOVE_CURSE = "Remove Curse",
38  
39 BUFF_PWF = "Power Word: Fortitude",
40 BUFF_PWS = "Power Word: Shield",
41 BUFF_SP = "Shadow Protection",
42 BUFF_DS = "Divine Spirit",
43 BUFF_RENEW = "Renew",
44 BUFF_MOTW = "Mark of the Wild",
45 BUFF_THORNS = "Thorns",
46 BUFF_REJUVENATION = "Rejuvenation",
47 BUFF_REGROWTH = "Regrowth",
48 BUFF_AI = "Arcane Intellect",
49 BUFF_DM = "Dampen Magic",
50 BUFF_AM = "Amplify Magic",
51 BUFF_BOM = "Blessing of Might",
52 BUFF_BOP = "Blessing of Protection",
53 BUFF_BOW = "Blessing of Wisdom",
54 BUFF_BOS = "Blessing of Sanctuary",
55 BUFF_BOL = "Blessing of Light",
56 BUFF_BOSFC = "Blessing of Sacrifice",
57  
58 DEFAULT_FRIENDLY = "Default Friendly",
59 DEFAULT_HOSTILE = "Default Hostile",
60  
61 BINDING_NOT_DEFINED = "Binding not defined",
62 COULD_NOT_FIND_MODULE = "Could not find module named \"%s\"",
63 COULD_NOT_FIND_FRAME = "Could not find frame \"%s\" when enabling module \"%s\"",
64 PLUGIN_NOT_PROPER = "The plugin for \"%s\" doesn't appear to have a framelist or an enable function.",
65 NO_UNIT_FRAME = "Could not determine which unit corresponds to frame \"%s\"",
66 CUSTOM_SCRIPT = "Custom Script",
67 ERROR_SCRIPT = "|cff00ff33Clique: There was an |cffff3333error|r |cff00ff33compiling your script:|r %s",
68 ENABLED_MODULE = "|cff00ff33Clique: Enabled a module for|r %s" ,
69  
70 TT_DROPDOWN = "Selects which clickcasting \"set\" you are currently editing",
71 TT_LIST_ENTRY = "Double-click to edit, or single-click to select",
72 TT_DEL_BUTTON = "Click to delete the selected entry",
73 TT_MAX_BUTTON = "Click to change this spell to always cast the MAX RANK",
74 TT_NEW_BUTTON = "Create a new custom script",
75 TT_EDIT_BUTTON = "Edit a click-cast entry",
76 TT_OK_BUTTON = "Exit the Clique config screen",
77 TT_EDIT_BINDING = "Perform a click-cast here to change the binding",
78 TT_NAME_EDITBOX = "The name of the custom script",
79 TT_SAVE_BUTTON = "Save your changes",
80 TT_CANCEL_BUTTON = "Cancel your changes",
81 TT_TEXT_EDITBOX = "Type custom LUA code here",
82 TT_PULLOUT_TAB = "Click to open/close the Clique configuration screen" ,
83 }
84 end)