57a5cdabdf
Imported from /srv/add01/wow-ascension/Interface/AddOns/Bartender4 — the build Ascension's WotLK 3.3.5 client ships. Single vendored drop: Ascension's build process bundles their custom patches with the standard CurseForge packager output (embedded libs), and the individual patches aren't published separately. Net delta vs Nevcairiel 4.4.2, excluding bundled libs and CRLF normalization: 21 files, 2213+/52- — the Ascension-specific adaptations for WotLK 3.3.5 hero classes / custom action systems. License: All rights reserved (per .toc).
157 lines
4.3 KiB
Lua
157 lines
4.3 KiB
Lua
--[[
|
|
KeyBound localization file
|
|
English
|
|
--]]
|
|
|
|
local REVISION = 90000 + tonumber(("$Revision: 92 $"):match("%d+"))
|
|
if (LibKeyBoundBaseLocale10 and REVISION <= LibKeyBoundBaseLocale10.BASEREVISION) then
|
|
return
|
|
end
|
|
|
|
LibKeyBoundBaseLocale10 = {
|
|
REVISION = 0;
|
|
BASEREVISION = REVISION;
|
|
BindingMode = "Binding Mode";
|
|
Enabled = 'Bindings mode enabled';
|
|
Disabled = 'Bindings mode disabled';
|
|
ClearTip = format('Press %s to clear all bindings', GetBindingText('ESCAPE', 'KEY_'));
|
|
NoKeysBoundTip = 'No current bindings';
|
|
ClearedBindings = 'Removed all bindings from %s';
|
|
BoundKey = 'Set %s to %s';
|
|
UnboundKey = 'Unbound %s from %s';
|
|
CannotBindInCombat = 'Cannot bind keys in combat';
|
|
CombatBindingsEnabled = 'Exiting combat, keybinding mode enabled';
|
|
CombatBindingsDisabled = 'Entering combat, keybinding mode disabled';
|
|
BindingsHelp = "Hover over a button, then press a key to set its binding. To clear a button's current keybinding, press %s.";
|
|
|
|
-- This is the short display version you see on the Button
|
|
["Alt"] = "A",
|
|
["Ctrl"] = "C",
|
|
["Shift"] = "S",
|
|
["NumPad"] = "N",
|
|
|
|
["Backspace"] = "BS",
|
|
["Button1"] = "B1",
|
|
["Button2"] = "B2",
|
|
["Button3"] = "B3",
|
|
["Button4"] = "B4",
|
|
["Button5"] = "B5",
|
|
["Button6"] = "B6",
|
|
["Button7"] = "B7",
|
|
["Button8"] = "B8",
|
|
["Button9"] = "B9",
|
|
["Button10"] = "B10",
|
|
["Button11"] = "B11",
|
|
["Button12"] = "B12",
|
|
["Button13"] = "B13",
|
|
["Button14"] = "B14",
|
|
["Button15"] = "B15",
|
|
["Button16"] = "B16",
|
|
["Button17"] = "B17",
|
|
["Button18"] = "B18",
|
|
["Button19"] = "B19",
|
|
["Button20"] = "B20",
|
|
["Button21"] = "B21",
|
|
["Button22"] = "B22",
|
|
["Button23"] = "B23",
|
|
["Button24"] = "B24",
|
|
["Button25"] = "B25",
|
|
["Button26"] = "B26",
|
|
["Button27"] = "B27",
|
|
["Button28"] = "B28",
|
|
["Button29"] = "B29",
|
|
["Button30"] = "B30",
|
|
["Button31"] = "B31",
|
|
["Capslock"] = "Cp",
|
|
["Clear"] = "Cl",
|
|
["Delete"] = "Del",
|
|
["End"] = "En",
|
|
["Home"] = "HM",
|
|
["Insert"] = "Ins",
|
|
["Mouse Wheel Down"] = "WD",
|
|
["Mouse Wheel Up"] = "WU",
|
|
["Num Lock"] = "NL",
|
|
["Page Down"] = "PD",
|
|
["Page Up"] = "PU",
|
|
["Scroll Lock"] = "SL",
|
|
["Spacebar"] = "Sp",
|
|
["Tab"] = "Tb",
|
|
|
|
["Down Arrow"] = "Dn",
|
|
["Left Arrow"] = "Lf",
|
|
["Right Arrow"] = "Rt",
|
|
["Up Arrow"] = "Up",
|
|
}
|
|
if not LibKeyBoundLocale10 then
|
|
LibKeyBoundLocale10 = LibKeyBoundBaseLocale10
|
|
else
|
|
setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10})
|
|
end
|
|
--[[
|
|
World of Warcraft/Blizzard Interface Data (enUS)/FrameXML/GlobalStrings.lua:
|
|
|
|
KEY_APOSTROPHE = "'";
|
|
KEY_BACKSLASH = "\\";
|
|
KEY_BACKSPACE = "Backspace";
|
|
KEY_BACKSPACE_MAC = "Delete";
|
|
KEY_BINDING = "Key Binding";
|
|
KEY_BINDINGS = "Key Bindings"; -- Title for the key bindings frame
|
|
KEY_BINDINGS_MAC = "Bindings";
|
|
KEY_BOUND = "Key Bound Successfully";
|
|
KEY_BUTTON1 = "Left Mouse Button";
|
|
KEY_BUTTON2 = "Right Mouse Button";
|
|
KEY_BUTTON3 = "Middle Mouse";
|
|
KEY_BUTTON4 = "Mouse Button 4";
|
|
KEY_BUTTON5 = "Mouse Button 5";
|
|
KEY_COMMA = ",";
|
|
KEY_DELETE = "Delete";
|
|
KEY_DELETE_MAC = "Del";
|
|
KEY_DOWN = "Down Arrow";
|
|
KEY_END = "End";
|
|
KEY_HOME = "Home";
|
|
KEY_INSERT = "Insert";
|
|
KEY_INSERT_MAC = "Help";
|
|
KEY_LEFT = "Left Arrow";
|
|
KEY_LEFTBRACKET = "[";
|
|
KEY_MINUS = "-";
|
|
KEY_MOUSEWHEELDOWN = "Mouse Wheel Down";
|
|
KEY_MOUSEWHEELUP = "Mouse Wheel Up";
|
|
KEY_NUMLOCK = "Num Lock";
|
|
KEY_NUMLOCK_MAC = "Clear";
|
|
KEY_NUMPAD0 = "Num Pad 0";
|
|
KEY_NUMPAD1 = "Num Pad 1";
|
|
KEY_NUMPAD2 = "Num Pad 2";
|
|
KEY_NUMPAD3 = "Num Pad 3";
|
|
KEY_NUMPAD4 = "Num Pad 4";
|
|
KEY_NUMPAD5 = "Num Pad 5";
|
|
KEY_NUMPAD6 = "Num Pad 6";
|
|
KEY_NUMPAD7 = "Num Pad 7";
|
|
KEY_NUMPAD8 = "Num Pad 8";
|
|
KEY_NUMPAD9 = "Num Pad 9";
|
|
KEY_NUMPADDECIMAL = "Num Pad .";
|
|
KEY_NUMPADDIVIDE = "Num Pad /";
|
|
KEY_NUMPADMINUS = "Num Pad -";
|
|
KEY_NUMPADMULTIPLY = "Num Pad *";
|
|
KEY_NUMPADPLUS = "Num Pad +";
|
|
KEY_PAGEDOWN = "Page Down";
|
|
KEY_PAGEUP = "Page Up";
|
|
KEY_PAUSE = "Pause";
|
|
KEY_PAUSE_MAC = "F15";
|
|
KEY_PERIOD = ".";
|
|
KEY_PLUS = "+";
|
|
KEY_PRINTSCREEN = "Print Screen";
|
|
KEY_PRINTSCREEN_MAC = "F13";
|
|
KEY_RIGHT = "Right Arrow";
|
|
KEY_RIGHTBRACKET = "]";
|
|
KEY_SCROLLLOCK = "Scroll Lock";
|
|
KEY_SCROLLLOCK_MAC = "F14";
|
|
KEY_SEMICOLON = ";";
|
|
KEY_SLASH = "/";
|
|
KEY_SPACE = "Spacebar"; -- Spacebar
|
|
KEY_TAB = "Tab";
|
|
KEY_TILDE = "~";
|
|
KEY_UNBOUND_ERROR = "|cffff0000%s Function is Now Unbound!|r";
|
|
KEY_UP = "Up Arrow";
|
|
|
|
KEY_ESCAPE = "Escape";
|
|
--]] |