mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
2541440bb8
This adds a new separate Romanian keyboard layout, with popup support. - Functional buttons are translated. - Pages 5&6 contain 3 groups of characters (I tried my best to group them logically): - On the left: traditional Romanian cyrillic pre-1850s - On the middle latinised forms from 1850s onwards - On the right modern diacritics from 1900s to today - Pages 7&8 add only large double quotes and section/paragraph mark. - Popups are only avalable for most common diacritics. Swipe up for circumflex, swipe down for breve. I can really call this the most complete though-the-ages Romanian keyboard. :)
47 lines
639 B
Lua
47 lines
639 B
Lua
return {
|
|
_A_ = {
|
|
"A",
|
|
north = "Â",
|
|
south = "Ă",
|
|
},
|
|
_a_ = {
|
|
"a",
|
|
north = "â",
|
|
south = "ă",
|
|
},
|
|
_I_ = {
|
|
"I",
|
|
north = "Î",
|
|
south = "Ĭ",
|
|
},
|
|
_i_ = {
|
|
"i",
|
|
north = "î",
|
|
south = "ĭ",
|
|
},
|
|
_S_ = {
|
|
"S",
|
|
north = "Ș",
|
|
},
|
|
_s_ = {
|
|
"s",
|
|
north = "ș",
|
|
},
|
|
_T_ = {
|
|
"T",
|
|
north = "Ț",
|
|
},
|
|
_t_ = {
|
|
"t",
|
|
north = "ț",
|
|
},
|
|
_U_ = {
|
|
"U",
|
|
south = "Ŭ",
|
|
},
|
|
_u_ = {
|
|
"u",
|
|
south = "ŭ",
|
|
},
|
|
}
|