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