Merge "Make Hebrew spellchecking spellcheck Hebrew."

main
Chieu Nguyen 2015-03-27 21:46:32 +00:00 committed by Android (Google) Code Review
commit d7f6fae985
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);