public
Description: WoW addon - Track down those needy and greedy party members
Homepage: http://www.tekkub.net
Clone URL: git://github.com/tekkub/greedbeacon.git
Click here to lend your support to: greedbeacon and make a donation at www.pledgie.com !
Remove forced deDE debug, ensure everything still works for enUS
tekkub (author)
Sun Jun 01 17:19:38 -0700 2008
commit  974a26a41729b30f0d734342b64b5c72285913d4
tree    7a2d1beb452ff0f4b052d6f153c6377d448737f2
parent  16c5976171d79a05daded8020e525c4a231f87ed
...
1
2
3
4
5
6
 
7
8
9
...
14
15
16
17
18
 
19
20
21
...
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
...
 
 
 
1
 
 
2
3
4
5
...
10
11
12
 
 
13
14
15
16
...
134
135
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
138
139
0
@@ -1,9 +1,5 @@
0
-local YOU = "Ihr"; -- "You", the player
0
-local GREED = "Gier";
0
-local NEED = "Bedarf";
0
 
0
---~ local L = setmetatable(GetLocale() == "deDE" and {
0
-local L = setmetatable({
0
+local L = setmetatable(GetLocale() == "deDE" and {
0
   ["(.*) won: (.+)"] = "(.*) gewinnt: (.+)",
0
   ["%s|Hgreedbeacon:%d|h[%s roll]|h|r %s won %s "] = "%s|Hgreedbeacon:%d|h[%s roll]|h|r %s gewinnt: %s",
0
   ["(.*) has?v?e? selected (.+) for: (.+)"] = "(.+) hab?t f\195\188r (.+) '(.+)' ausgew\195\164hlt",
0
@@ -14,8 +10,7 @@ local L = setmetatable({
0
   ["Everyone passed on: "] = "Alle haben gepasst bei: ",
0
   ["Greed"] = GREED,
0
   ["Need"] = NEED,
0
-}, {__index = function(t,i) return i end})
0
---~ } or {}, {__index = function(t,i) return i end})
0
+} or {}, {__index = function(t,i) return i end})
0
 
0
 local colorneed, colorgreed = "|cffff0000", "|cffffff00"
0
 local coloredwords = {[L.Greed] = colorgreed..L.Greed, [L.Need] = colorneed..L.Need}
0
@@ -139,23 +134,6 @@ local function e(msg)
0
   filter(msg)
0
 end
0
 
0
-local LOOT_ROLL_ALL_PASSED = "Alle haben gepasst bei: %s";
0
-local LOOT_ROLL_GREED = "%s hat f\195\188r %s 'Gier' ausgew\195\164hlt";
0
-local LOOT_ROLL_GREED_SELF = "Ihr habt f\195\188r %s 'Gier' ausgew\195\164hlt";
0
-local LOOT_ROLL_NEED = "%s hat f\195\188r %s 'Bedarf' ausgew\195\164hlt";
0
-local LOOT_ROLL_NEED_SELF = "Ihr habt f\195\188r %s 'Bedarf' ausgew\195\164hlt";
0
-local LOOT_ROLL_PASSED = "%s w\195\188rfelt nicht f\195\188r: %s";
0
-local LOOT_ROLL_PASSED_SELF = "Ihr habt gepasst bei: %s";
0
-local LOOT_ROLL_PASSED_AUTO = "%1$s passt automatisch bei %2$s, weil er den Gegenstand nicht benutzen kann.";
0
-local LOOT_ROLL_PASSED_AUTO_FEMALE = "%1$s passt automatisch bei %2$s, weil sie den Gegenstand nicht benutzen kann.";
0
-local LOOT_ROLL_PASSED_SELF_AUTO = "Ihr passt automatisch bei %s, weil Ihr den Gegenstand nicht benutzen k\195\182nnt.";
0
-local LOOT_ROLL_ROLLED_GREED = "Wurf f\195\188r Gier: %d f\195\188r %s von %s"; -- First %s is item, second %s is player name
0
-local LOOT_ROLL_ROLLED_NEED = "Wurf f\195\188r Bedarf: %d f\195\188r %s von %s"; -- First %s is item, second %s is player name
0
-local LOOT_ROLL_WON = "%s gewinnt: %s";
0
-local LOOT_ROLL_WON_NO_SPAM_GREED = "%1$s gewinnt: %3$s |cff818181(Gier - %2$d)|r";
0
-local LOOT_ROLL_WON_NO_SPAM_NEED = "%1$s gewinnt: %3$s |cff818181(Bedarf - %2$d)|r";
0
-local LOOT_ROLL_YOU_WON = "Ihr gewinnt: %s";
0
-local YOU = "Ihr"; -- "You", the player
0
 
0
 local _, link = GetItemInfo(6948)
0
 e(string.format(LOOT_ROLL_NEED, "Joe", link))

Comments

    No one has commented yet.