vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 if not ace:LoadTranslation("EmoteFu") then
2  
3 EmoteFuLocals = {
4 NAME = "FuBar - EmoteFu",
5 DESCRIPTION = "Allows you to easily access emotes, saving the time and hassle of memorizing the emote commands! This mod was ported from TitanEmoteMenu by Dsanai of Whisperwind. Credit for many internal routines goes to Dsanai.",
6 COMMANDS = {"/emotefu", "/emofu"},
7 CMD_OPTIONS = {},
8  
9 LMBTEXT = "Right Click for a list of emotes.",
10  
11 ARGUMENT_SLASH = "slshCmd"
12 }
13  
14 EmoteFuLocals.CMD_OPTIONS = {
15 {
16 option = EmoteFuLocals.ARGUMENT_SLASH,
17 desc = "Show the Slash Command of an emote prior to the emote text.",
18 method = "ToggleShowingSlashCommands"
19 },
20 }
21  
22  
23 end