1
0
Fork 0

Add Hungarian (#509)

---------

Co-authored-by: agyarmati <agyarmati@surfline.com>
Co-authored-by: sspanak <doftor.livain@gmail.com>
This commit is contained in:
Adam Gyarmati 2024-05-21 07:34:44 -06:00 committed by GitHub
parent a6c81a764d
commit 9a13272fdc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 709905 additions and 1 deletions

View file

@ -113,7 +113,7 @@ public class SoftNumberKey extends SoftKey {
StringBuilder sb = new StringBuilder();
ArrayList<String> chars = language.getKeyCharacters(number);
for (int i = 0; i < 5 && i < chars.size(); i++) {
for (int i = 0; sb.length() < 5 && i < chars.size(); i++) {
String currentLetter = chars.get(i);
if (
(isLatinBased && currentLetter.charAt(0) > 'z')