| OLD | NEW |
| 1 <div id="languagePage" class="page" hidden> | 1 <div id="languagePage" class="page" hidden> |
| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 i18n-content="virtual_keyboard_button"></button> | 50 i18n-content="virtual_keyboard_button"></button> |
| 51 </div> | 51 </div> |
| 52 </if> | 52 </if> |
| 53 </div> | 53 </div> |
| 54 </div> | 54 </div> |
| 55 <div class="language-options-footer"> | 55 <div class="language-options-footer"> |
| 56 <if expr="pp_ifdef('chromeos')"> | 56 <if expr="pp_ifdef('chromeos')"> |
| 57 <div i18n-content="switch_input_methods_hint"></div> | 57 <div i18n-content="switch_input_methods_hint"></div> |
| 58 <div i18n-content="select_previous_input_method_hint"></div> | 58 <div i18n-content="select_previous_input_method_hint"></div> |
| 59 </if> | 59 </if> |
| 60 <if expr="not pp_ifdef('chromeos')"> | 60 <if expr="not pp_ifdef('chromeos') and not is_macosx"> |
| 61 <div id="spell-check-option" class="checkbox"> | 61 <div id="spell-check-option" class="checkbox"> |
| 62 <label> | 62 <label> |
| 63 <input id="enable-spell-check" pref="browser.enable_spellchecking" | 63 <input id="enable-spell-check" pref="browser.enable_spellchecking" |
| 64 metric="Options_SpellCheck" type="checkbox"> | 64 metric="Options_SpellCheck" type="checkbox"> |
| 65 <span i18n-content="enable_spell_check"></span> | 65 <span i18n-content="enable_spell_check"></span> |
| 66 </label> | 66 </label> |
| 67 </div> | 67 </div> |
| 68 <div id="auto-spell-correction-option" class="checkbox" hidden> | 68 <div id="auto-spell-correction-option" class="checkbox" hidden> |
| 69 <label> | 69 <label> |
| 70 <input id="enable-auto-spell-correction" | 70 <input id="enable-auto-spell-correction" |
| 71 pref="browser.enable_autospellcorrect" | 71 pref="browser.enable_autospellcorrect" |
| 72 metric="Options_AutoSpellCorrection" type="checkbox"> | 72 metric="Options_AutoSpellCorrection" type="checkbox"> |
| 73 <span i18n-content="enable_auto_spell_correction"></span> | 73 <span i18n-content="enable_auto_spell_correction"></span> |
| 74 </label> | 74 </label> |
| 75 </div> | 75 </div> |
| 76 </if> | 76 </if> |
| 77 </div> | 77 </div> |
| 78 </div> | 78 </div> |
| OLD | NEW |