Make Hebrew spellchecking spellcheck Hebrew.

Bug: 19966676
Change-Id: I657d2989966804cc1b6e3b12670a2123b6f06127
main
Chieu Nguyen 2015-03-27 14:42:27 -07:00
parent f267e84548
commit 16c262abe5
2 changed files with 3 additions and 1 deletions

View File

@ -138,6 +138,8 @@ public final class AndroidSpellCheckerService extends SpellCheckerService
return "east_slavic";
case ScriptUtils.SCRIPT_GREEK:
return "greek";
case ScriptUtils.SCRIPT_HEBREW:
return "hebrew";
default:
throw new RuntimeException("Wrong script supplied: " + script);
}

View File

@ -59,7 +59,7 @@ public class ScriptUtils {
mLanguageCodeToScriptCode.put("ru", SCRIPT_CYRILLIC);
mLanguageCodeToScriptCode.put("ka", SCRIPT_GEORGIAN);
mLanguageCodeToScriptCode.put("el", SCRIPT_GREEK);
mLanguageCodeToScriptCode.put("he", SCRIPT_HEBREW);
mLanguageCodeToScriptCode.put("iw", SCRIPT_HEBREW);
mLanguageCodeToScriptCode.put("km", SCRIPT_KHMER);
mLanguageCodeToScriptCode.put("lo", SCRIPT_LAO);
mLanguageCodeToScriptCode.put("ml", SCRIPT_MALAYALAM);