vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 if not ace:LoadTranslation("GroupFu") then
2  
3 GroupFuLocals = {
4 NAME = "FuBar - GroupFu",
5 DESCRIPTION = "Combination of Titan LootType and Roll.",
6  
7 DEFAULT_ICON = "Interface\\Buttons\\UI-GroupLoot-Dice-Up",
8  
9 TEXT_SOLO = "Solo",
10 TEXT_GROUP = "Group",
11 TEXT_FFA = "Free for All",
12 TEXT_MASTER = "Master Looter",
13 TEXT_NBG = "Need Before Greed",
14 TEXT_RR = "Round Robin",
15 TEXT_NOROLLS = "No Rolls",
16  
17 TEXT_ENDING10 = "Roll ending in 10",
18 TEXT_ENDING5 = "Roll ending in 5",
19 TEXT_ENDING4 = "Roll ending in 4",
20 TEXT_ENDING3 = "Roll ending in 3",
21 TEXT_ENDING2 = "Roll ending in 2",
22 TEXT_ENDING1 = "Roll ending in 1",
23 TEXT_ENDED = "Rolling over announcing winner.",
24  
25  
26 SEARCH_MASTERLOOTER = "(.+) is now the loot master.",
27 SEARCH_ROLLS = "(.+) rolls (%d+) %((%d+)%-(%d+)%)",
28  
29 FORMAT_ANNOUNCE_WIN = "Winner: %s [%d] out of %d rolls.",
30 FORMAT_TEXT_ROLLCOUNT = "%s (%d/%d)",
31 FORMAT_TOOLTIP_ROLLCOUNT = "%d of expected %d rolls recorded",
32  
33 MENU_SHOWMLNAME = "Show Master Looter Name",
34 MENU_PERFORMROLL = "Perform roll when clicked",
35 MENU_SHOWROLLCOUNT = "Show count of rolls recorded ie <# rolls>/<# player in raid/party>",
36 MENU_ANNOUNCEROLLCOUNTDOWN = "Announce count down and display winner when roll clearing timer reached",
37  
38 MENU_OUTPUT = "Output Location",
39 MENU_OUTPUT_AUTO = "Output results based on being in Raid, Group, or Solo",
40 MENU_OUTPUT_LOCAL = "Output results to Local Screen",
41 MENU_OUTPUT_SAY = "Output results to the Say channel",
42 MENU_OUTPUT_PARTY = "Output results to the Party channel",
43 MENU_OUTPUT_RAID = "Output results to the Raid channel",
44 MENU_OUTPUT_GUILD = "Output results to the Guild channel",
45  
46 MENU_CLEAR = "Automatic Roll Clearing",
47 MENU_CLEAR_NEVER = "Never",
48 MENU_CLEAR_15SEC = "15 seconds",
49 MENU_CLEAR_30SEC = "30 seconds",
50 MENU_CLEAR_45SEC = "45 seconds",
51 MENU_CLEAR_60SEC = "60 seconds",
52  
53 MENU_DETAIL = "Output Detail",
54 MENU_DETAIL_SHORT = "Display winner only",
55 MENU_DETAIL_LONG = "Display all rolls",
56 MENU_DETAIL_FULL = "Display all rolls, along with non-standard roll info",
57  
58 MENU_MODE = "Text Mode",
59 MENU_MODE_GROUPFU = "GroupFu: Loot type, unless a roll is active then the winner of the roll",
60 MENU_MODE_ROLLSFU = "RollFu: No Rolls, unless a roll is active then the winner of the roll",
61 MENU_MODE_LOOTTYFU = "LootTyFu: Loot type always",
62  
63 MENU_STANDARDROLLSONLY = "Accept standard (1-100) rolls only",
64 MENU_IGNOREDUPES = "Ignore duplicate rolls",
65 MENU_AUTODELETE = "Auto-delete rolls after output",
66 MENU_SHOWCLASSLEVEL = "Show Class and Level in tooltip",
67  
68 MENU_GROUP = "Group Functions",
69 MENU_GROUP_LEAVE = "Leave Group",
70 MENU_GROUP_RAID = "Convert Group to Raid",
71 MENU_GROUP_LOOT = "Change Looting Method",
72 MENU_GROUP_THRESHOLD = "Change Loot Threshold",
73 MENU_GROUP_RESETINSTANCE = "Reset Instance",
74  
75 TOOLTIP_CAT_LOOTING = "Looting",
76 TOOLTIP_CAT_ROLLS = "Rolls",
77 TOOLTIP_METHOD = "Looting Method",
78 TOOLTIP_HINT_ROLLS = "Click to roll, Ctrl-Click to output winner, Shift-Click to clear the list",
79 TOOLTIP_HINT_NOROLLS = "Ctrl-Click to output winner, Shift-Click to clear the list",
80  
81 ENDENLOCALE = true
82 }
83  
84 end