diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 03:27:30 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 03:27:30 +0000 |
commit | 2ddba42fcc49bf497fd22d6458e40ffb8803acf1 (patch) | |
tree | 73f3fcc7264eede7c559d538b36f5abfef788d13 /chrome/browser/resources | |
parent | 17d6c0481d767575a62c9d5ea4d5c8272304e7fb (diff) | |
download | chromium_src-2ddba42fcc49bf497fd22d6458e40ffb8803acf1.zip chromium_src-2ddba42fcc49bf497fd22d6458e40ffb8803acf1.tar.gz chromium_src-2ddba42fcc49bf497fd22d6458e40ffb8803acf1.tar.bz2 |
Add Simplified Chinese (Pinyin) input method DOMUI configuration.
Move utility functions into a header file (currently chewing and pinyin
are the customers).
TEST=manually check on the netbook by uncommenting TODO lines.
BUG=chromium-os:4808
Review URL: http://codereview.chromium.org/3015028
Patch from Takayoshi Kochi <kochi@chromium.org>.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53753 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/options/chromeos_language_pinyin_options.html | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/chrome/browser/resources/options/chromeos_language_pinyin_options.html b/chrome/browser/resources/options/chromeos_language_pinyin_options.html index b4ca720..a83d49b 100644 --- a/chrome/browser/resources/options/chromeos_language_pinyin_options.html +++ b/chrome/browser/resources/options/chromeos_language_pinyin_options.html @@ -1,3 +1,111 @@ <div class="page hidden" id="languagePinyinPage"> <h1 i18n-content="languagePinyinPage"></h1> + <section> + <table class="option-control-table"> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-correct-pinyin" + pref="settings.language.pinyin_correct_pinyin" + type="checkbox"> + <span i18n-content="CorrectPinyinContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-fuzzy-pinyin" + pref="settings.language.pinyin_fuzzy_pinyin" + type="checkbox"> + <span i18n-content="FuzzyPinyinContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-shift-select-candidate" + pref="settings.language.pinyin_shift_select_candidate" + type="checkbox"> + <span i18n-content="ShiftSelectCandidateContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-minus-equal-page" + pref="settings.language.pinyin_minus_equal_page" + type="checkbox"> + <span i18n-content="MinusEqualPageContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-comma-period-page" + pref="settings.language.pinyin_comma_period_page" + type="checkbox"> + <span i18n-content="CommaPeriodPageContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-auto-commit" + pref="settings.language.pinyin_auto_commit" + type="checkbox"> + <span i18n-content="AutoCommitContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-double-pinyin" + pref="settings.language.pinyin_double_pinyin" + type="checkbox"> + <span i18n-content="DoublePinyinContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-init-chinese" + pref="settings.language.pinyin_init_chinese" + type="checkbox"> + <span i18n-content="InitChineseContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-init-full" + pref="settings.language.pinyin_init_full" + type="checkbox"> + <span i18n-content="InitFullContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-init-full-punct" + pref="settings.language.pinyin_init_full_punct" + type="checkbox"> + <span i18n-content="InitFullPunctContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-init-simplified-chinese" + pref="settings.language.pinyin_init_simplified_chinese" + type="checkbox"> + <span i18n-content="InitSimplifiedChineseContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" colspan="2"><label><input + id="pinyin-trad-candidate" + pref="settings.language.pinyin_trad_candidate" + type="checkbox"> + <span i18n-content="TradCandidateContent"></span></label> + </td> + </tr> + <tr> + <td class="option-name" i18n-content="DoublePinyinSchemaContent"></td> + <td class="option-value"> + <select id="pinyin-double-pinyin-schema" class="control" + pref="settings.language.pinyin_double_pinyin_schema" + data-values="DoublePinyinSchemaValue"></select> + </td> + </tr> + </table> + </section> </div> |