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

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

Issue 1523593002: Add an option in language settings for activating the IME menu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 </if> 107 </if>
108 </div> 108 </div>
109 </div> 109 </div>
110 <div class="language-options-footer"> 110 <div class="language-options-footer">
111 <if expr="chromeos"> 111 <if expr="chromeos">
112 <div i18n-content="switchInputMethodsHint"></div> 112 <div i18n-content="switchInputMethodsHint"></div>
113 <div i18n-content="selectPreviousInputMethodHint"></div> 113 <div i18n-content="selectPreviousInputMethodHint"></div>
114 <a is="action-link" id="edit-custom-dictionary-button" 114 <a is="action-link" id="edit-custom-dictionary-button"
115 class="standalone-action-link" 115 class="standalone-action-link"
116 i18n-content="languageDictionaryOverlayTitle"></a> 116 i18n-content="languageDictionaryOverlayTitle"></a>
117 <div>
118 <label>
119 <input type="checkbox" id="activate-system-ime-menu">
120 <span i18n-content="activateSystemImeMenu"></span>
121 </label>
122 </div>
117 </if> 123 </if>
118 <if expr="not chromeos and not is_macosx"> 124 <if expr="not chromeos and not is_macosx">
119 <div class="checkbox"> 125 <div class="checkbox">
120 <label id="enable-spellcheck-container"> 126 <label id="enable-spellcheck-container">
121 <input id="enable-spellcheck" pref="browser.enable_spellchecking" 127 <input id="enable-spellcheck" pref="browser.enable_spellchecking"
122 metric="Options_SpellCheck" type="checkbox"> 128 metric="Options_SpellCheck" type="checkbox">
123 <span i18n-content="enableSpellCheck"></span> 129 <span i18n-content="enableSpellCheck"></span>
124 </label> 130 </label>
125 <a is="action-link" id="edit-custom-dictionary-button" 131 <a is="action-link" id="edit-custom-dictionary-button"
126 i18n-content="languageDictionaryOverlayTitle" hidden></a> 132 i18n-content="languageDictionaryOverlayTitle" hidden></a>
127 </div> 133 </div>
128 </if> 134 </if>
129 </div> 135 </div>
130 </div> 136 </div>
131 <div class="action-area"> 137 <div class="action-area">
132 <div class="button-strip"> 138 <div class="button-strip">
133 <button id="language-confirm" class="default-button" i18n-content="done"> 139 <button id="language-confirm" class="default-button" i18n-content="done">
134 </button> 140 </button>
135 </div> 141 </div>
136 </div> 142 </div>
137 </div> 143 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698