mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
[UX] Keyboard popup: add T diacritics (#4905)
The Ťť is used in Czech and Slovak. The t-comma Țț is Romanian. The rest is a combination of IPA, Greek, and why not.
This commit is contained in:
@@ -12,6 +12,8 @@ local _D_ = en_popup._D_
|
||||
local _d_ = en_popup._d_
|
||||
local _S_ = en_popup._S_
|
||||
local _s_ = en_popup._s_
|
||||
local _T_ = en_popup._T_
|
||||
local _t_ = en_popup._t_
|
||||
|
||||
return {
|
||||
shiftmode_keys = {["Shift"] = true},
|
||||
@@ -25,7 +27,7 @@ return {
|
||||
{ "W", "w", "!", "1", "Ц", "ц", "(", "1", "Ä", "ä", "2", "º", },
|
||||
{ _E_, _e_, _at, "2", "У", "у", ")", "2", "Ö", "ö", "3", "¡", },
|
||||
{ "R", "r", "#", "3", "К", "к", "~", "3", "ß", "ß", "4", "¿", },
|
||||
{ "T", "t", "+", "=", "Е", "е", "Ә", "ә", "À", "à", "5", "¼", },
|
||||
{ _T_, _t_, "+", "=", "Е", "е", "Ә", "ә", "À", "à", "5", "¼", },
|
||||
{ "Y", "y", "€", "(", "Н", "н", "І", "і", "Â", "â", "6", "½", },
|
||||
{ "U", "u", "‰", ")", "Г", "г", "Ң", "ң", "Æ", "æ", "7", "¾", },
|
||||
{ "I", "i", "|", "\\", "Ш", "ш", "Ғ", "ғ", "Ü", "ü", "8", "©", },
|
||||
|
||||
@@ -133,4 +133,30 @@ return {
|
||||
"σ",
|
||||
"ς",
|
||||
},
|
||||
_T_ = {
|
||||
"T",
|
||||
north = "θ",
|
||||
northeast = "Þ",
|
||||
northwest = "Ț",
|
||||
east = "Ʈ",
|
||||
west = "Ť",
|
||||
south = "Ţ",
|
||||
southeast = "ʈ",
|
||||
southwest = "Ṭ",
|
||||
"Τ",
|
||||
"τ",
|
||||
},
|
||||
_t_ = {
|
||||
"t",
|
||||
north = "θ",
|
||||
northeast = "þ",
|
||||
northwest = "ț",
|
||||
east = "Ʈ",
|
||||
west = "ť",
|
||||
south = "ţ",
|
||||
southeast = "ʈ",
|
||||
southwest = "ṭ",
|
||||
"Τ",
|
||||
"τ",
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user