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

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

Issue 11362063: Editing the custom spelling dictionary (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month 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 <!-- TODO(kevers): Fix format of i18n-content labels --> 9 <!-- TODO(kevers): Fix format of i18n-content labels -->
10 <div class="language-options-header"> 10 <div class="language-options-header">
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 class="language-options-contents"> 74 class="language-options-contents">
75 </div> 75 </div>
76 </if> 76 </if>
77 </div> 77 </div>
78 </if> 78 </if>
79 </div> 79 </div>
80 <div class="language-options-footer"> 80 <div class="language-options-footer">
81 <if expr="pp_ifdef('chromeos')"> 81 <if expr="pp_ifdef('chromeos')">
82 <div i18n-content="switch_input_methods_hint"></div> 82 <div i18n-content="switch_input_methods_hint"></div>
83 <div i18n-content="select_previous_input_method_hint"></div> 83 <div i18n-content="select_previous_input_method_hint"></div>
84 <button id="edit-dictionary" class="link-button standalone-link-button"
85 i18n-content="languageDictionaryOverlayTitle"></button>
84 </if> 86 </if>
85 <if expr="not pp_ifdef('chromeos') and not is_macosx"> 87 <if expr="not pp_ifdef('chromeos') and not is_macosx">
86 <div id="spell-check-option" class="checkbox"> 88 <div id="spell-check-option" class="checkbox">
87 <label> 89 <label>
88 <input id="enable-spell-check" pref="browser.enable_spellchecking" 90 <input id="enable-spell-check" pref="browser.enable_spellchecking"
89 metric="Options_SpellCheck" type="checkbox"> 91 metric="Options_SpellCheck" type="checkbox">
90 <span i18n-content="enable_spell_check"></span> 92 <span i18n-content="enable_spell_check"></span>
91 </label> 93 </label>
94 <button id="edit-dictionary" class="link-button"
95 i18n-content="languageDictionaryOverlayTitle" hidden></button>
92 </div> 96 </div>
93 <div id="auto-spell-correction-option" class="checkbox" hidden> 97 <div id="auto-spell-correction-option" class="checkbox" hidden>
94 <label> 98 <label>
95 <input id="enable-auto-spell-correction" 99 <input id="enable-auto-spell-correction"
96 pref="browser.enable_autospellcorrect" 100 pref="browser.enable_autospellcorrect"
97 metric="Options_AutoSpellCorrection" type="checkbox"> 101 metric="Options_AutoSpellCorrection" type="checkbox">
98 <span i18n-content="enable_auto_spell_correction"></span> 102 <span i18n-content="enable_auto_spell_correction"></span>
99 </label> 103 </label>
100 </div> 104 </div>
101 </if> 105 </if>
102 </div> 106 </div>
103 </div> 107 </div>
104 <div class="action-area"> 108 <div class="action-area">
105 <div class="button-strip"> 109 <div class="button-strip">
106 <button id="language-confirm" i18n-content="ok"></button> 110 <button id="language-confirm" i18n-content="ok"></button>
107 </div> 111 </div>
108 </div> 112 </div>
109 </div> 113 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698