Add zhTW locale to KeyBound

This commit is contained in:
whyv
2008-05-06 17:55:47 +00:00
parent dbc0ad5146
commit d3bb267522
2 changed files with 20 additions and 0 deletions
+1
View File
@@ -3,6 +3,7 @@
<Script file="localization\localization.cn.lua"/>
<Script file="localization\localization.fr.lua"/>
<Script file="localization\localization.kr.lua"/>
<Script file="localization\localization.tw.lua"/>
<Script file="keyBound.lua"/>
<Script file="spell.lua"/>
<Script file="macro.lua"/>
+19
View File
@@ -0,0 +1,19 @@
--[[
--[[
KeyBound localization file
Traditional Chinese
--]]
local L = LibStub('AceLocale-3.0'):NewLocale('KeyBound', 'zhTW')
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 = "進入戰鬥狀態, 按鍵綁定模式已禁用"