flickerstreak@88: --[[ flickerstreak@88: KeyBound localization file flickerstreak@88: Traditional Chinese by ? flickerstreak@88: --]] flickerstreak@88: flickerstreak@88: if (GetLocale() ~= "zhTW") then flickerstreak@88: return flickerstreak@88: end flickerstreak@88: flickerstreak@88: local REVISION = tonumber(("$Revision: 77823 $"):match("%d+")) flickerstreak@88: if (LibKeyBoundLocale10 and REVISION <= LibKeyBoundLocale10.REVISION) then flickerstreak@88: return flickerstreak@88: end flickerstreak@88: flickerstreak@88: LibKeyBoundLocale10 = { flickerstreak@88: REVISION = REVISION; flickerstreak@88: Enabled = "按鍵綁定模式已啟用"; flickerstreak@88: Disabled = "按鍵綁定模式已停用"; flickerstreak@88: ClearTip = format("按 %s 清除所有綁定", GetBindingText("ESCAPE", "KEY_")); flickerstreak@88: NoKeysBoundTip = "目前没有綁定按鍵"; flickerstreak@88: ClearedBindings = "從 %s 移除按鍵綁定"; flickerstreak@88: BoundKey = "設置 %s 到 %s"; flickerstreak@88: UnboundKey = "取消綁定 %s 從 %s"; flickerstreak@88: CannotBindInCombat = "無法在戰鬥狀態綁定按鍵"; flickerstreak@88: CombatBindingsEnabled = "離開戰鬥狀態, 按鍵綁定模式已啟用"; flickerstreak@88: CombatBindingsDisabled = "進入戰鬥狀態, 按鍵綁定模式已停用"; flickerstreak@88: BindingsHelp = "將滑鼠停留在按鈕上, 然後按下欲指定快捷鍵之後就能綁定。 要清除目前綁定的按鈕請按 %s."; flickerstreak@88: flickerstreak@88: -- This is the short display version you see on the Button flickerstreak@88: ["Alt"] = "A", flickerstreak@88: ["Ctrl"] = "C", flickerstreak@88: ["Shift"] = "S", flickerstreak@88: ["NumPad"] = "N", flickerstreak@88: flickerstreak@88: ["Backspace"] = "BS", flickerstreak@88: ["Button1"] = "鼠1", flickerstreak@88: ["Button2"] = "鼠2", flickerstreak@88: ["Button3"] = "鼠3", flickerstreak@88: ["Button4"] = "鼠4", flickerstreak@88: ["Button5"] = "鼠5", flickerstreak@88: ["Capslock"] = "Cp", flickerstreak@88: ["Clear"] = "Cl", flickerstreak@88: ["Delete"] = "Del", flickerstreak@88: ["End"] = "En", flickerstreak@88: ["Home"] = "HM", flickerstreak@88: ["Insert"] = "Ins", flickerstreak@88: ["Mouse Wheel Down"] = "WD", flickerstreak@88: ["Mouse Wheel Up"] = "WU", flickerstreak@88: ["Num Lock"] = "NL", flickerstreak@88: ["Page Down"] = "PD", flickerstreak@88: ["Page Up"] = "PU", flickerstreak@88: ["Scroll Lock"] = "SL", flickerstreak@88: ["Spacebar"] = "Sp", flickerstreak@88: ["Tab"] = "Tb", flickerstreak@88: flickerstreak@88: ["Down Arrow"] = "下", flickerstreak@88: ["Left Arrow"] = "左", flickerstreak@88: ["Right Arrow"] = "右", flickerstreak@88: ["Up Arrow"] = "上", flickerstreak@88: } flickerstreak@88: setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10})