comparison modules/FuBar_ReActionFu/lib/Dewdrop-2.0/Dewdrop-2.0.lua @ 30:0d95ce7a9ec2

- added Ace3 externs - converted ReAction_ConfigUI to use blizzard interface addons panel via AceConfigDialog-3.0 - partially converted FuBar module to LibRock, deprecated it (going to remove it entirely later) - cleaned up a couple other tidbits
author Flick <flickerstreak@gmail.com>
date Wed, 02 Apr 2008 23:31:13 +0000
parents 21bcaf8215ff
children
comparison
equal deleted inserted replaced
29:9c89042bc328 30:0d95ce7a9ec2
1 --[[ 1 --[[
2 Name: Dewdrop-2.0 2 Name: Dewdrop-2.0
3 Revision: $Rev: 48630 $ 3 Revision: $Rev: 56529 $
4 Author(s): ckknight (ckknight@gmail.com) 4 Author(s): ckknight (ckknight@gmail.com)
5 Website: http://ckknight.wowinterface.com/ 5 Website: http://ckknight.wowinterface.com/
6 Documentation: http://wiki.wowace.com/index.php/Dewdrop-2.0 6 Documentation: http://wiki.wowace.com/index.php/Dewdrop-2.0
7 SVN: http://svn.wowace.com/root/trunk/DewdropLib/Dewdrop-2.0 7 SVN: http://svn.wowace.com/root/trunk/DewdropLib/Dewdrop-2.0
8 Description: A library to provide a clean dropdown menu interface. 8 Description: A library to provide a clean dropdown menu interface.
9 Dependencies: AceLibrary 9 Dependencies: AceLibrary
10 License: LGPL v2.1 10 License: LGPL v2.1
11 ]] 11 ]]
12 12
13 local MAJOR_VERSION = "Dewdrop-2.0" 13 local MAJOR_VERSION = "Dewdrop-2.0"
14 local MINOR_VERSION = "$Revision: 48630 $" 14 local MINOR_VERSION = "$Revision: 56529 $"
15 15
16 if not AceLibrary then error(MAJOR_VERSION .. " requires AceLibrary") end 16 if not AceLibrary then error(MAJOR_VERSION .. " requires AceLibrary") end
17 if not AceLibrary:IsNewVersion(MAJOR_VERSION, MINOR_VERSION) then return end 17 if not AceLibrary:IsNewVersion(MAJOR_VERSION, MINOR_VERSION) then return end
18 18
19 local Dewdrop = {} 19 local Dewdrop = {}
34 if GetLocale() == "deDE" then 34 if GetLocale() == "deDE" then
35 CLOSE = "Schlie\195\159en" 35 CLOSE = "Schlie\195\159en"
36 CLOSE_DESC = "Men\195\188 schlie\195\159en." 36 CLOSE_DESC = "Men\195\188 schlie\195\159en."
37 VALIDATION_ERROR = "Validierungsfehler." 37 VALIDATION_ERROR = "Validierungsfehler."
38 USAGE_TOOLTIP = "Benutzung: %s." 38 USAGE_TOOLTIP = "Benutzung: %s."
39 RANGE_TOOLTIP = "Beachte das du mit dem Mausrad scrollen kannst solange du \195\188ber dem Schieberegler bist, um 10er Spr\195\188nge zu machen." 39 RANGE_TOOLTIP = "Beachte das du mit dem Mausrad scrollen kannst solange du mit dem Mauszeiger \195\188ber dem Schieberegler bist, um feinere Spr\195\188nge zu machen."
40 RESET_KEYBINDING_DESC = "Escape dr\195\188cken, um die Tastenbelegung zu l\195\182schen." 40 RESET_KEYBINDING_DESC = "Escape dr\195\188cken, um die Tastenbelegung zu l\195\182schen."
41 KEY_BUTTON1 = "Linke Maustaste" 41 KEY_BUTTON1 = "Linke Maustaste"
42 KEY_BUTTON2 = "Rechte Maustaste" 42 KEY_BUTTON2 = "Rechte Maustaste"
43 DISABLED = "Deaktiviert" 43 DISABLED = "Deaktiviert"
44 DEFAULT_CONFIRM_MESSAGE = "Bist du sicher das du `%s' machen willst?" 44 DEFAULT_CONFIRM_MESSAGE = "Bist du sicher das du `%s' machen willst?"