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

Unified 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: Fixed nits and presubmit warnings. Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/language_options.html
diff --git a/chrome/browser/resources/options/language_options.html b/chrome/browser/resources/options/language_options.html
index eebd29d375665afdeb1949dcc5552a1059cf7867..a520306cd4353036bb0d2fa20a9b535545cce057 100644
--- a/chrome/browser/resources/options/language_options.html
+++ b/chrome/browser/resources/options/language_options.html
@@ -41,11 +41,16 @@
dictionary pane. -->
<if expr="not is_macosx">
<div id="language-options-spellcheck" class="language-options-contents">
- <button id="language-options-spell-check-language-button"
+ <div class="checkbox" id="spellcheck-language-checkbox-container">
+ <label>
+ <input type="checkbox" id="spellcheck-language-checkbox">
+ <span i18n-content="useThisForSpellChecking"></span>
+ </label>
+ </div>
+ <button id="spellcheck-language-button"
i18n-content="useThisForSpellChecking">
</button>
- <span id="language-options-spell-check-language-message" hidden>
- </span>
+ <span id="spellcheck-language-message" hidden></span>
<span id="language-options-dictionary-downloading-message"
i18n-content="downloadingDictionary" hidden>
</span>
@@ -111,9 +116,9 @@
i18n-content="languageDictionaryOverlayTitle"></a>
</if>
<if expr="not chromeos and not is_macosx">
- <div id="spell-check-option" class="checkbox">
+ <div class="checkbox">
<label>
- <input id="enable-spell-check" pref="browser.enable_spellchecking"
+ <input id="enable-spellcheck" pref="browser.enable_spellchecking"
metric="Options_SpellCheck" type="checkbox">
<span i18n-content="enableSpellCheck"></span>
</label>

Powered by Google App Engine
This is Rietveld 408576698