1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-12-16 05:37:51 +01:00

Transliterate "ı"

This commit is contained in:
MedusasSphinx 2022-01-10 06:06:34 +01:00 committed by Gitea
parent 795c800dd4
commit f3a491496e

View File

@ -115,6 +115,9 @@ public class LanguageUtils {
put('ř',"r"); put('ě',"e"); put('ý',"y"); put('á',"a"); put('í',"i"); put('é',"e"); put('ř',"r"); put('ě',"e"); put('ý',"y"); put('á',"a"); put('í',"i"); put('é',"e");
put('ó',"o"); put('ú',"u"); put('ů',"u"); put('ď',"d"); put('ť',"t"); put('ň',"n"); put('ó',"o"); put('ú',"u"); put('ů',"u"); put('ď',"d"); put('ť',"t"); put('ň',"n");
// Turkish
put('ı',"i");
//TODO: these must be configurable. If someone wants to transliterate cyrillic it does not mean his device has no German umlauts //TODO: these must be configurable. If someone wants to transliterate cyrillic it does not mean his device has no German umlauts
// all or nothing is really bad here // all or nothing is really bad here
} }