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

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

Issue 1156473007: Enables the user to select multiple languages for spellchecking (UI) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
1 <div id="languagePage" class="page" hidden> 1 <div id="languagePage" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="languagePage"></h1> 3 <h1 i18n-content="languagePage"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <div id="notification"> 5 <div id="notification">
6 <span>&nbsp;</span> 6 <span>&nbsp;</span>
7 <span class="link"><span class="link-color"></span></span> 7 <span class="link"><span class="link-color"></span></span>
8 </div> 8 </div>
9 <div class="language-options-header"> 9 <div class="language-options-header">
10 <span i18n-content="addLanguageInstructions"></span> 10 <span i18n-content="addLanguageInstructions"></span>
(...skipping 23 matching lines...) Expand all
34 i18n-content="displayInThisLanguage"> 34 i18n-content="displayInThisLanguage">
35 </button> 35 </button>
36 <span class="controlled-setting-indicator"></span> 36 <span class="controlled-setting-indicator"></span>
37 <span id="language-options-ui-language-message" hidden></span> 37 <span id="language-options-ui-language-message" hidden></span>
38 </div> 38 </div>
39 </if> 39 </if>
40 <!-- Chrome uses the native OS spellchecker in OS X, so don't display the 40 <!-- Chrome uses the native OS spellchecker in OS X, so don't display the
41 dictionary pane. --> 41 dictionary pane. -->
42 <if expr="not is_macosx"> 42 <if expr="not is_macosx">
43 <div id="language-options-spellcheck" class="language-options-contents"> 43 <div id="language-options-spellcheck" class="language-options-contents">
44 <div class="checkbox"
45 id="language-options-spell-check-language-checkbox-div">
Julius 2015/06/03 21:18:38 Seems like this long id is the way to go. I did, h
46 <label>
47 <input type="checkbox"
48 id="language-options-spell-check-language-checkbox">
49 <span i18n-content="useThisForSpellChecking"></span>
50 </label>
51 </div>
44 <button id="language-options-spell-check-language-button" 52 <button id="language-options-spell-check-language-button"
45 i18n-content="useThisForSpellChecking"> 53 i18n-content="useThisForSpellChecking">
46 </button> 54 </button>
47 <span id="language-options-spell-check-language-message" hidden> 55 <span id="language-options-spell-check-language-message" hidden>
48 </span> 56 </span>
49 <span id="language-options-dictionary-downloading-message" 57 <span id="language-options-dictionary-downloading-message"
50 i18n-content="downloadingDictionary" hidden> 58 i18n-content="downloadingDictionary" hidden>
51 </span> 59 </span>
52 </div> 60 </div>
53 <div id="language-options-dictionary-download-failed-message" 61 <div id="language-options-dictionary-download-failed-message"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 </if> 139 </if>
132 </div> 140 </div>
133 </div> 141 </div>
134 <div class="action-area"> 142 <div class="action-area">
135 <div class="button-strip"> 143 <div class="button-strip">
136 <button id="language-confirm" class="default-button" i18n-content="done"> 144 <button id="language-confirm" class="default-button" i18n-content="done">
137 </button> 145 </button>
138 </div> 146 </div>
139 </div> 147 </div>
140 </div> 148 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698