| OLD | NEW |
| 1 <div class="page hidden" id="languagePage"> | 1 <div class="page hidden" id="languagePage"> |
| 2 <h1 i18n-content="languagePage"></h1> | 2 <h1 i18n-content="languagePage"></h1> |
| 3 <div id="notification"> | 3 <div id="notification"> |
| 4 <span> </span> | 4 <span> </span> |
| 5 <span class="link"><span class="link-color"></span></span> | 5 <span class="link"><span class="link-color"></span></span> |
| 6 </div> | 6 </div> |
| 7 <div class="language-options-header"> | 7 <div class="language-options-header"> |
| 8 <div i18n-content="add_language_instructions"></div> | 8 <div i18n-content="add_language_instructions"></div> |
| 9 <if expr="pp_ifdef('chromeos')"> | 9 <if expr="pp_ifdef('chromeos')"> |
| 10 <div i18n-content="input_method_instructions"></div> | 10 <div i18n-content="input_method_instructions"></div> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 </div> | 44 </div> |
| 45 </if> | 45 </if> |
| 46 </div> | 46 </div> |
| 47 </div> | 47 </div> |
| 48 <div class="language-options-footer"> | 48 <div class="language-options-footer"> |
| 49 <if expr="pp_ifdef('chromeos')"> | 49 <if expr="pp_ifdef('chromeos')"> |
| 50 <div i18n-content="switch_input_methods_hint"></div> | 50 <div i18n-content="switch_input_methods_hint"></div> |
| 51 <div i18n-content="select_previous_input_method_hint"></div> | 51 <div i18n-content="select_previous_input_method_hint"></div> |
| 52 </if> | 52 </if> |
| 53 <if expr="not pp_ifdef('chromeos')"> | 53 <if expr="not pp_ifdef('chromeos')"> |
| 54 <div id="spell-check-option"> | 54 <div id="spell-check-option" class="checkbox"> |
| 55 <label class="checkbox"> | 55 <label> |
| 56 <input id="enable-spell-check" pref="browser.enable_spellchecking" | 56 <input id="enable-spell-check" pref="browser.enable_spellchecking" |
| 57 metric="Options_SpellCheck" type="checkbox"> | 57 metric="Options_SpellCheck" type="checkbox"> |
| 58 <span i18n-content="enable_spell_check"></span> | 58 <span i18n-content="enable_spell_check"></span> |
| 59 </label> | 59 </label> |
| 60 </div> | 60 </div> |
| 61 <div id="auto-spell-correction-option" class="hidden"> | 61 <div id="auto-spell-correction-option" class="hidden" class="checkbox"> |
| 62 <label class="checkbox"> | 62 <label> |
| 63 <input id="enable-auto-spell-correction" | 63 <input id="enable-auto-spell-correction" |
| 64 pref="browser.enable_autospellcorrect" | 64 pref="browser.enable_autospellcorrect" |
| 65 metric="Options_AutoSpellCorrection" type="checkbox"> | 65 metric="Options_AutoSpellCorrection" type="checkbox"> |
| 66 <span i18n-content="enable_auto_spell_correction"></span> | 66 <span i18n-content="enable_auto_spell_correction"></span> |
| 67 </label> | 67 </label> |
| 68 </div> | 68 </div> |
| 69 </if> | 69 </if> |
| 70 </div> | 70 </div> |
| 71 </div> | 71 </div> |
| OLD | NEW |