mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Changes in this commit: - Fix arrays to large (10 elements instead of 8) copied from the old keyboard system. Issue introduced in #5610 - Add ё popup. - Change shift key as per #5659 (for both ro and ru keyboards) - Translate Russian space and symbol keys. - Rename Sym key to 123
19 lines
293 B
Lua
19 lines
293 B
Lua
return {
|
||
_Je_ = {
|
||
"Ж",
|
||
north = "Ӂ", -- Ж with breve (Moldavian)
|
||
},
|
||
_je_ = {
|
||
"ж",
|
||
north = "ӂ", -- ж with breve (Moldavian)
|
||
},
|
||
_Ye_ = {
|
||
"Е",
|
||
north = "Ё",
|
||
},
|
||
_ye_ = {
|
||
"е",
|
||
north = "ё",
|
||
},
|
||
}
|