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

Side by Side Diff: chrome/browser/resources/options/language_options.html

Issue 6296017: dom-ui settings: enable languages & spell checker settings for all platforms.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: code review tweak Created 9 years, 11 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
1 <div class="page hidden" id="languagePage"> 1 <div class="page hidden" id="languagePage">
2 <h1 i18n-content="languagePage"></h1> 2 <h1 i18n-content="languagePage"></h1>
3 <div id="notification"> 3 <div id="notification">
4 <span>&nbsp;</span> 4 <span>&nbsp;</span>
5 <span class="link"><span class="link-color"></span></span> 5 <span class="link"><span class="link-color"></span></span>
6 </div> 6 </div>
7 <div class="language-options-header"> 7 <div class="language-options-header">
8 <div i18n-content="add_language_instructions"></div> 8 <div i18n-content="add_language_instructions"></div>
9 <if expr="pp_ifdef('chromeos')">
9 <div i18n-content="input_method_instructions"></div> 10 <div i18n-content="input_method_instructions"></div>
11 </if>
10 </div> 12 </div>
11 <div class="language-options"> 13 <div class="language-options">
12 <div class="language-options-left"> 14 <div class="language-options-left">
13 <h3 i18n-content="languages"></h3> 15 <h3 i18n-content="languages"></h3>
14 <list id="language-options-list"></list> 16 <list id="language-options-list"></list>
15 <div class="language-options-lower-left"> 17 <div class="language-options-lower-left">
16 <button id="language-options-add-button" 18 <button id="language-options-add-button"
17 i18n-content="add_button"></button> 19 i18n-content="add_button"></button>
18 <button id="language-options-remove-button" 20 <button id="language-options-remove-button"
19 i18n-content="remove_button"></button> 21 i18n-content="remove_button"></button>
20 </div> 22 </div>
21 </div> 23 </div>
22 <div class="language-options-right"> 24 <div class="language-options-right">
23 <h3 id="language-options-language-name"></h3> 25 <h3 id="language-options-language-name"></h3>
26 <if expr="os != 'darwin'">
24 <div class="language-options-contents"> 27 <div class="language-options-contents">
25 <button id="language-options-ui-language-button"></button> 28 <button id="language-options-ui-language-button"></button>
26 </div> 29 </div>
30 </if>
27 <div class="language-options-contents"> 31 <div class="language-options-contents">
28 <button id="language-options-spell-check-language-button"></button> 32 <button id="language-options-spell-check-language-button"></button>
29 </div> 33 </div>
30 <div id="language-options-ui-notification-bar" 34 <div id="language-options-ui-notification-bar"
31 class="language-options-notification"> 35 class="language-options-notification">
32 <div i18n-content="sign_out_required"></div> 36 <div i18n-content="restart_required"></div>
33 <button id="language-options-ui-sign-out-button" 37 <button id="language-options-ui-restart-button"
34 i18n-content="sign_out_button"></button> 38 i18n-content="restart_button"></button>
35 </div> 39 </div>
40 <if expr="pp_ifdef('chromeos')">
36 <h3 i18n-content="input_method"></h3> 41 <h3 i18n-content="input_method"></h3>
37 <div id="language-options-input-method-list" 42 <div id="language-options-input-method-list"
38 class="language-options-contents"> 43 class="language-options-contents">
39 </div> 44 </div>
45 </if>
40 </div> 46 </div>
41 </div> 47 </div>
42 <div class="language-options-footer"> 48 <div class="language-options-footer">
49 <if expr="pp_ifdef('chromeos')">
43 <div i18n-content="switch_input_methods_hint"></div> 50 <div i18n-content="switch_input_methods_hint"></div>
44 <div i18n-content="select_previous_input_method_hint"></div> 51 <div i18n-content="select_previous_input_method_hint"></div>
52 </if>
53 <if expr="not pp_ifdef('chromeos')">
54 <div id="spell-check-option">
55 <label class="checkbox">
56 <input id="enable-spell-check" pref="browser.enable_spellchecking"
57 metric="Options_SpellCheck" type="checkbox">
58 <span i18n-content="enable_spell_check"></span>
59 </label>
60 </div>
61 <div id="auto-spell-correction-option" class="hidden">
62 <label class="checkbox">
63 <input id="enable-auto-spell-correction"
64 pref="browser.enable_autospellcorrect"
65 metric="Options_AutoSpellCorrection" type="checkbox">
66 <span i18n-content="enable_auto_spell_correction"></span>
67 </label>
68 </div>
69 </if>
45 </div> 70 </div>
46 </div> 71 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/language_options.css ('k') | chrome/browser/resources/options/language_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698