Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Unified Diff: chrome/browser/resources/options2/chromeos/language_chewing_options.html

Issue 8895023: Options2: Pull the trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DIAF. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options2/chromeos/language_chewing_options.html
diff --git a/chrome/browser/resources/options2/chromeos/language_chewing_options.html b/chrome/browser/resources/options2/chromeos/language_chewing_options.html
new file mode 100644
index 0000000000000000000000000000000000000000..f21e603fe83a14eb547cf16654511fa127d8ddd4
--- /dev/null
+++ b/chrome/browser/resources/options2/chromeos/language_chewing_options.html
@@ -0,0 +1,141 @@
+<div id="languageChewingPage" class="page" hidden>
+ <h1 i18n-content="languageChewingPage"></h1>
+ <section>
+ <table class="option-control-table">
+ <tr>
+ <td class="option-name" colspan="2">
+ <div class="checkbox">
+ <label>
+ <input id="chewing-auto-shift-cur" type="checkbox"
+ pref="settings.language.chewing_auto_shift_cur">
+ <span i18n-content="Chewing_autoShiftCur"></span>
+ </label>
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" colspan="2">
+ <div class="checkbox">
+ <label>
+ <input id="chewing-add-phrase-direction" type="checkbox"
+ pref="settings.language.chewing_add_phrase_direction">
+ <span i18n-content="Chewing_addPhraseDirection"></span>
+ </label>
+ </div>
+ </td>
+ </tr>
+ <!-- Temporarily disabled. (crosbug.com/14185)
+ <tr>
+ <td class="option-name" colspan="2">
+ <div class="checkbox">
+ <label>
+ <input id="chewing-easy-symbol-input" type="checkbox"
+ pref="settings.language.chewing_easy_symbol_input">
+ <span i18n-content="Chewing_easySymbolInput"></span>
+ </label>
+ </div>
+ </td>
+ </tr>
+ -->
+ <tr>
+ <td class="option-name" colspan="2">
+ <div class="checkbox">
+ <label>
+ <input id="chewing-esc-clean-all-buf" type="checkbox"
+ pref="settings.language.chewing_esc_clean_all_buf">
+ <span i18n-content="Chewing_escCleanAllBuf"></span>
+ </label>
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" colspan="2">
+ <div class="checkbox">
+ <label>
+ <input id="chewing-force-lowercase-english" type="checkbox"
+ pref="settings.language.chewing_force_lowercase_english">
+ <span i18n-content="Chewing_forceLowercaseEnglish"></span>
+ </label>
+ </div>
+ </td>
+ </tr>
+ <!-- Temporarily disabled. (crosbug.com/14185)
+ <tr>
+ <td class="option-name" colspan="2">
+ <div class="checkbox">
+ <label>
+ <input id="chewing-plain-zhuyin" type="checkbox"
+ pref="settings.language.chewing_plain_zhuyin">
+ <span i18n-content="Chewing_plainZhuyin"></span>
+ </label>
+ </div>
+ </td>
+ </tr>
+ -->
+ <tr>
+ <td class="option-name" colspan="2">
+ <div class="checkbox">
+ <label>
+ <input id="chewing-phrase-choice-rearward" type="checkbox"
+ pref="settings.language.chewing_phrase_choice_rearward">
+ <span i18n-content="Chewing_phraseChoiceRearward"></span>
+ </label>
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" colspan="2">
+ <div class="checkbox">
+ <label>
+ <input id="chewing-space-as-selection" type="checkbox"
+ pref="settings.language.chewing_space_as_selection">
+ <span i18n-content="Chewing_spaceAsSelection"></span>
+ </label>
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" i18n-content="Chewing_maxChiSymbolLen"></td>
+ <td class="option-value">
+ <input id="chewing-max-chi-symbol-len" class="control" type="range"
+ pref="settings.language.chewing_max_chi_symbol_len"
+ i18n-values="min:Chewing_maxChiSymbolLenMin;
+ max:Chewing_maxChiSymbolLenMax">
+ <span id="chewing-max-chi-symbol-len-value"></span>
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" i18n-content="Chewing_candPerPage"></td>
+ <td class="option-value">
+ <select id="chewing-cand-per-page" class="control" data-type="number"
+ pref="settings.language.chewing_cand_per_page"
+ i18n-options="Chewing_candPerPageValue"></select>
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" i18n-content="Chewing_KBType"></td>
+ <td class="option-value">
+ <select id="chewing-keyboard-type" class="control" data-type="string"
+ pref="settings.language.chewing_keyboard_type"
+ i18n-options="Chewing_KBTypeValue"></select>
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" i18n-content="Chewing_selKeys"></td>
+ <td class="option-value">
+ <select id="chewing-sel-keys" class="control" data-type="string"
+ pref="settings.language.chewing_sel_keys"
+ i18n-options="Chewing_selKeysValue"></select>
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" i18n-content="Chewing_hsuSelKeyType"></td>
+ <td class="option-value">
+ <select id="chewing-sel-key-type" class="control" data-type="number"
+ pref="settings.language.chewing_hsu_sel_key_type"
+ i18n-options="Chewing_hsuSelKeyTypeValue"></select>
+ </td>
+ </tr>
+ </table>
+ </section>
+</div>

Powered by Google App Engine
This is Rietveld 408576698