comparison lib/LibKeyBound-1.0/Locale-enUS.lua @ 88:fc83b3f5b322

Added keybindings using LibKeyBound-1.0, with modifications for Override bindings instead of standard bindings.
author Flick <flickerstreak@gmail.com>
date Sun, 31 Aug 2008 06:02:18 +0000
parents
children
comparison
equal deleted inserted replaced
87:3499ac7c3a9b 88:fc83b3f5b322
1 --[[
2 KeyBound localization file
3 English
4 --]]
5
6 local REVISION = tonumber(("$Revision: 77847 $"):match("%d+"))
7 if (LibKeyBoundBaseLocale10 and REVISION <= LibKeyBoundBaseLocale10.BASEREVISION) then
8 return
9 end
10
11 LibKeyBoundBaseLocale10 = {
12 REVISION = 0;
13 BASEREVISION = REVISION;
14 Enabled = 'Bindings mode enabled';
15 Disabled = 'Bindings mode disabled';
16 ClearTip = format('Press %s to clear all bindings', GetBindingText('ESCAPE', 'KEY_'));
17 NoKeysBoundTip = 'No current bindings';
18 ClearedBindings = 'Removed all bindings from %s';
19 BoundKey = 'Set %s to %s';
20 UnboundKey = 'Unbound %s from %s';
21 CannotBindInCombat = 'Cannot bind keys in combat';
22 CombatBindingsEnabled = 'Exiting combat, keybinding mode enabled';
23 CombatBindingsDisabled = 'Entering combat, keybinding mode disabled';
24 BindingsHelp = "Hover over a button, then press a key to set its binding. To clear a button's current keybinding, press %s.";
25
26 -- This is the short display version you see on the Button
27 ["Alt"] = "A",
28 ["Ctrl"] = "C",
29 ["Shift"] = "S",
30 ["NumPad"] = "N",
31
32 ["Backspace"] = "BS",
33 ["Button1"] = "B1",
34 ["Button2"] = "B2",
35 ["Button3"] = "B3",
36 ["Button4"] = "B4",
37 ["Button5"] = "B5",
38 ["Capslock"] = "Cp",
39 ["Clear"] = "Cl",
40 ["Delete"] = "Del",
41 ["End"] = "En",
42 ["Home"] = "HM",
43 ["Insert"] = "Ins",
44 ["Mouse Wheel Down"] = "WD",
45 ["Mouse Wheel Up"] = "WU",
46 ["Num Lock"] = "NL",
47 ["Page Down"] = "PD",
48 ["Page Up"] = "PU",
49 ["Scroll Lock"] = "SL",
50 ["Spacebar"] = "Sp",
51 ["Tab"] = "Tb",
52
53 ["Down Arrow"] = "Dn",
54 ["Left Arrow"] = "Lf",
55 ["Right Arrow"] = "Rt",
56 ["Up Arrow"] = "Up",
57 }
58 if not LibKeyBoundLocale10 then
59 LibKeyBoundLocale10 = LibKeyBoundBaseLocale10
60 else
61 setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10})
62 end
63 --[[
64 World of Warcraft/Blizzard Interface Data (enUS)/FrameXML/GlobalStrings.lua:
65
66 KEY_APOSTROPHE = "'";
67 KEY_BACKSLASH = "\\";
68 KEY_BACKSPACE = "Backspace";
69 KEY_BACKSPACE_MAC = "Delete";
70 KEY_BINDING = "Key Binding";
71 KEY_BINDINGS = "Key Bindings"; -- Title for the key bindings frame
72 KEY_BINDINGS_MAC = "Bindings";
73 KEY_BOUND = "Key Bound Successfully";
74 KEY_BUTTON1 = "Left Mouse Button";
75 KEY_BUTTON2 = "Right Mouse Button";
76 KEY_BUTTON3 = "Middle Mouse";
77 KEY_BUTTON4 = "Mouse Button 4";
78 KEY_BUTTON5 = "Mouse Button 5";
79 KEY_COMMA = ",";
80 KEY_DELETE = "Delete";
81 KEY_DELETE_MAC = "Del";
82 KEY_DOWN = "Down Arrow";
83 KEY_END = "End";
84 KEY_HOME = "Home";
85 KEY_INSERT = "Insert";
86 KEY_INSERT_MAC = "Help";
87 KEY_LEFT = "Left Arrow";
88 KEY_LEFTBRACKET = "[";
89 KEY_MINUS = "-";
90 KEY_MOUSEWHEELDOWN = "Mouse Wheel Down";
91 KEY_MOUSEWHEELUP = "Mouse Wheel Up";
92 KEY_NUMLOCK = "Num Lock";
93 KEY_NUMLOCK_MAC = "Clear";
94 KEY_NUMPAD0 = "Num Pad 0";
95 KEY_NUMPAD1 = "Num Pad 1";
96 KEY_NUMPAD2 = "Num Pad 2";
97 KEY_NUMPAD3 = "Num Pad 3";
98 KEY_NUMPAD4 = "Num Pad 4";
99 KEY_NUMPAD5 = "Num Pad 5";
100 KEY_NUMPAD6 = "Num Pad 6";
101 KEY_NUMPAD7 = "Num Pad 7";
102 KEY_NUMPAD8 = "Num Pad 8";
103 KEY_NUMPAD9 = "Num Pad 9";
104 KEY_NUMPADDECIMAL = "Num Pad .";
105 KEY_NUMPADDIVIDE = "Num Pad /";
106 KEY_NUMPADMINUS = "Num Pad -";
107 KEY_NUMPADMULTIPLY = "Num Pad *";
108 KEY_NUMPADPLUS = "Num Pad +";
109 KEY_PAGEDOWN = "Page Down";
110 KEY_PAGEUP = "Page Up";
111 KEY_PAUSE = "Pause";
112 KEY_PAUSE_MAC = "F15";
113 KEY_PERIOD = ".";
114 KEY_PLUS = "+";
115 KEY_PRINTSCREEN = "Print Screen";
116 KEY_PRINTSCREEN_MAC = "F13";
117 KEY_RIGHT = "Right Arrow";
118 KEY_RIGHTBRACKET = "]";
119 KEY_SCROLLLOCK = "Scroll Lock";
120 KEY_SCROLLLOCK_MAC = "F14";
121 KEY_SEMICOLON = ";";
122 KEY_SLASH = "/";
123 KEY_SPACE = "Spacebar"; -- Spacebar
124 KEY_TAB = "Tab";
125 KEY_TILDE = "~";
126 KEY_UNBOUND_ERROR = "|cffff0000%s Function is Now Unbound!|r";
127 KEY_UP = "Up Arrow";
128
129 KEY_ESCAPE = "Escape";
130 --]]