vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 ------------------------------
2 ----- Translation for enEN
3 local L = AceLibrary("AceLocale-2.0"):new("ArcHUD_Core")
4  
5 L:RegisterTranslations("enUS", function() return {
6 -- Core stuff
7 CMD_OPTS_FRAME = "Open options window",
8 CMD_OPTS_DEBUG = "Set debugging level",
9 CMD_RESET = "Reset settings for this character to the defaults",
10 CMD_RESET_HELP = "This option will allow you to do two things, firstly you can reset your settings to their defaults. To do this type 'CONFIRM' after the option so that the AddOn will know you've read this information",
11 CMD_RESET_CONFIRM = "This option will reset all of your options to the default values they had when the AddOn was installed",
12 TEXT_RESET = "Please type CONFIRM after this command to confirm you really do wish to reset your settings",
13 TEXT_RESET_CONFIRM = "All settings have been reset to their defaults",
14  
15 FONT = "FRIZQT__.TTF",
16  
17 ["Version: "] = true,
18 ["Author: "] = true,
19  
20 -- Options
21 TEXT = {
22 TITLE = "ArcHUD Options",
23  
24 DISPLAY = "Display options",
25 TARGETFRAME = "Target frame",
26 PLAYERMODEL = "3D model for players",
27 MOBMODEL = "3D model for mobs",
28 SHOWGUILD = "Show player guild",
29 SHOWCLASS = "Show target class",
30 NAMEPLATES = "Player/Pet nameplates",
31 ATTACHTOP = "Attach target frame to top",
32 HOVERMSG = "Nameplate hover message",
33 HOVERDELAY = "Nameplate hover delay",
34 TOT = "Enable target's target",
35 TOTOT = "Enable target's target's target",
36 BLIZZPLAYER = "Blizzard player frame visible",
37 BLIZZTARGET = "Blizzard target frame visible",
38  
39 FADE = "Fade options",
40 FADE_FULL = "When full",
41 FADE_OOC = "Out of combat",
42 FADE_IC = "In combat",
43  
44 MISC = "Miscellanous options",
45 WIDTH = "HUD width",
46 YLOC = "Vertical alignment",
47 SCALE = "Scale",
48  
49 RINGVIS = "Fade behaviour",
50 RINGVIS_1 = "FadeFull: Fade when full",
51 RINGVIS_2 = "FadeOOC: Fade when out of combat",
52 RINGVIS_3 = "FadeBoth: Fade when full or out of combat",
53  
54 RINGS = "Ring options",
55 RING = "Ring",
56 },
57 TOOLTIP = {
58 TARGETFRAME = "Toggle display of entire target frame",
59 PLAYERMODEL = "Toggle display of 3D target model of players",
60 MOBMODEL = "Toggle display of 3D target model of mobs",
61 SHOWGUILD = "Show player guild information next to their name",
62 SHOWCLASS = "Show target class or creature type",
63 TOT = "Enable displaying of target's target",
64 TOTOT = "Enable displaying of target's target's target",
65 NAMEPLATES = "Toggle display of player and pet nameplates",
66 ATTACHTOP = "Attach target frame to the top of the rings instead of the bottom",
67 HOVERMSG = "Toggle displaying of nameplate mouse input enabled in chat",
68 HOVERDELAY = "Amount of seconds needed to hover above the nameplate to activate it",
69 BLIZZPLAYER = "Toggles visibility of the Blizzard player frame",
70 BLIZZTARGET = "Toggles visibility of the Blizzard target frame",
71  
72 FADE_FULL = "Alpha to fade to when out of combat and ring at 100%",
73 FADE_OOC = "Alpha to fade to when out of combat or ring not at 100%",
74 FADE_IC = "Alpha to fade to when in combat (only used if behaviour is set to FadeBoth or FadeOOC)",
75  
76 WIDTH = "Sets how much the rings should be separated from the center",
77 YLOC = "Positions ArcHud along the Y-axis. Positive values brings it up, negative values brings it down",
78 SCALE = "Set the Scale Factor",
79  
80 RINGVIS = "Sets when the rings fade out",
81 RINGVIS_1 = "Fade out when rings are full, regardless of combat status",
82 RINGVIS_2 = "Always fade out when out of combat, regardless of ring status",
83 RINGVIS_3 = "Fade out when out of combat or rings are full",
84 },
85 } end)
86  
87 local LM = AceLibrary("AceLocale-2.0"):new("ArcHUD_Module")
88  
89 LM:RegisterTranslations("enUS", function() return {
90 FONT = "FRIZQT__.TTF",
91  
92 ["Version: "] = true,
93 ["Author: "] = true,
94  
95 TEXT = {
96 ENABLED = "Enabled",
97 OUTLINE = "Ring outline",
98 SHOWTEXT = "Show text",
99 SHOWPERC = "Show percentage",
100 COLORFADE = "Color fading",
101 FLASH = "Flash at max combo points",
102 SHOWSPELL = "Show spell being cast",
103 SHOWTIME = "Show spell timer",
104 HIDEBLIZZ = "Hide default Blizzard frame",
105 ENABLEMENU = "Enable right-click menu",
106 SHOWBUFFS = "Show buffs/debuffs",
107 DEFICIT = "Deficit",
108 ATTACH = "Attachment",
109 SIDE = "Side",
110 LEVEL = "Level",
111 },
112 TOOLTIP = {
113 ENABLED = "Toggle the ring on and off",
114 OUTLINE = "Toggle the outline around the ring",
115 SHOWTEXT = "Toggle text display (health, mana, etc.)",
116 SHOWPERC = "Toggle showing percentage",
117 SHOWSPELL = "Toggle displaying of current spell being casted",
118 SHOWTIME = "Toggle showing spell timer",
119 COLORFADE = "Toggle color fading (green to red for health and so on)",
120 FLASH = "Toggle flashing when at 5 combo points",
121 HIDEBLIZZ = "Toggle showing of default Blizzard frame",
122 ENABLEMENU = "Toggle right-click menu on and off",
123 SHOWBUFFS = "Toggle display of buffs and debuffs",
124 DEFICIT = "Toggle health deficit (Max health - current health)",
125 SIDE = "Set which side to attach to",
126 LEVEL = "Set at which level it should be attached relative to the anchor (<-1: towards center, 0: at anchor, >1: away from center)",
127 },
128 SIDE = {
129 LEFT = "Left anchor",
130 RIGHT = "Right anchor",
131 },
132 } end)