Transliteration: capitalized just the first letter in the replacement text

here
ivanovlev 2017-02-04 09:53:07 +03:00
parent cc917e97a6
commit fd61dc602f
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
package nodomain.freeyourgadget.gadgetbridge.util;
import org.apache.commons.lang3.text.WordUtils;
import java.util.HashMap;
import java.util.Map;
import java.text.Normalizer;
@ -67,7 +69,7 @@ public class LanguageUtils {
if (lowerChar != c)
{
return replace.toUpperCase();
return WordUtils.capitalize(replace);
}
return replace;