You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/frontend/ui/data/keyboardlayouts/es_keyboard.lua

16 lines
521 B
Lua

-- Start with the english keyboard layout (deep copy, to not alter it)
local es_keyboard = require("util").tableDeepCopy(require("ui/data/keyboardlayouts/en_keyboard"))
local keys = es_keyboard.keys
-- Insert an additional key at the end of 2nd row for easy Ñ and ñ
table.insert(keys[2],
-- 1 2 3 4 5 6 7 8
{ "Ñ", "ñ", "Ñ", "ñ", "Ñ", "ñ", "Ñ", "ñ", }
)
-- Rename "space"
keys[4][4].label = "espacio"
return es_keyboard