OLD | NEW |
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> </span> | 6 <span> </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 Loading... |
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 <button id="language-options-spell-check-language-button" | 44 <div class="checkbox" id="spellcheck-language-checkbox-container"> |
| 45 <label> |
| 46 <input type="checkbox" id="spellcheck-language-checkbox"> |
| 47 <span i18n-content="useThisForSpellChecking"></span> |
| 48 </label> |
| 49 </div> |
| 50 <button id="spellcheck-language-button" |
45 i18n-content="useThisForSpellChecking"> | 51 i18n-content="useThisForSpellChecking"> |
46 </button> | 52 </button> |
47 <span id="language-options-spell-check-language-message" hidden> | 53 <span id="spellcheck-language-message" hidden></span> |
48 </span> | |
49 <span id="language-options-dictionary-downloading-message" | 54 <span id="language-options-dictionary-downloading-message" |
50 i18n-content="downloadingDictionary" hidden> | 55 i18n-content="downloadingDictionary" hidden> |
51 </span> | 56 </span> |
52 </div> | 57 </div> |
53 <div id="language-options-dictionary-download-failed-message" | 58 <div id="language-options-dictionary-download-failed-message" |
54 class="language-options-notification" hidden> | 59 class="language-options-notification" hidden> |
55 <div i18n-content="downloadFailed"></div> | 60 <div i18n-content="downloadFailed"></div> |
56 <div id="language-options-dictionary-download-fail-help-message" | 61 <div id="language-options-dictionary-download-fail-help-message" |
57 i18n-content="downloadFailHelp" hidden> | 62 i18n-content="downloadFailHelp" hidden> |
58 </div> | 63 </div> |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 </div> | 109 </div> |
105 <div class="language-options-footer"> | 110 <div class="language-options-footer"> |
106 <if expr="chromeos"> | 111 <if expr="chromeos"> |
107 <div i18n-content="switchInputMethodsHint"></div> | 112 <div i18n-content="switchInputMethodsHint"></div> |
108 <div i18n-content="selectPreviousInputMethodHint"></div> | 113 <div i18n-content="selectPreviousInputMethodHint"></div> |
109 <a is="action-link" id="edit-dictionary-button" | 114 <a is="action-link" id="edit-dictionary-button" |
110 class="standalone-action-link" | 115 class="standalone-action-link" |
111 i18n-content="languageDictionaryOverlayTitle"></a> | 116 i18n-content="languageDictionaryOverlayTitle"></a> |
112 </if> | 117 </if> |
113 <if expr="not chromeos and not is_macosx"> | 118 <if expr="not chromeos and not is_macosx"> |
114 <div id="spell-check-option" class="checkbox"> | 119 <div class="checkbox"> |
115 <label> | 120 <label> |
116 <input id="enable-spell-check" pref="browser.enable_spellchecking" | 121 <input id="enable-spellcheck" pref="browser.enable_spellchecking" |
117 metric="Options_SpellCheck" type="checkbox"> | 122 metric="Options_SpellCheck" type="checkbox"> |
118 <span i18n-content="enableSpellCheck"></span> | 123 <span i18n-content="enableSpellCheck"></span> |
119 </label> | 124 </label> |
120 <a is="action-link" id="edit-dictionary-button" | 125 <a is="action-link" id="edit-dictionary-button" |
121 i18n-content="languageDictionaryOverlayTitle" hidden></a> | 126 i18n-content="languageDictionaryOverlayTitle" hidden></a> |
122 </div> | 127 </div> |
123 <div id="auto-spell-correction-option" class="checkbox" hidden> | 128 <div id="auto-spell-correction-option" class="checkbox" hidden> |
124 <label> | 129 <label> |
125 <input id="enable-auto-spell-correction" | 130 <input id="enable-auto-spell-correction" |
126 pref="browser.enable_autospellcorrect" | 131 pref="browser.enable_autospellcorrect" |
127 metric="Options_AutoSpellCorrection" type="checkbox"> | 132 metric="Options_AutoSpellCorrection" type="checkbox"> |
128 <span i18n-content="enableAutoSpellCorrection"></span> | 133 <span i18n-content="enableAutoSpellCorrection"></span> |
129 </label> | 134 </label> |
130 </div> | 135 </div> |
131 </if> | 136 </if> |
132 </div> | 137 </div> |
133 </div> | 138 </div> |
134 <div class="action-area"> | 139 <div class="action-area"> |
135 <div class="button-strip"> | 140 <div class="button-strip"> |
136 <button id="language-confirm" class="default-button" i18n-content="done"> | 141 <button id="language-confirm" class="default-button" i18n-content="done"> |
137 </button> | 142 </button> |
138 </div> | 143 </div> |
139 </div> | 144 </div> |
140 </div> | 145 </div> |
OLD | NEW |