add keyBound by Tuller for key binding configuration, until there is some GUI/Button to open it, use /kb to bind buttons

This commit is contained in:
Hendrik Leppkes
2008-03-10 13:12:58 +00:00
parent 439e4d2389
commit 4fbff43f4a
9 changed files with 703 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
--[[
KeyBound localization file
Chinese Simplified by ondh
http://www.ondh.cn
--]]
local L = LibStub('AceLocale-3.0'):NewLocale('KeyBound', 'zhCN')
if not L then return end
L.Enabled = "按键绑定模式已启用"
L.Disabled = "按键绑定模式已禁用"
L.ClearTip = format("按 %s 清除所有绑定", GetBindingText("ESCAPE", "KEY_"))
L.NoKeysBoundTip = "当前没有绑定按键"
L.ClearedBindings = "从 %s 移除按键绑定"
L.BoundKey = "设置 %s 到 %s"
L.UnboundKey = "取消绑定 %s 从 %s"
L.CannotBindInCombat = "不能在战斗状态绑定按键"
L.CombatBindingsEnabled = "离开战斗状态, 按键绑定模式已启用"
L.CombatBindingsDisabled = "进入战斗状态, 按键绑定模式已禁用"
+18
View File
@@ -0,0 +1,18 @@
--[[
KeyBound localization file
French
--]]
local L = LibStub('AceLocale-3.0'):NewLocale('KeyBound', 'frFR')
if not L then return end
L.Enabled = "Bindings mode enabled"
L.Disabled = "Bindings mode disabled"
L.ClearTip = format("Appuyer sur %s pour effacer tous les bindings", GetBindingText("ESCAPE", "KEY_"))
L.NoKeysBoundTip = "No current bindings"
L.ClearedBindings = "Suppression de tous les binding de %s"
L.BoundKey = "Définir %s à %s"
L.UnboundKey = "Unbound %s depuis %s"
L.CannotBindInCombat = "Cannot bind keys in combat"
L.CombatBindingsEnabled = "Sortie de combat, keybinding mode activé"
L.CombatBindingsDisabled = "Entrée en combat, keybinding mode désactivé"
+18
View File
@@ -0,0 +1,18 @@
--[[
KeyBound localization file
English (default)
--]]
local L = LibStub('AceLocale-3.0'):NewLocale('KeyBound', 'enUS', true)
L.Enabled = 'Bindings mode enabled'
L.Disabled = 'Bindings mode disabled'
L.ClearTip = format('Press %s to clear all bindings', GetBindingText('ESCAPE', 'KEY_'))
L.NoKeysBoundTip = 'No current bindings'
L.ClearedBindings = 'Removed all bindings from %s'
L.BoundKey = 'Set %s to %s'
L.UnboundKey = 'Unbound %s from %s'
L.CannotBindInCombat = 'Cannot bind keys in combat'
L.CombatBindingsEnabled = 'Exiting combat, keybinding mode enabled'
L.CombatBindingsDisabled = 'Entering combat, keybinding mode disabled'
L.BindingsHelp = "Hover over a button, then press a key to set its binding. To clear a button's current keybinding, press %s."