mirror of
https://github.com/koreader/koreader
synced 2024-11-16 06:12:56 +00:00
4349272d9c
Add support for German keyboard. It's mainly en_keyoard.lua with changed z/Z and y/Y.
10 lines
363 B
Lua
10 lines
363 B
Lua
-- Start with the english keyboard layout (deep copy, to not alter it)
|
|
local de_keyboard = require("util").tableDeepCopy(require("ui/data/keyboardlayouts/en_keyboard"))
|
|
|
|
local keys = de_keyboard.keys
|
|
|
|
keys[1][6][1], keys[3][2][1] = keys[3][2][1], keys[1][6][1] -- Z <-> Y
|
|
keys[1][6][2], keys[3][2][2] = keys[3][2][2], keys[1][6][2] -- z <-> y
|
|
|
|
return de_keyboard
|