diff lib/LibKeyBound-1.0/Locale-zhTW.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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/LibKeyBound-1.0/Locale-zhTW.lua	Sun Aug 31 06:02:18 2008 +0000
@@ -0,0 +1,61 @@
+--[[
+	KeyBound localization file
+		Traditional Chinese by ?
+--]]
+
+if (GetLocale() ~= "zhTW") then
+	return
+end
+
+local REVISION = tonumber(("$Revision: 77823 $"):match("%d+"))
+if (LibKeyBoundLocale10 and REVISION <= LibKeyBoundLocale10.REVISION) then
+	return
+end
+
+LibKeyBoundLocale10 = {
+	REVISION = REVISION;
+	Enabled = "按鍵綁定模式已啟用";
+	Disabled = "按鍵綁定模式已停用";
+	ClearTip = format("按 %s 清除所有綁定", GetBindingText("ESCAPE", "KEY_"));
+	NoKeysBoundTip = "目前没有綁定按鍵";
+	ClearedBindings = "從 %s 移除按鍵綁定";
+	BoundKey = "設置 %s 到 %s";
+	UnboundKey = "取消綁定 %s 從 %s";
+	CannotBindInCombat = "無法在戰鬥狀態綁定按鍵";
+	CombatBindingsEnabled = "離開戰鬥狀態, 按鍵綁定模式已啟用";
+	CombatBindingsDisabled = "進入戰鬥狀態, 按鍵綁定模式已停用";
+	BindingsHelp = "將滑鼠停留在按鈕上, 然後按下欲指定快捷鍵之後就能綁定。  要清除目前綁定的按鈕請按 %s.";
+
+	-- This is the short display version you see on the Button
+	["Alt"] = "A",
+	["Ctrl"] = "C",
+	["Shift"] = "S",
+	["NumPad"] = "N",
+
+	["Backspace"] = "BS",
+	["Button1"] = "鼠1",
+	["Button2"] = "鼠2",
+	["Button3"] = "鼠3",
+	["Button4"] = "鼠4",
+	["Button5"] = "鼠5",
+	["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"] = "下",
+	["Left Arrow"] = "左",
+	["Right Arrow"] = "右",
+	["Up Arrow"] = "上",
+}
+setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10})