mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
fdae07e2cc
See #8089 for all the details.
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[2][6][1], keys[4][2][1] = keys[4][2][1], keys[2][6][1] -- Z <-> Y
|
|
keys[2][6][2], keys[4][2][2] = keys[4][2][2], keys[2][6][2] -- z <-> y
|
|
|
|
return de_keyboard
|