diff lib/LibKeyBound-1.0/Locale-koKR.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-koKR.lua	Sun Aug 31 06:02:18 2008 +0000
@@ -0,0 +1,61 @@
+--[[
+	KeyBound localization file
+		Korean by damjau
+--]]
+
+if (GetLocale() ~= "koKR") 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 = '%2$s의 단축키로 %1$s|1을;를; 설정합니다.';
+	UnboundKey = '%2$s에서 %1$s의 단축키가 삭제되었습니다';
+	CannotBindInCombat = '전투 중에는 단축키를 지정할 수 없습니다';
+	CombatBindingsEnabled = '전투 종료. 단축키 설정이 가능해집니다';
+	CombatBindingsDisabled = '전투 시작. 단축키 설정이 불가능합니다';
+	BindingsHelp = "버튼 위에 마우스를 올려 놓고 지정할 키를 누르세요.  버튼의 현재 단축키를 삭제하시려면 %s|1을;를; 누르세요.";
+
+	-- 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",
+	["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"] = "DA",
+	["Left Arrow"] = "LA",
+	["Right Arrow"] = "RA",
+	["Up Arrow"] = "UA",
+}
+setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10})