public
Description: WoW Addon - My fork of Ace's AddonLoader... cause I'm not willing to install an SVN client :)
Homepage: http://www.wowace.com/wiki/AddonLoader
Clone URL: git://github.com/tekkub/addonloader.git
tekkub (author)
Sat Jul 19 19:21:10 -0700 2008
commit  97dc0fe94727f6efbc513f4b8389d4715134022f
tree    49bb559d722faa78be6b02dbf203405028290912
parent  43fb50edcbcdf3deca9a8b1422e690abccf3eee9
addonloader / AddonLoader-enUS.lua
100644 34 lines (29 sloc) 0.937 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
local L = AceLibrary("AceLocale-2.2"):new("AddonLoader")
L:RegisterTranslations("enUS", function()
  return {
    
    ["Messages"] = true,
    ["Show messages in the chat frame when addons are loaded"] = true,
    
    ["Loaded %s."] = true,
    ["Failed to load %s: %s."] = true,
    
    ["Overrides"] = true,
    ["Set alternate conditions for loading a given addon, overriding those in its toc file. NOTE: These settings do not take effect until a UI reload."] = true,
    ["Set the loading condition for %s. NOTE: Does not take effect until a UI reload."] = true,
    
    ["Always"] = true,
    ["AuctionHouse"] = true,
    ["Arena"] = true,
    ["Bank"] = true,
    ["Battleground"] = true,
    ["Combat"] = true,
    ["Crafting"] = true,
    ["Group"] = true,
    ["Guild"] = true,
    ["Instance"] = true,
    ["Mailbox"] = true,
    ["Merchant"] = true,
    ["None"] = true,
    ["NotResting"] = true,
    ["PvPFlagged"] = true,
    ["Raid"] = true,
    ["Resting"] = true,
  }
end)