Mercurial > wow > reaction
comparison 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 |
comparison
equal
deleted
inserted
replaced
87:3499ac7c3a9b | 88:fc83b3f5b322 |
---|---|
1 --[[ | |
2 KeyBound localization file | |
3 Korean by damjau | |
4 --]] | |
5 | |
6 if (GetLocale() ~= "koKR") then | |
7 return | |
8 end | |
9 | |
10 local REVISION = tonumber(("$Revision: 77823 $"):match("%d+")) | |
11 if (LibKeyBoundLocale10 and REVISION <= LibKeyBoundLocale10.REVISION) then | |
12 return | |
13 end | |
14 | |
15 LibKeyBoundLocale10 = { | |
16 REVISION = REVISION; | |
17 Enabled = '단축키 설정 기능 사용 가능'; | |
18 Disabled = '단축키 설정 기능 사용 불가'; | |
19 ClearTip = format('%s키를 누르면 모든 단축키가 초기화됩니다', GetBindingText('ESCAPE', 'KEY_')); | |
20 NoKeysBoundTip = '현재 단축키 없음'; | |
21 ClearedBindings = '%s의 모든 단축키가 초기화 되었습니다'; | |
22 BoundKey = '%2$s의 단축키로 %1$s|1을;를; 설정합니다.'; | |
23 UnboundKey = '%2$s에서 %1$s의 단축키가 삭제되었습니다'; | |
24 CannotBindInCombat = '전투 중에는 단축키를 지정할 수 없습니다'; | |
25 CombatBindingsEnabled = '전투 종료. 단축키 설정이 가능해집니다'; | |
26 CombatBindingsDisabled = '전투 시작. 단축키 설정이 불가능합니다'; | |
27 BindingsHelp = "버튼 위에 마우스를 올려 놓고 지정할 키를 누르세요. 버튼의 현재 단축키를 삭제하시려면 %s|1을;를; 누르세요."; | |
28 | |
29 -- This is the short display version you see on the Button | |
30 ["Alt"] = "A", | |
31 ["Ctrl"] = "C", | |
32 ["Shift"] = "S", | |
33 ["NumPad"] = "N", | |
34 | |
35 ["Backspace"] = "BS", | |
36 ["Button1"] = "B1", | |
37 ["Button2"] = "B2", | |
38 ["Button3"] = "B3", | |
39 ["Button4"] = "B4", | |
40 ["Button5"] = "B5", | |
41 ["Capslock"] = "Cp", | |
42 ["Clear"] = "Cl", | |
43 ["Delete"] = "Del", | |
44 ["End"] = "En", | |
45 ["Home"] = "HM", | |
46 ["Insert"] = "Ins", | |
47 ["Mouse Wheel Down"] = "WD", | |
48 ["Mouse Wheel Up"] = "WU", | |
49 ["Num Lock"] = "NL", | |
50 ["Page Down"] = "PD", | |
51 ["Page Up"] = "PU", | |
52 ["Scroll Lock"] = "SL", | |
53 ["Spacebar"] = "Sp", | |
54 ["Tab"] = "Tb", | |
55 | |
56 ["Down Arrow"] = "DA", | |
57 ["Left Arrow"] = "LA", | |
58 ["Right Arrow"] = "RA", | |
59 ["Up Arrow"] = "UA", | |
60 } | |
61 setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10}) |