Update morekeys for spanish n to forward slash

This commit is contained in:
Aleksandras Kostarevas 2024-09-23 14:34:43 +03:00
parent f795a7228e
commit 727db278ca
3 changed files with 1143 additions and 1115 deletions

View File

@ -10,7 +10,7 @@ typealias MoreKeys = List<String>
val QwertySymbols = listOf( val QwertySymbols = listOf(
"qwertyuiop".toList(), "qwertyuiop".toList(),
"asdfghjklw".toList(), "asdfghjkl".toList() + listOf("r2_e1"),
"zxcvbnm".toList() "zxcvbnm".toList()
) )
@ -43,6 +43,9 @@ private fun symsForCoord(keyCoordinate: KeyCoordinate): String {
if(centeredCol < 0) return "" if(centeredCol < 0) return ""
val letter = row.getOrNull(centeredCol) val letter = row.getOrNull(centeredCol)
if(letter == 'ñ') {
println("It's ñ")
}
return if(letter != null) { return if(letter != null) {
"!text/qwertysyms_$letter" "!text/qwertysyms_$letter"
} else { } else {

View File

@ -554,6 +554,8 @@
"v": ":", "v": ":",
"b": ";", "b": ";",
"n": "!", "n": "!",
"m": ["?", "/"] "m": ["?", "/"],
"r2_e1": "/"
} }
} }