vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local L = AceLibrary("AceLocale-2.0"):new("FuBar_PerformanceFu")
2  
3 L:RegisterTranslations("enUS", function() return {
4 ["Show framerate"] = true,
5 ["Toggle whether to framerate"] = true,
6 ["Show latency"] = true,
7 ["Toggle whether to latency (lag)"] = true,
8 ["Show memory usage"] = true,
9 ["Toggle whether to show current memory usage"] = true,
10 ["Show rate of increasing memory usage"] = true,
11 ["Toggle whether to show increasing rate of memory"] = true,
12 ["Warn on garbage collection"] = true,
13 ["Toggle whether to warn on an upcoming garbage collection"] = true,
14 ["Force garbage collection"] = true,
15 ["Force a garbage collection to happen"] = true,
16 ["Garbage collection occurred"] = true,
17 ["Garbage collection in %s"] = true,
18 ["Framerate:"] = true,
19 ["Network status"] = true,
20 ["Latency:"] = true,
21 ["Bandwidth in:"] = true,
22 ["Bandwidth out:"] = true,
23 ["Memory usage"] = true,
24 ["Current memory:"] = true,
25 ["Initial memory:"] = true,
26 ["Increasing rate:"] = true,
27 ["Average increasing rate:"] = true,
28 ["Garbage collection"] = true,
29 ["Threshold:"] = true,
30 ["Time to next:"] = true,
31  
32 ["AceConsole-options"] = {"/perffu", "/performancefu"},
33 } end)