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")
2 L:RegisterTranslations("enUS", function() return {
3 ["Action Bars"] = true,
4 ["Auction"] = true,
5 ["Audio"] = true,
6 ["Battlegrounds/PvP"] = true,
7 ["Buffs"] = true,
8 ["Chat/Communication"] = true,
9 ["Druid"] = true,
10 ["Hunter"] = true,
11 ["Mage"] = true,
12 ["Paladin"] = true,
13 ["Priest"] = true,
14 ["Rogue"] = true,
15 ["Shaman"] = true,
16 ["Warlock"] = true,
17 ["Warrior"] = true,
18 ["Healer"] = true,
19 ["Tank"] = true,
20 ["Caster"] = true,
21 ["Combat"] = true,
22 ["Compilations"] = true,
23 ["Data Export"] = true,
24 ["Development Tools"] = true,
25 ["Guild"] = true,
26 ["Frame Modification"] = true,
27 ["Interface Enhancements"] = true,
28 ["Inventory"] = true,
29 ["Library"] = true,
30 ["Map"] = true,
31 ["Mail"] = true,
32 ["Miscellaneous"] = true,
33 ["Quest"] = true,
34 ["Raid"] = true,
35 ["Tradeskill"] = true,
36 ["UnitFrame"] = true,
37 ["Others"] = true,
38  
39 ["Default"] = true,
40 ["Overflow plugins"] = true,
41 ["Let plugins overflow onto another panel"] = true,
42 ["Create new panel"] = true,
43 ["Auto-adjust frames"] = true,
44 ["Toggle auto-adjustment of blizzard's frames"] = true,
45 ["Auto-hide top panels"] = true,
46 ["Toggle auto-hiding of the top panels"] = true,
47 ["Auto-hide bottom panels"] = true,
48 ["Toggle auto-hiding of the bottom panels"] = true,
49 ["Texture"] = true,
50 ["Change the texture of the panels"] = true,
51 ["Spacing"] = true,
52 ["Spacing between plugins"] = true,
53 ["Left-aligned spacing"] = true,
54 ["Set spacing between left-aligned plugins"] = true,
55 ["Center-aligned spacing"] = true,
56 ["Set spacing between center-aligned plugins"] = true,
57 ["Right-aligned spacing"] = true,
58 ["Set spacing between right-aligned plugins"] = true,
59 ["Font size"] = true,
60 ["Panel font size"] = true,
61 ["Set font size for the plugins on the panel"] = true,
62 ["Tooltip font size"] = true,
63 ["Set font size for the tooltip"] = true,
64 ["Transparency"] = true,
65 ["Panel transparency"] = true,
66 ["Set transparency of the panels"] = true,
67 ["Tooltip transparency"] = true,
68 ["Set transparency of the tooltip"] = true,
69 ["Thickness"] = true,
70 ["Set thickness between the panels"] = true,
71  
72 ChatCommands = { "/fubar" },
73  
74 ["Attach"] = true,
75 ["Lock panel"] = true,
76 ["Remove panel"] = true,
77 ["Attach to top"] = true,
78 ["Attach to bottom"] = true,
79 ["Detach panel"] = true,
80  
81 ["Are you sure you want to remove this panel?"] = true,
82 } end)