Mercurial > wow > reaction
comparison lib/LibKeyBound-1.0/Locale-esMX.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 LibKeyBound-1.0 localization file | |
| 3 Latin America Spanish by ? | |
| 4 --]] | |
| 5 | |
| 6 if (GetLocale() ~= "esMX") 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 = 'Modo Atajos activado'; | |
| 18 Disabled = 'Modo Atajos desactivado'; | |
| 19 ClearTip = format('Pulsa %s para limpiar todos los atajos', GetBindingText('ESCAPE', 'KEY_')); | |
| 20 NoKeysBoundTip = 'No existen atajos'; | |
| 21 ClearedBindings = 'Eliminados todos los atajos de %s'; | |
| 22 BoundKey = 'Establecer %s a %s'; | |
| 23 UnboundKey = 'Quitado atajo %s de %s'; | |
| 24 CannotBindInCombat = 'No se pueden atajar teclas en combate'; | |
| 25 CombatBindingsEnabled = 'Saliendo de combate, modo de Atajos de Teclado activado'; | |
| 26 CombatBindingsDisabled = 'Entrando en combate, modo de Atajos de Teclado desactivado'; | |
| 27 BindingsHelp = "Sitúese en un botón, entonces pulse una tecla para establecer su atajo. Para limpiar el Atajo del botón actual, pulse %s."; | |
| 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"] = "Fin", | |
| 45 ["Home"] = "Ini", | |
| 46 ["Insert"] = "Ins", | |
| 47 ["Mouse Wheel Down"] = "AW", | |
| 48 ["Mouse Wheel Up"] = "RW", | |
| 49 ["Num Lock"] = "NL", | |
| 50 ["Page Down"] = "AP", | |
| 51 ["Page Up"] = "RP", | |
| 52 ["Scroll Lock"] = "SL", | |
| 53 ["Spacebar"] = "Sp", | |
| 54 ["Tab"] = "Tb", | |
| 55 | |
| 56 ["Down Arrow"] = "Ar", | |
| 57 ["Left Arrow"] = "Ab", | |
| 58 ["Right Arrow"] = "Iz", | |
| 59 ["Up Arrow"] = "De", | |
| 60 } | |
| 61 setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10}) |
