/libs/LibKeyBound-1.0/Locale-koKR.lua

http://github.com/tullamods/Dominos · Lua · 87 lines · 76 code · 6 blank · 5 comment · 4 complexity · 56865cd86354bdbe6b6d4495a9b8748b MD5 · raw file

  1. --[[
  2. KeyBound localization file
  3. Korean by damjau
  4. --]]
  5. if (GetLocale() ~= "koKR") then
  6. return
  7. end
  8. local REVISION = 90000 + tonumber(("$Revision: 92 $"):match("%d+"))
  9. if (LibKeyBoundLocale10 and REVISION <= LibKeyBoundLocale10.REVISION) then
  10. return
  11. end
  12. LibKeyBoundLocale10 = {
  13. REVISION = REVISION;
  14. Enabled = '단축키 설정 기능 사용 가능';
  15. Disabled = '단축키 설정 기능 사용 불가';
  16. ClearTip = format('%s키를 누르면 모든 단축키가 초기화됩니다', GetBindingText('ESCAPE', 'KEY_'));
  17. NoKeysBoundTip = '현재 단축키 없음';
  18. ClearedBindings = '%s의 모든 단축키가 초기화 되었습니다';
  19. BoundKey = '%2$s의 단축키로 %1$s|1을;를; 설정합니다.';
  20. UnboundKey = '%2$s에서 %1$s의 단축키가 삭제되었습니다';
  21. CannotBindInCombat = '전투 중에는 단축키를 지정할 수 없습니다';
  22. CombatBindingsEnabled = '전투 종료. 단축키 설정이 가능해집니다';
  23. CombatBindingsDisabled = '전투 시작. 단축키 설정이 불가능합니다';
  24. BindingsHelp = "버튼 위에 마우스를 올려 놓고 지정할 키를 누르세요. 버튼의 현재 단축키를 삭제하시려면 %s|1을;를; 누르세요.";
  25. -- This is the short display version you see on the Button
  26. ["Alt"] = "A",
  27. ["Ctrl"] = "C",
  28. ["Shift"] = "S",
  29. ["NumPad"] = "N",
  30. ["Backspace"] = "BS",
  31. ["Button1"] = "B1",
  32. ["Button2"] = "B2",
  33. ["Button3"] = "B3",
  34. ["Button4"] = "B4",
  35. ["Button5"] = "B5",
  36. ["Button6"] = "B6",
  37. ["Button7"] = "B7",
  38. ["Button8"] = "B8",
  39. ["Button9"] = "B9",
  40. ["Button10"] = "B10",
  41. ["Button11"] = "B11",
  42. ["Button12"] = "B12",
  43. ["Button13"] = "B13",
  44. ["Button14"] = "B14",
  45. ["Button15"] = "B15",
  46. ["Button16"] = "B16",
  47. ["Button17"] = "B17",
  48. ["Button18"] = "B18",
  49. ["Button19"] = "B19",
  50. ["Button20"] = "B20",
  51. ["Button21"] = "B21",
  52. ["Button22"] = "B22",
  53. ["Button23"] = "B23",
  54. ["Button24"] = "B24",
  55. ["Button25"] = "B25",
  56. ["Button26"] = "B26",
  57. ["Button27"] = "B27",
  58. ["Button28"] = "B28",
  59. ["Button29"] = "B29",
  60. ["Button30"] = "B30",
  61. ["Button31"] = "B31",
  62. ["Capslock"] = "Cp",
  63. ["Clear"] = "Cl",
  64. ["Delete"] = "Del",
  65. ["End"] = "En",
  66. ["Home"] = "HM",
  67. ["Insert"] = "Ins",
  68. ["Mouse Wheel Down"] = "WD",
  69. ["Mouse Wheel Up"] = "WU",
  70. ["Num Lock"] = "NL",
  71. ["Page Down"] = "PD",
  72. ["Page Up"] = "PU",
  73. ["Scroll Lock"] = "SL",
  74. ["Spacebar"] = "Sp",
  75. ["Tab"] = "Tb",
  76. ["Down Arrow"] = "DA",
  77. ["Left Arrow"] = "LA",
  78. ["Right Arrow"] = "RA",
  79. ["Up Arrow"] = "UA",
  80. }
  81. setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10})