vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | -------------------------------------------------------------------------- |
2 | -- localization.lua |
||
3 | -------------------------------------------------------------------------- |
||
4 | |||
5 | ARCHAEOLOGIST_SUPER_SLASH_COMMAND = "/arch"; |
||
6 | |||
7 | PLAYER_GHOST = "Ghost"; |
||
8 | PLAYER_WISP = "Wisp"; |
||
9 | FEIGN_DEATH = "Feign Death"; |
||
10 | |||
11 | ARCHAEOLOGIST_CONFIG_SEP = "Archaeologist"; |
||
12 | ARCHAEOLOGIST_CONFIG_SEP_INFO = "Archaeologist Settings"; |
||
13 | |||
14 | ARCHAEOLOGIST_FEEDBACK_STRING = "%s changed to %s."; |
||
15 | ARCHAEOLOGIST_NOT_A_VALID_FONT = "%s is not a valid font."; |
||
16 | ArchaeologistLocalizedFonts = { |
||
17 | ["Default"] = "Default"; |
||
18 | --change fist string for displayd string |
||
19 | --values must match ArchaeologistFonts keys |
||
20 | ["GameFontNormal"] = "GameFontNormal"; |
||
21 | ["NumberFontNormal"] = "NumberFontNormal"; |
||
22 | ["ItemTextFontNormal"] = "ItemTextFontNormal"; |
||
23 | }; |
||
24 | |||
25 | ARCHAEOLOGIST_ON = "On"; |
||
26 | ARCHAEOLOGIST_OFF = "Off"; |
||
27 | ARCHAEOLOGIST_MOUSEOVER = "Mouseover"; |
||
28 | |||
29 | ARCHAEOLOGIST_FONT_OPTIONS = "Font Options:" |
||
30 | for key, name in ArchaeologistLocalizedFonts do |
||
31 | ARCHAEOLOGIST_FONT_OPTIONS = " "..ARCHAEOLOGIST_FONT_OPTIONS..key..","; |
||
32 | end |
||
33 | ARCHAEOLOGIST_FONT_OPTIONS = string.sub(ARCHAEOLOGIST_FONT_OPTIONS, 1, string.len(ARCHAEOLOGIST_FONT_OPTIONS)-1); |
||
34 | |||
35 | -- <= == == == == == == == == == == == == => |
||
36 | -- => Presets |
||
37 | -- <= == == == == == == == == == == == == => |
||
38 | |||
39 | ARCHAEOLOGIST_CONFIG_PRESETS = "Presets"; |
||
40 | ARCHAEOLOGIST_CONFIG_SET = "Set"; |
||
41 | |||
42 | ARCHAEOLOGIST_CONFIG_VALUES_ON_BARS = "Values on the Bars"; |
||
43 | ARCHAEOLOGIST_CONFIG_VALUES_NEXTTO_BARS = "Values next to the Bars"; |
||
44 | ARCHAEOLOGIST_CONFIG_PERCENTAGE_ON_BARS = "Percentage on the Bars"; |
||
45 | ARCHAEOLOGIST_CONFIG_PERCENTAGE_NEXTTO_BARS = "Percentage next to the Bars"; |
||
46 | ARCHAEOLOGIST_CONFIG_PERCENTAGE_ON_VALUES_NEXTTO_BARS = "Percentage on, Values next to the Bars"; |
||
47 | ARCHAEOLOGIST_CONFIG_VALUES_ON_PERCENTAGE_NEXTTO_BARS = "Values on, Percentage next to the Bars"; |
||
48 | |||
49 | ARCHAEOLOGIST_CONFIG_PREFIXES_OFF = "All Prefixes Off"; |
||
50 | ARCHAEOLOGIST_CONFIG_PREFIXES_ON = "All Prefixes On"; |
||
51 | ARCHAEOLOGIST_CONFIG_PREFIXES_DEFAULT = "All Prefixes Default"; |
||
52 | |||
53 | -- <= == == == == == == == == == == == == => |
||
54 | -- => Player Options |
||
55 | -- <= == == == == == == == == == == == == => |
||
56 | |||
57 | ARCHAEOLOGIST_CONFIG_PLAYER_SEP = "Player Status Bar Settings"; |
||
58 | ARCHAEOLOGIST_CONFIG_PLAYER_SEP_INFO = "Most values, by default, can be seen on mouseover."; |
||
59 | |||
60 | ARCHAEOLOGIST_CONFIG_PLAYERHP = "Primary Player Health Display"; |
||
61 | ARCHAEOLOGIST_CONFIG_PLAYERHP_INFO = "Shows player health text over the bar. (Options: On, Off, Mouseover)"; |
||
62 | ARCHAEOLOGIST_CONFIG_PLAYERHP2 = "Secondary Player Health Display"; |
||
63 | ARCHAEOLOGIST_CONFIG_PLAYERHP2_INFO = "Shows player health text next to the bar. (Options: On, Off, Mouseover)"; |
||
64 | ARCHAEOLOGIST_CONFIG_PLAYERMP = "Primary Player Mana Display"; |
||
65 | ARCHAEOLOGIST_CONFIG_PLAYERMP_INFO = "Shows player mana text over the bar. (Options: On, Off, Mouseover)"; |
||
66 | ARCHAEOLOGIST_CONFIG_PLAYERMP2 = "Secondary Player Mana Display"; |
||
67 | ARCHAEOLOGIST_CONFIG_PLAYERMP2_INFO = "Shows player mana text next to the bar. (Options: On, Off, Mouseover)"; |
||
68 | ARCHAEOLOGIST_CONFIG_PLAYERXP = "Player Experience Display"; |
||
69 | ARCHAEOLOGIST_CONFIG_PLAYERXP_INFO = "Shows player experience text on the bar. (Options: On, Off, Mouseover)"; |
||
70 | ARCHAEOLOGIST_CONFIG_PLAYERXPP = "Show Percentage on the Player XP bar"; |
||
71 | ARCHAEOLOGIST_CONFIG_PLAYERXPP_INFO = "Show Percentage on the Player XP bar"; |
||
72 | ARCHAEOLOGIST_CONFIG_PLAYERXPV = "Show Exact Value on the Player XP bar"; |
||
73 | ARCHAEOLOGIST_CONFIG_PLAYERXPV_INFO = "Show Exact Value on the Player XP bar"; |
||
74 | ARCHAEOLOGIST_CONFIG_PLAYERHPINVERT = "Show Player Health Missing"; |
||
75 | ARCHAEOLOGIST_CONFIG_PLAYERHPINVERT_INFO = "Invert the player health display."; |
||
76 | ARCHAEOLOGIST_CONFIG_PLAYERMPINVERT = "Show Player Mana Missing"; |
||
77 | ARCHAEOLOGIST_CONFIG_PLAYERMPINVERT_INFO = "Invert the player mana display."; |
||
78 | ARCHAEOLOGIST_CONFIG_PLAYERXPINVERT = "Show Experience Left to Level"; |
||
79 | ARCHAEOLOGIST_CONFIG_PLAYERXPINVERT_INFO = "Invert the player XP display"; |
||
80 | ARCHAEOLOGIST_CONFIG_PLAYERHPNOPREFIX = "Hide Player Health Prefix"; |
||
81 | ARCHAEOLOGIST_CONFIG_PLAYERHPNOPREFIX_INFO = "Turns off the 'Health' prefix on the player health bar."; |
||
82 | ARCHAEOLOGIST_CONFIG_PLAYERMPNOPREFIX = "Hide Player Mana Prefix"; |
||
83 | ARCHAEOLOGIST_CONFIG_PLAYERMPNOPREFIX_INFO = "Turns off the 'Mana/Rage/Power' prefix on the player mana bar."; |
||
84 | ARCHAEOLOGIST_CONFIG_PLAYERXPNOPREFIX = "Hide Player XP Prefix"; |
||
85 | ARCHAEOLOGIST_CONFIG_PLAYERXPNOPREFIX_INFO = "Turns off the 'XP' prefix on the player xp bar."; |
||
86 | ARCHAEOLOGIST_CONFIG_PLAYERCLASSICON = "Show Player Class Icon"; |
||
87 | ARCHAEOLOGIST_CONFIG_PLAYERCLASSICON_INFO = "Turns on the class icon on the player frame."; |
||
88 | ARCHAEOLOGIST_CONFIG_PLAYERHPSWAP = "Swap Player Health Percent and Value"; |
||
89 | ARCHAEOLOGIST_CONFIG_PLAYERHPSWAP_INFO = "Swaps Primary and Secondary Player Health Displays"; |
||
90 | ARCHAEOLOGIST_CONFIG_PLAYERMPSWAP = "Swap Player Mana Percent and Value"; |
||
91 | ARCHAEOLOGIST_CONFIG_PLAYERMPSWAP_INFO = "Swaps Primary and Secondary Player Mana Displays"; |
||
92 | |||
93 | -- <= == == == == == == == == == == == == => |
||
94 | -- => Party Options |
||
95 | -- <= == == == == == == == == == == == == => |
||
96 | |||
97 | ARCHAEOLOGIST_CONFIG_PARTY_SEP = "Party Status Bar Settings"; |
||
98 | ARCHAEOLOGIST_CONFIG_PARTY_SEP_INFO = "Most values, by default, can be seen on mouseover."; |
||
99 | |||
100 | ARCHAEOLOGIST_CONFIG_PARTYHP = "Primary Party Health Display"; |
||
101 | ARCHAEOLOGIST_CONFIG_PARTYHP_INFO = "Shows party health text over the bar. (Options: On, Off, Mouseover)"; |
||
102 | ARCHAEOLOGIST_CONFIG_PARTYHP2 = "Secondary Party Health Display"; |
||
103 | ARCHAEOLOGIST_CONFIG_PARTYHP2_INFO = "Shows party health text next to the bar. (Options: On, Off, Mouseover)"; |
||
104 | ARCHAEOLOGIST_CONFIG_PARTYMP = "Primary Party Mana Display"; |
||
105 | ARCHAEOLOGIST_CONFIG_PARTYMP_INFO = "Shows party mana text over the bar. (Options: On, Off, Mouseover)"; |
||
106 | ARCHAEOLOGIST_CONFIG_PARTYMP2 = "Secondary Party Mana Display"; |
||
107 | ARCHAEOLOGIST_CONFIG_PARTYMP2_INFO = "Shows party mana text next to the bar. (Options: On, Off, Mouseover)"; |
||
108 | ARCHAEOLOGIST_CONFIG_PARTYHPINVERT = "Show Party Health Missing"; |
||
109 | ARCHAEOLOGIST_CONFIG_PARTYHPINVERT_INFO = "Invert the party health display."; |
||
110 | ARCHAEOLOGIST_CONFIG_PARTYMPINVERT = "Show Party Mana Missing"; |
||
111 | ARCHAEOLOGIST_CONFIG_PARTYMPINVERT_INFO = "Invert the party mana display."; |
||
112 | ARCHAEOLOGIST_CONFIG_PARTYHPNOPREFIX = "Hide Party Health Prefix"; |
||
113 | ARCHAEOLOGIST_CONFIG_PARTYHPNOPREFIX_INFO = "Turns off the 'Health' prefix on the party health bars."; |
||
114 | ARCHAEOLOGIST_CONFIG_PARTYMPNOPREFIX = "Hide Party Mana Prefix"; |
||
115 | ARCHAEOLOGIST_CONFIG_PARTYMPNOPREFIX_INFO = "Turns off the 'Mana/Rage/Power' prefix on the party mana bars."; |
||
116 | ARCHAEOLOGIST_CONFIG_PARTYCLASSICON = "Show Party Class Icons"; |
||
117 | ARCHAEOLOGIST_CONFIG_PARTYCLASSICON_INFO = "Turns on the class icons on the party member frames."; |
||
118 | ARCHAEOLOGIST_CONFIG_PARTYHPSWAP = "Swap Party Health Percent and Value"; |
||
119 | ARCHAEOLOGIST_CONFIG_PARTYHPSWAP_INFO = "Swaps Primary and Secondary Party Health Displays"; |
||
120 | ARCHAEOLOGIST_CONFIG_PARTYMPSWAP = "Swap Party Mana Percent and Value"; |
||
121 | ARCHAEOLOGIST_CONFIG_PARTYMPSWAP_INFO = "Swaps Primary and Secondary Party Mana Displays"; |
||
122 | |||
123 | -- <= == == == == == == == == == == == == => |
||
124 | -- => Pet Options |
||
125 | -- <= == == == == == == == == == == == == => |
||
126 | |||
127 | ARCHAEOLOGIST_CONFIG_PET_SEP = "Pet Status Bar Settings"; |
||
128 | ARCHAEOLOGIST_CONFIG_PET_SEP_INFO = "Most values, by default, can be seen on mouseover."; |
||
129 | |||
130 | ARCHAEOLOGIST_CONFIG_PETHP = "Primary Pet Health Display"; |
||
131 | ARCHAEOLOGIST_CONFIG_PETHP_INFO = "Shows pet health text over the bar. (Options: On, Off, Mouseover)"; |
||
132 | ARCHAEOLOGIST_CONFIG_PETHP2 = "Secondary Pet Health Display"; |
||
133 | ARCHAEOLOGIST_CONFIG_PETHP2_INFO = "Shows pet health text next to the bar. (Options: On, Off, Mouseover)"; |
||
134 | ARCHAEOLOGIST_CONFIG_PETMP = "Primary Pet Mana Display"; |
||
135 | ARCHAEOLOGIST_CONFIG_PETMP_INFO = "Shows pet mana text over the bar. (Options: On, Off, Mouseover)"; |
||
136 | ARCHAEOLOGIST_CONFIG_PETMP2 = "Secondary Pet Mana Display"; |
||
137 | ARCHAEOLOGIST_CONFIG_PETMP2_INFO = "Shows pet mana text next to the bar. (Options: On, Off, Mouseover)"; |
||
138 | ARCHAEOLOGIST_CONFIG_PETXP = "Pet Experience Display"; |
||
139 | ARCHAEOLOGIST_CONFIG_PETXP_INFO = "Shows pet experience text on the bar. (Options: On, Off, Mouseover)"; |
||
140 | ARCHAEOLOGIST_CONFIG_PETXPP = "Show Percentage on the Pet XP bar"; |
||
141 | ARCHAEOLOGIST_CONFIG_PETXPP_INFO = "Show Percentage on the Pet XP bar"; |
||
142 | ARCHAEOLOGIST_CONFIG_PETXPV = "Show Exact Value on the Pet XP bar"; |
||
143 | ARCHAEOLOGIST_CONFIG_PETXPV_INFO = "Show Exact Value on the Pet XP bar"; |
||
144 | ARCHAEOLOGIST_CONFIG_PETHPINVERT = "Show Pet Health Missing"; |
||
145 | ARCHAEOLOGIST_CONFIG_PETHPINVERT_INFO = "Invert the pet health display."; |
||
146 | ARCHAEOLOGIST_CONFIG_PETMPINVERT = "Show Pet Mana Missing"; |
||
147 | ARCHAEOLOGIST_CONFIG_PETMPINVERT_INFO = "Invert the pet mana display."; |
||
148 | ARCHAEOLOGIST_CONFIG_PETHPNOPREFIX = "Hide Pet Health Prefix"; |
||
149 | ARCHAEOLOGIST_CONFIG_PETHPNOPREFIX_INFO = "Turns off the 'Health' prefix on the pet health bar."; |
||
150 | ARCHAEOLOGIST_CONFIG_PETMPNOPREFIX = "Hide Pet Mana Prefix"; |
||
151 | ARCHAEOLOGIST_CONFIG_PETMPNOPREFIX_INFO = "Turns off the 'Mana/Rage/Power' prefix on the bet mana bar."; |
||
152 | ARCHAEOLOGIST_CONFIG_PETXPNOPREFIX = "Hide Pet XP Prefix"; |
||
153 | ARCHAEOLOGIST_CONFIG_PETXPNOPREFIX_INFO = "Turns off the 'XP' prefix on the pet xp bar."; |
||
154 | ARCHAEOLOGIST_CONFIG_PETHPSWAP = "Swap Pet Health Percent and Value"; |
||
155 | ARCHAEOLOGIST_CONFIG_PETHPSWAP_INFO = "Swaps Primary and Secondary Pet Health Displays"; |
||
156 | ARCHAEOLOGIST_CONFIG_PETMPSWAP = "Swap Pet Mana Percent and Value"; |
||
157 | ARCHAEOLOGIST_CONFIG_PETMPSWAP_INFO = "Swaps Primary and Secondary Pet Mana Displays"; |
||
158 | |||
159 | -- <= == == == == == == == == == == == == => |
||
160 | -- => Target Options |
||
161 | -- <= == == == == == == == == == == == == => |
||
162 | |||
163 | ARCHAEOLOGIST_CONFIG_TARGET_SEP = "Target Status Bar Settings"; |
||
164 | ARCHAEOLOGIST_CONFIG_TARGET_SEP_INFO = "Most values, by default, can be seen on mouseover."; |
||
165 | |||
166 | ARCHAEOLOGIST_CONFIG_TARGETHP = "Primary Target Health Display"; |
||
167 | ARCHAEOLOGIST_CONFIG_TARGETHP_INFO = "Shows target health text over the bar. (Options: On, Off, Mouseover)"; |
||
168 | ARCHAEOLOGIST_CONFIG_TARGETHP2 = "Secondary Target Health Display"; |
||
169 | ARCHAEOLOGIST_CONFIG_TARGETHP2_INFO = "Shows target health text next to the bar. (Options: On, Off, Mouseover)"; |
||
170 | ARCHAEOLOGIST_CONFIG_TARGETMP = "Primary Target Mana Display"; |
||
171 | ARCHAEOLOGIST_CONFIG_TARGETMP_INFO = "Shows target mana text over the bar. (Options: On, Off, Mouseover)"; |
||
172 | ARCHAEOLOGIST_CONFIG_TARGETMP2 = "Secondary Target Mana Display"; |
||
173 | ARCHAEOLOGIST_CONFIG_TARGETMP2_INFO = "Shows target mana text next to the bar. (Options: On, Off, Mouseover)"; |
||
174 | ARCHAEOLOGIST_CONFIG_TARGETHPINVERT = "Show Target Health Missing"; |
||
175 | ARCHAEOLOGIST_CONFIG_TARGETHPINVERT_INFO = "Invert the target health display."; |
||
176 | ARCHAEOLOGIST_CONFIG_TARGETMPINVERT = "Show Target Mana Missing"; |
||
177 | ARCHAEOLOGIST_CONFIG_TARGETMPINVERT_INFO = "Invert the target mana display."; |
||
178 | ARCHAEOLOGIST_CONFIG_TARGETHPNOPREFIX = "Hide Target Health Prefix"; |
||
179 | ARCHAEOLOGIST_CONFIG_TARGETHPNOPREFIX_INFO = "Turns off the 'Health' prefix on the target health bar."; |
||
180 | ARCHAEOLOGIST_CONFIG_TARGETMPNOPREFIX = "Hide Target Mana Prefix"; |
||
181 | ARCHAEOLOGIST_CONFIG_TARGETMPNOPREFIX_INFO = "Turns off the 'Mana/Rage/Power' prefix on the target mana bar."; |
||
182 | ARCHAEOLOGIST_CONFIG_TARGETCLASSICON = "Show Target Class Icon"; |
||
183 | ARCHAEOLOGIST_CONFIG_TARGETCLASSICON_INFO = "Turns on the class icon on the target frame."; |
||
184 | ARCHAEOLOGIST_CONFIG_TARGETHPSWAP = "Swap Target Health Percent and Value"; |
||
185 | ARCHAEOLOGIST_CONFIG_TARGETHPSWAP_INFO = "Swaps Primary and Secondary Target Health Displays"; |
||
186 | ARCHAEOLOGIST_CONFIG_TARGETMPSWAP = "Swap Target Mana Percent and Value"; |
||
187 | ARCHAEOLOGIST_CONFIG_TARGETMPSWAP_INFO = "Swaps Primary and Secondary Target Mana Displays"; |
||
188 | |||
189 | -- <= == == == == == == == == == == == == => |
||
190 | -- => Alternate Options |
||
191 | -- <= == == == == == == == == == == == == => |
||
192 | |||
193 | ARCHAEOLOGIST_CONFIG_ALTOPTS_SEP = "Alternate Options"; |
||
194 | ARCHAEOLOGIST_CONFIG_ALTOPTS_SEP_INFO = "Alternate Options"; |
||
195 | |||
196 | ARCHAEOLOGIST_CONFIG_HPCOLOR = "Turn On Health Bar Color Change"; |
||
197 | ARCHAEOLOGIST_CONFIG_HPCOLOR_INFO = "Healthbar changes color as it decreases."; |
||
198 | |||
199 | ARCHAEOLOGIST_CONFIG_DEBUFFALT = "Alternate Pet/Party Debuff Location"; |
||
200 | ARCHAEOLOGIST_CONFIG_DEBUFFALT_INFO = "Moves Pet and Party Debuffs to below the Buffs.\nDefault: show to the right of the unit frame."; |
||
201 | |||
202 | ARCHAEOLOGIST_CONFIG_TBUFFALT = "Wrap Target Buff/Debuffs in rows of 8"; |
||
203 | ARCHAEOLOGIST_CONFIG_TBUFFALT_INFO = "Show two rows of 8 target buffs and two rows of 8 target debuffs."; |
||
204 | |||
205 | ARCHAEOLOGIST_CONFIG_USEHPVALUE = "Use Target HP Values When Possible"; |
||
206 | ARCHAEOLOGIST_CONFIG_USEHPVALUE_INFO = "Will replace the target percent display with actual values when possible."; |
||
207 | |||
208 | ARCHAEOLOGIST_CONFIG_MOBHEALTH = "Use MobHealth2 for Target HP"; |
||
209 | ARCHAEOLOGIST_CONFIG_MOBHEALTH_INFO = "Hides the regular MobHealth2 text and uses it in place of the HP text on the Target Frame."; |
||
210 | |||
211 | ARCHAEOLOGIST_CONFIG_CLASSPORTRAIT = "Class Portrait"; |
||
212 | ARCHAEOLOGIST_CONFIG_CLASSPORTRAIT_INFO = "Replace unit portraits with class icons when applicable."; |
||
213 | |||
214 | -- <= == == == == == == == == == == == == => |
||
215 | -- => Font Options |
||
216 | -- <= == == == == == == == == == == == == => |
||
217 | |||
218 | ARCHAEOLOGIST_CONFIG_FONTOPTS_SEP = "Font Options"; |
||
219 | ARCHAEOLOGIST_CONFIG_FONTOPTS_SEP_INFO = "Font Options"; |
||
220 | |||
221 | ARCHAEOLOGIST_CONFIG_HPMPLARGESIZE = "Set Player/Target Text Size."; |
||
222 | ARCHAEOLOGIST_CONFIG_HPMPLARGESIZE_SLIDER_TEXT = "Font Size"; |
||
223 | |||
224 | ARCHAEOLOGIST_CONFIG_HPMPLARGEFONT = "Set Player/Target Text Font."; |
||
225 | ARCHAEOLOGIST_CONFIG_HPMPLARGEFONT_INFO = ARCHAEOLOGIST_CONFIG_HPMPLARGEFONT.."\n Font Options: %s"; |
||
226 | |||
227 | ARCHAEOLOGIST_CONFIG_HPMPSMALLSIZE = "Set Pet/Party Text Size"; |
||
228 | ARCHAEOLOGIST_CONFIG_HPMPSMALLSIZE_SLIDER_TEXT = "Font Size"; |
||
229 | |||
230 | ARCHAEOLOGIST_CONFIG_HPMPSMALLFONT = "Set Pet/Party Text Font"; |
||
231 | ARCHAEOLOGIST_CONFIG_HPMPSMALLFONT_INFO = ARCHAEOLOGIST_CONFIG_HPMPSMALLFONT.."\n Font Options: %s"; |
||
232 | |||
233 | ARCHAEOLOGIST_COLOR_CHANGED = "|c%s%s color changed.|r"; |
||
234 | ARCHAEOLOGIST_COLOR_RESET = "|c%s%s color reset.|r"; |
||
235 | |||
236 | ARCHAEOLOGIST_CONFIG_COLORPHP = "Primary Health Color (Default is white):"; |
||
237 | ARCHAEOLOGIST_CONFIG_COLORPHP_INFO = "Changes the color of the primary health text."; |
||
238 | ARCHAEOLOGIST_CONFIG_COLORPHP_RESET = "Reset the Primary Health Color"; |
||
239 | ARCHAEOLOGIST_CONFIG_COLORPHP_RESET_INFO = "Resets the color of the primary health text to white."; |
||
240 | |||
241 | ARCHAEOLOGIST_CONFIG_COLORPMP = "Primary Mana Color (Default is white):"; |
||
242 | ARCHAEOLOGIST_CONFIG_COLORPMP_INFO = "Changes the color of the primary mana text."; |
||
243 | ARCHAEOLOGIST_CONFIG_COLORPMP_RESET = "Reset the Primary Mana Color"; |
||
244 | ARCHAEOLOGIST_CONFIG_COLORPMP_RESET_INFO = "Resets the color of the primary mana text to white."; |
||
245 | |||
246 | ARCHAEOLOGIST_CONFIG_COLORSHP = "Secondary Health Color (Default is white):"; |
||
247 | ARCHAEOLOGIST_CONFIG_COLORSHP_INFO = "Changes the color of the secondary health text."; |
||
248 | ARCHAEOLOGIST_CONFIG_COLORSHP_RESET = "Reset the Secondary Health Color"; |
||
249 | ARCHAEOLOGIST_CONFIG_COLORSHP_RESET_INFO = "Resets the color of the secondary health text to white."; |
||
250 | |||
251 | ARCHAEOLOGIST_CONFIG_COLORSMP = "Secondary Mana Color (Default is white):"; |
||
252 | ARCHAEOLOGIST_CONFIG_COLORSMP_INFO = "Changes the color of the secondary mana text."; |
||
253 | ARCHAEOLOGIST_CONFIG_COLORSMP_RESET = "Reset the Secondary Mana Color"; |
||
254 | ARCHAEOLOGIST_CONFIG_COLORSMP_RESET_INFO = "Resets the color of the secondary mana text to white."; |
||
255 | |||
256 | |||
257 | -- <= == == == == == == == == == == == == => |
||
258 | -- => Party Buff Options |
||
259 | -- <= == == == == == == == == == == == == => |
||
260 | |||
261 | ARCHAEOLOGIST_CONFIG_PARTYBUFFS_SEP = "Party Buff Settings"; |
||
262 | ARCHAEOLOGIST_CONFIG_PARTYBUFFS_SEP_INFO = "By default 16 buffs and 16 debuffs are visible."; |
||
263 | |||
264 | ARCHAEOLOGIST_CONFIG_PBUFFS = "Hide the party buffs "; |
||
265 | ARCHAEOLOGIST_CONFIG_PBUFFS_INFO = "Removes the party's spell buffs from view unless you mouse-over their portrait."; |
||
266 | |||
267 | ARCHAEOLOGIST_CONFIG_PBUFFNUM = "Number of party buffs "; |
||
268 | ARCHAEOLOGIST_CONFIG_PBUFFNUM_INFO = "Set the number of party buffs to show."; |
||
269 | ARCHAEOLOGIST_CONFIG_PBUFFNUM_SLIDER_TEXT = "Buffs Visible"; |
||
270 | |||
271 | ARCHAEOLOGIST_CONFIG_PDEBUFFS = "Hide the party debuffs "; |
||
272 | ARCHAEOLOGIST_CONFIG_PDEBUFFS_INFO = "Removes the party's spell debuffs from view."; |
||
273 | |||
274 | ARCHAEOLOGIST_CONFIG_PDEBUFFNUM = "Number of party debuffs "; |
||
275 | ARCHAEOLOGIST_CONFIG_PDEBUFFNUM_INFO = "Set the number of party debuffs to show."; |
||
276 | ARCHAEOLOGIST_CONFIG_PDEBUFFNUM_SLIDER_TEXT = "Debuffs Visible"; |
||
277 | |||
278 | -- <= == == == == == == == == == == == == => |
||
279 | -- => Party Pet Buff Options |
||
280 | -- <= == == == == == == == == == == == == => |
||
281 | |||
282 | ARCHAEOLOGIST_CONFIG_PARTYPETBUFFS_SEP = "Party Pet Buff Settings"; |
||
283 | ARCHAEOLOGIST_CONFIG_PARTYPETBUFFS_SEP_INFO = "By default 16 buffs and 16 debuffs are visible."; |
||
284 | |||
285 | ARCHAEOLOGIST_CONFIG_PPTBUFFS = "Hide the party pet buffs "; |
||
286 | ARCHAEOLOGIST_CONFIG_PPTBUFFS_INFO = "Removes the party pet's spell buffs from view unless you mouse-over their portrait."; |
||
287 | |||
288 | ARCHAEOLOGIST_CONFIG_PPTBUFFNUM = "Number of party pet buffs "; |
||
289 | ARCHAEOLOGIST_CONFIG_PPTBUFFNUM_INFO = "Set the number of party pet buffs to show."; |
||
290 | ARCHAEOLOGIST_CONFIG_PPTBUFFNUM_SLIDER_TEXT = "Buffs Visible"; |
||
291 | |||
292 | ARCHAEOLOGIST_CONFIG_PPTDEBUFFS = "Hide the party pet debuffs "; |
||
293 | ARCHAEOLOGIST_CONFIG_PPTDEBUFFS_INFO = "Removes the party pet's spell debuffs from view."; |
||
294 | |||
295 | ARCHAEOLOGIST_CONFIG_PPTDEBUFFNUM = "Number of party pet debuffs "; |
||
296 | ARCHAEOLOGIST_CONFIG_PPTDEBUFFNUM_INFO = "Set the number of party pet debuffs to show."; |
||
297 | ARCHAEOLOGIST_CONFIG_PPTDEBUFFNUM_SLIDER_TEXT = "Debuffs Visible"; |
||
298 | |||
299 | -- <= == == == == == == == == == == == == => |
||
300 | -- => Pet Buff Options |
||
301 | -- <= == == == == == == == == == == == == => |
||
302 | |||
303 | ARCHAEOLOGIST_CONFIG_PETBUFFS_SEP = "Pet Buff Settings"; |
||
304 | ARCHAEOLOGIST_CONFIG_PETBUFFS_SEP_INFO = "By default 16 buffs and 4 debuffs are visible."; |
||
305 | |||
306 | ARCHAEOLOGIST_CONFIG_PTBUFFS = "Hide the pet buffs "; |
||
307 | ARCHAEOLOGIST_CONFIG_PTBUFFS_INFO = "Removes the pet's spell buffs from view unless you mouse-over their portrait."; |
||
308 | |||
309 | ARCHAEOLOGIST_CONFIG_PTBUFFNUM = "Number of pet buffs "; |
||
310 | ARCHAEOLOGIST_CONFIG_PTBUFFNUM_INFO = "Set the number of pet buffs to show."; |
||
311 | ARCHAEOLOGIST_CONFIG_PTBUFFNUM_SLIDER_TEXT = "Buffs Visible"; |
||
312 | |||
313 | ARCHAEOLOGIST_CONFIG_PTDEBUFFS = "Hide the pet debuffs "; |
||
314 | ARCHAEOLOGIST_CONFIG_PTDEBUFFS_INFO = "Removes the pet's spell debuffs from view."; |
||
315 | |||
316 | ARCHAEOLOGIST_CONFIG_PTDEBUFFNUM = "Number of pet debuffs "; |
||
317 | ARCHAEOLOGIST_CONFIG_PTDEBUFFNUM_INFO = "Set the number of pet debuffs to show."; |
||
318 | ARCHAEOLOGIST_CONFIG_PTDEBUFFNUM_SLIDER_TEXT = "Debuffs Visible"; |
||
319 | |||
320 | -- <= == == == == == == == == == == == == => |
||
321 | -- => Target Buff Options |
||
322 | -- <= == == == == == == == == == == == == => |
||
323 | |||
324 | ARCHAEOLOGIST_CONFIG_TARGETBUFFS_SEP = "Target Buff Settings"; |
||
325 | ARCHAEOLOGIST_CONFIG_TARGETBUFFS_SEP_INFO = "By default 8 buffs and 16 debuffs are visible."; |
||
326 | |||
327 | ARCHAEOLOGIST_CONFIG_TBUFFS = "Hide the target buffs "; |
||
328 | ARCHAEOLOGIST_CONFIG_TBUFFS_INFO = "Removes the target's spell buffs from view."; |
||
329 | |||
330 | ARCHAEOLOGIST_CONFIG_TBUFFNUM = "Number of target buffs "; |
||
331 | ARCHAEOLOGIST_CONFIG_TBUFFNUM_INFO = "Set the number of target buffs to show."; |
||
332 | ARCHAEOLOGIST_CONFIG_TBUFFNUM_SLIDER_TEXT = "Buffs Visible"; |
||
333 | |||
334 | ARCHAEOLOGIST_CONFIG_TDEBUFFS = "Hide the target debuffs "; |
||
335 | ARCHAEOLOGIST_CONFIG_TDEBUFFS_INFO = "Removes the target's spell debuffs from view."; |
||
336 | |||
337 | ARCHAEOLOGIST_CONFIG_TDEBUFFNUM = "Number of target debuffs "; |
||
338 | ARCHAEOLOGIST_CONFIG_TDEBUFFNUM_INFO = "Set the number of target debuffs to show."; |
||
339 | ARCHAEOLOGIST_CONFIG_TDEBUFFNUM_SLIDER_TEXT = "Debuffs Visible"; |
||
340 | |||
341 | ARCHAEOLOGIST_FEEDBACK_STRING = "%s is currently set to %s."; |