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

Side by Side Diff: chrome/browser/resources/options/chromeos/language_chewing_options.html

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id="languageChewingPage" class="page" hidden>
2 <h1 i18n-content="languageChewingPage"></h1>
3 <section>
4 <table class="option-control-table">
5 <tr>
6 <td class="option-name" colspan="2">
7 <div class="checkbox">
8 <label>
9 <input id="chewing-auto-shift-cur" type="checkbox"
10 pref="settings.language.chewing_auto_shift_cur">
11 <span i18n-content="Chewing_autoShiftCur"></span>
12 </label>
13 </div>
14 </td>
15 </tr>
16 <tr>
17 <td class="option-name" colspan="2">
18 <div class="checkbox">
19 <label>
20 <input id="chewing-add-phrase-direction" type="checkbox"
21 pref="settings.language.chewing_add_phrase_direction">
22 <span i18n-content="Chewing_addPhraseDirection"></span>
23 </label>
24 </div>
25 </td>
26 </tr>
27 <!-- Temporarily disabled. (crosbug.com/14185)
28 <tr>
29 <td class="option-name" colspan="2">
30 <div class="checkbox">
31 <label>
32 <input id="chewing-easy-symbol-input" type="checkbox"
33 pref="settings.language.chewing_easy_symbol_input">
34 <span i18n-content="Chewing_easySymbolInput"></span>
35 </label>
36 </div>
37 </td>
38 </tr>
39 -->
40 <tr>
41 <td class="option-name" colspan="2">
42 <div class="checkbox">
43 <label>
44 <input id="chewing-esc-clean-all-buf" type="checkbox"
45 pref="settings.language.chewing_esc_clean_all_buf">
46 <span i18n-content="Chewing_escCleanAllBuf"></span>
47 </label>
48 </div>
49 </td>
50 </tr>
51 <tr>
52 <td class="option-name" colspan="2">
53 <div class="checkbox">
54 <label>
55 <input id="chewing-force-lowercase-english" type="checkbox"
56 pref="settings.language.chewing_force_lowercase_english">
57 <span i18n-content="Chewing_forceLowercaseEnglish"></span>
58 </label>
59 </div>
60 </td>
61 </tr>
62 <!-- Temporarily disabled. (crosbug.com/14185)
63 <tr>
64 <td class="option-name" colspan="2">
65 <div class="checkbox">
66 <label>
67 <input id="chewing-plain-zhuyin" type="checkbox"
68 pref="settings.language.chewing_plain_zhuyin">
69 <span i18n-content="Chewing_plainZhuyin"></span>
70 </label>
71 </div>
72 </td>
73 </tr>
74 -->
75 <tr>
76 <td class="option-name" colspan="2">
77 <div class="checkbox">
78 <label>
79 <input id="chewing-phrase-choice-rearward" type="checkbox"
80 pref="settings.language.chewing_phrase_choice_rearward">
81 <span i18n-content="Chewing_phraseChoiceRearward"></span>
82 </label>
83 </div>
84 </td>
85 </tr>
86 <tr>
87 <td class="option-name" colspan="2">
88 <div class="checkbox">
89 <label>
90 <input id="chewing-space-as-selection" type="checkbox"
91 pref="settings.language.chewing_space_as_selection">
92 <span i18n-content="Chewing_spaceAsSelection"></span>
93 </label>
94 </div>
95 </td>
96 </tr>
97 <tr>
98 <td class="option-name" i18n-content="Chewing_maxChiSymbolLen"></td>
99 <td class="option-value">
100 <input id="chewing-max-chi-symbol-len" class="control" type="range"
101 pref="settings.language.chewing_max_chi_symbol_len"
102 i18n-values="min:Chewing_maxChiSymbolLenMin;
103 max:Chewing_maxChiSymbolLenMax">
104 <span id="chewing-max-chi-symbol-len-value"></span>
105 </td>
106 </tr>
107 <tr>
108 <td class="option-name" i18n-content="Chewing_candPerPage"></td>
109 <td class="option-value">
110 <select id="chewing-cand-per-page" class="control" data-type="number"
111 pref="settings.language.chewing_cand_per_page"
112 i18n-options="Chewing_candPerPageValue"></select>
113 </td>
114 </tr>
115 <tr>
116 <td class="option-name" i18n-content="Chewing_KBType"></td>
117 <td class="option-value">
118 <select id="chewing-keyboard-type" class="control" data-type="string"
119 pref="settings.language.chewing_keyboard_type"
120 i18n-options="Chewing_KBTypeValue"></select>
121 </td>
122 </tr>
123 <tr>
124 <td class="option-name" i18n-content="Chewing_selKeys"></td>
125 <td class="option-value">
126 <select id="chewing-sel-keys" class="control" data-type="string"
127 pref="settings.language.chewing_sel_keys"
128 i18n-options="Chewing_selKeysValue"></select>
129 </td>
130 </tr>
131 <tr>
132 <td class="option-name" i18n-content="Chewing_hsuSelKeyType"></td>
133 <td class="option-value">
134 <select id="chewing-sel-key-type" class="control" data-type="number"
135 pref="settings.language.chewing_hsu_sel_key_type"
136 i18n-options="Chewing_hsuSelKeyTypeValue"></select>
137 </td>
138 </tr>
139 </table>
140 </section>
141 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698