From 04127c26fc5b4d99b41cbe53651b98bb0a39857a Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 13 Oct 2015 15:56:20 +0800 Subject: update double_pinyin_table.h --- src/storage/double_pinyin_table.h | 42 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/storage/double_pinyin_table.h b/src/storage/double_pinyin_table.h index 52af618..6129304 100644 --- a/src/storage/double_pinyin_table.h +++ b/src/storage/double_pinyin_table.h @@ -96,6 +96,20 @@ const double_pinyin_scheme_shengmu_item_t double_pinyin_zrm_sheng[] = { {NULL } /* ; */ }; +const double_pinyin_scheme_fallback_item_t double_pinyin_zrm_fallback[] = { +{"aa", "a"}, +{"ai", "ai"}, +{"an", "an"}, +{"ah", "ang"}, +{"ao", "ao"}, +{"ee", "e"}, +{"ei", "ei"}, +{"en", "en"}, +{"er", "er"}, +{"oo", "o"}, +{"ou", "ou"} +}; + const double_pinyin_scheme_yunmu_item_t double_pinyin_zrm_yun[] = { {{"a" , NULL }} /* A */, {{"ou" , NULL }} /* B */, @@ -306,6 +320,20 @@ const double_pinyin_scheme_yunmu_item_t double_pinyin_pyjj_yun[] = { {{NULL , NULL }} /* ; */ }; +const double_pinyin_scheme_fallback_item_t double_pinyin_pyjj_fallback[] = { +{"aa", "a"}, +{"as", "ai"}, +{"af", "an"}, +{"ag", "ang"}, +{"ad", "ao"}, +{"ee", "e"}, +{"ew", "ei"}, +{"er", "en"}, +{"eq", "er"}, +{"oo", "o"}, +{"op", "ou"} +}; + const double_pinyin_scheme_shengmu_item_t double_pinyin_xhe_sheng[] = { {"'" } /* A */, {"b" } /* B */, @@ -366,6 +394,20 @@ const double_pinyin_scheme_yunmu_item_t double_pinyin_xhe_yun[] = { {{NULL , NULL }} /* ; */ }; +const double_pinyin_scheme_fallback_item_t double_pinyin_xhe_fallback[] = { +{"aa", "a"}, +{"ai", "ai"}, +{"an", "an"}, +{"ah", "ang"}, +{"ao", "ao"}, +{"ee", "e"}, +{"ei", "ei"}, +{"en", "en"}, +{"er", "er"}, +{"oo", "o"}, +{"ou", "ou"} +}; + }; #endif -- cgit