vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1  
2 -- english translation by ME!
3  
4 -- DON'T forget to modify the other translations as well when you change something!!
5 -- CB_SAY CB_YELL
6  
7 --added checks for random name coloring so that there won't be any confusion with class colors
8 --removed name coloring for anthing not [SillySam]: hello world (says, yells, emotes, lootmessages, etc.)
9 --possible fix for :742 nil error
10 --settings made global
11  
12 CB_LOADED = "ChatBox loaded. Version: ";
13  
14 --ONLY present in this file.
15 CB_VERSION = 1.20;
16  
17 CB_HELPTITLE = "ChatBox help!";
18 CB_TS_HELPTITLE = "TimeStamp help!";
19 CB_OPTIONS = "options";
20 CB_HELP = "help";
21  
22 CB_SHORTCUTS = "ShortCuts: sti, lfg, bot, thr, gthr, gos, use, edit, emo, left, name, rand, long, trunc, clink, norris";
23  
24 --ONLY present in this file.
25 CB_STICKY = "sticky";
26 CB_SHORTLFG = "shortLFG";
27 CB_HIDEBOTTOMBUTTON = "hideBottomButton";
28 CB_THROTTLE = "throttle";
29 CB_GTHROTTLE = "gthrottle";
30 CB_HIDEGOSSIP = "hideGossip";
31 CB_USEARROWS = "useArrows";
32 CB_EDITATTOP = "editAtTop";
33 CB_HIDEEMOTEBUTTON = "hideEmoteButton";
34 CB_MENUSIDE = "buttonsOnLeft";
35 CB_COLORNAMES = "colorNames";
36 CB_COLORRANDOM = "colorRandom";
37 CB_LONGSTRINGS = "longStrings";
38 CB_TRUNCLENGTH = "truncLength";
39 CB_CLINK = "clink";
40 CB_NORRIS = "chuckNorris";
41 CB_VERBOSE = "verbose";
42  
43  
44 CB_ERRORMSG = "You have typed an invalid option. Type /chatbox or /cb to see the options";
45  
46 --ONLY present in this file.
47 CB_STICKY_SHORT = "sti";
48 CB_SHORTLFG_SHORT = "lfg";
49 CB_HIDEBOTTOMBUTTON_SHORT = "bot";
50 CB_THROTTLE_SHORT = "thr";
51 CB_GTHROTTLE_SHORT = "gthr";
52 CB_HIDEGOSSIP_SHORT = "gos";
53 CB_USEARROWS_SHORT = "use";
54 CB_EDITATTOP_SHORT = "edit";
55 CB_HIDEEMOTEBUTTON_SHORT = "emo";
56 CB_MENUSIDE_SHORT = "left";
57 CB_COLORNAMES_SHORT = "name";
58 CB_COLORRANDOM_SHORT = "rand";
59 CB_LONGSTRINGS_SHORT = "long";
60 CB_TRUNCLENGTH_SHORT = "trunc";
61 CB_CLINK_SHORT = "clink";
62 CB_NORRIS_SHORT = "norris";
63  
64  
65 CB_STICKY_HELP_TEXT = " - change the default sticky behavior";
66 CB_SHORTLFG_HELP_TEXT = " - change the LookingForGroup channel tag to LFG";
67 CB_HIDEBOTTOMBUTTON_HELP_TEXT = " - hide/show the scroll-to-bottom button ";
68 CB_THROTTLE_HELP_TEXTA = " - change the number of words that must match for enchant nuker";
69 CB_THROTTLE_HELP_TEXTB = "to disable, ";
70 CB_THROTTLE_HELP_TEXTC = " are acceptable values ";
71 CB_GTHROTTLE_HELP_TEXTA = " - change the number of words that must match for guild nuker";
72 CB_GTHROTTLE_HELP_TEXTB = "to disable, ";
73 CB_GTHROTTLE_HELP_TEXTC = " are acceptable values ";
74 CB_HIDEGOSSIP_HELP_TEXT = " - show/hide the idle gossip frame when talking to NPC's. ";
75 CB_USEARROWS_HELP_TEXT = " - use the arrow keys to navigate chat edit box. ";
76 CB_EDITATTOP_HELP_TEXT = " - place the edit box at the top of the scroll frame. "
77 CB_HIDEEMOTEBUTTON_HELP_TEXT = " - show/hide the emote/language button";
78 CB_MENUSIDE_HELP_TEXT = " - Do you want the buttons on the left side? ";
79 CB_COLORNAMES_HELP_TEXT = " - names in chat colored?";
80 CB_COLORRANDOM_HELP_TEXT = " - names in chat colored randomly? (only if their class is unknown.)";
81 CB_LONGSTRINGS_HELP_TEXT = " - show [Party][Raid][Guild][Officer] in chat.";
82 CB_TRUNCLENGTH_HELP_TEXTA = " - change the length of channel names in chat";
83 CB_TRUNCLENGTH_HELP_TEXTB = "to disable, ";
84 CB_TRUNCLENGTH_HELP_TEXTC = " are acceptable values ";
85 CB_CLINK_HELP_TEXT = " - allow you to link items (as links) into custom chat channels.\n (others must have this mod to see them.)\n";
86 CB_NORRIS_HELP_TEXT = " - allow you to nuke Chuck Norris spam.";
87  
88  
89 CB_STICKY_TEXT = "Sticky is now: ";
90 CB_SHORTLFG_TEXT = "Short LFG tag is now: ";
91 CB_HIDEBOTTOMBUTTON_TEXT = "The Scroll-to-Bottom button is now: ";
92 CB_THROTTLE_TEXTA = "Enchanter spam nuker throttle set to: ";
93 CB_THROTTLE_TEXTB = "Please select a number from: ";
94 CB_GTHROTTLE_TEXTA = "Guild spam nuker throttle set to: ";
95 CB_GTHROTTLE_TEXTB = "Please select a number from: ";
96 CB_HIDEGOSSIP_TEXT = "The hide Gossip functionality is now: ";
97 CB_USEARROWS_TEXT = "Using the arrow keys to navigate chat edit box: ";
98 CB_EDITATTOP_TEXTA = "The editbox is now at the ";
99 CB_EDITATTOP_TEXTB = " of the scroll frame.";
100 CB_HIDEEMOTEBUTTON_TEXT = "The emote/lang. button is now: ";
101 CB_MENUSIDE_TEXT = "The buttons change to the left is now: ";
102 CB_COLORNAMES_TEXT = "The coloring of names is chat is now: ";
103 CB_COLORRANDOM_TEXT = "The random coloring of names is chat is now: ";
104 CB_LONGSTRINGS_TEXT = "Showing the [Party][Raid][Guild][Officer] in chat are now: ";
105 CB_TRUNCLENGTH_TEXTA = "Trunc Length is now set to: ";
106 CB_TRUNCLENGTH_TEXTB = "Please select a number from: ";
107 CB_CLINK_TEXT = "Allowing you to link items (as links) into custom channels is now: ";
108 CB_NORRIS_TEXT = "The Chuck Norris spam nuker is now: ";
109  
110 CB_ON = "ON";
111 CB_OFF = "OFF";
112  
113 CB_TOP = "TOP";
114 CB_BOTTOM = "BOTTOM";
115  
116 CB_LOOKINGFORGROUPCOMM = "LookingForGroup";
117 CB_SHORTLFGCOMM = "LFG";
118 --todo add other channels too!
119  
120 CB_SAY = "say";
121 CB_YELL = "yell";
122  
123  
124 --Stuff for the player link menu.
125 CB_TARGET = "Target";
126 CB_REMOVEFRIEND = "Remove Friend";
127 CB_UNIGNORE = "Unignore";
128  
129  
130 CB_PLM_HELP_TEXT = " - on/off to turn on the tweaked right-click menu.";
131 CB_PLM_TEXT = "The extra options right-click menu is now: ";
132  
133  
134 CB_PLM_HELPA = "To setup, type /plm AAAA BBBB, \n where AAAA is the key you want to assign (alt, shift, ctrl)\n";
135 CB_PLM_HELPB = " and BBBB is the function. ";
136 CB_PLM_HELPC = "(who, target, whisper, invite, ignore)";
137 CB_PLM_HELPD = "This will only affect the left mouse button click.";
138 CB_PLM_ALT = "alt";
139 CB_PLM_SHIFT = "shift";
140 CB_PLM_CTRL = "ctrl";
141  
142 CB_PLM_ALT_TEXT_HELP = "The ALT hotkey is set to: ";
143 CB_PLM_SHIFT_TEXT_HELP = "The SHIFT hotkey is set to: ";
144 CB_PLM_CTRL_TEXT_HELP = "The CTRL hotkey is set to: ";
145  
146 CB_SPAM_WTS = "wts";
147 CB_SPAM_WTB = "wtb";
148 CB_SPAM_ENCHANTING = "enchanting";
149 CB_SPAM_BUY = "buy";
150 CB_SPAM_LOOKINGFOR = "looking for";
151 CB_SPAM_ENCHANTMENTS = "Enchantments";
152 CB_SPAM_GUILD = "Guild Info";
153  
154  
155 CB_CLASS_MAGE = "MAGE";
156 CB_CLASS_WARLOCK = "WARLOCK";
157 CB_CLASS_PRIEST = "PRIEST";
158 CB_CLASS_DRUID = "DRUID";
159 CB_CLASS_SHAMAN = "SHAMAN";
160 CB_CLASS_PALADIN = "PALADIN";
161 CB_CLASS_ROGUE = "ROGUE";
162 CB_CLASS_HUNTER = "HUNTER";
163 CB_CLASS_WARRIOR = "WARRIOR";
164  
165  
166 CB_TS_COLOR = "color";
167 CB_TS_FORMAT = "format";
168 CB_TS_FRAMES = "frames";
169 CB_TS_RESET = "reset";
170  
171 CB_TS_FORMAT_TEXT = "TimeStamp format is : "
172 --CB_TS_ENABLE_TEXT = "Global TimeStamps are : "
173 CB_TS_RESET_TEXT = "TimeStamps have been RESET!";
174  
175 CB_TS_COLOR_HELP_TEXT = " - Change the color of the timestamps (off to disable)";
176 CB_TS_FORMAT_HELP_TEXTA = " - Changes the format of the timestamp.";
177 CB_TS_FORMAT_HELP_TEXTB = " (%H: 24-hour, %I: 12-hour, %M: minute, %S: second, %p: AM/PM)";
178 CB_TS_RESET_HELP_TEXT = " - Resets the timestamps to their default behavior.";
179  
180 CB_TS_ENABLE_HELP_TEXT = " - ON or OFF will change this behaviour."
181  
182 CB_TIMESTAMP_FRAMEENABLED = "Timestamps have been enabled for '%s'.";
183 CB_TIMESTAMP_FRAMEDISABLED = "Timestamps have been disabled for '%s'.";
184 CB_TIMESTAMP_FRAME_HELP1 = "Only type the number of the frame you want to change.";
185 CB_TIMESTAMP_FRAME_HELP2 = "/ts on 3 - This will enable timestamps for ChatFrame3";
186 CB_TS_FRAMESTATUS_TEXT = "Timestamps for %1$s are : %2$s.";
187 CB_TS_COLOR_TEXT = "Timestamp coloring is now : ";
188  
189  
190 -- System channel names.
191 --todo integrate this with ShortLGF?
192 CB_GENERAL = "General";
193 CB_TRADE = "Trade";
194 CB_LFG = "LookingForGroup";
195 CB_LOCALDEF = "LocalDefense";
196 CB_WORLDDEF = "WorldDefense";
197  
198  
199  
200 --key binding stuff
201 BINDING_HEADER_CHATBOX = "ChatBox";
202 BINDING_NAME_CHATBOXTELLTARGET = "Tell Target";
203 BINDING_NAME_CHATBOXRETELL = "ReTell";
204  
205  
206 ChatBoxWords = {
207 ["misc"] = {
208 "ench",
209 "1h",
210 "2h",
211 },
212 ["equip"] = {
213 "bracer",
214 "chest",
215 "boots",
216 "gloves",
217 "back",
218 "weapon",
219 "shield",
220 },
221 ["types"] = {
222 "beast",
223 "fire",
224 "fiery",
225 "icy",
226 "ice",
227 "chill",
228 "demon",
229 "slaying",
230 "beast",
231 "crusader",
232 "unholy",
233 },
234 ["colors"] = {
235 "glow",
236 "blue",
237 "green",
238 },
239 ["stats"] = {
240 "agi",
241 "str",
242 "sta",
243 "int",
244 "spi",
245 "spt",
246 "agil",
247 "stam",
248 "stm",
249 "intl",
250 "spr",
251 "stats",
252 },
253 ["category"] = {
254 "health",
255 "hp",
256 "mana",
257 "mp",
258 "armor",
259 "def",
260 "res",
261 },
262 ["bonusdmg"] = {
263 "dmg",
264 "attack",
265 "speed",
266 },
267 ["riding"] = {
268 "riding";
269 "skill";
270 "running";
271 }
272 }
273  
274 --Guild words!
275 ChatBoxGuildWords = {
276 "new",
277 "guild",
278 "members?",
279 "level",
280 "raids?",
281 "instances?",
282 "battlegrounds?",
283 "PST",
284 "active",
285 "tabbard",
286 "apply",
287 "week[ly]?",
288 "quest[ing]?",
289 "people",
290 "adivice",
291 "join",
292 "end",
293 "game",
294 "players?",
295 "welcome",
296 "class[es]?",
297 "professions?",
298 "website",
299 "runs?",
300 "ventrilo",
301 "vent",
302 "teamspeak",
303 "forums?",
304 "private",
305 "intereset[ed]?",
306 "instances",
307 "accept[ing]?",
308 "gear[ing]?",
309 }