OLD | NEW |
(Empty) | |
| 1 <div id="languagePage" class="page" hidden> |
| 2 <h1 i18n-content="languagePage"></h1> |
| 3 <div id="notification"> |
| 4 <span> </span> |
| 5 <span class="link"><span class="link-color"></span></span> |
| 6 </div> |
| 7 <div class="language-options-header"> |
| 8 <div i18n-content="add_language_instructions"></div> |
| 9 <if expr="pp_ifdef('chromeos')"> |
| 10 <div i18n-content="input_method_instructions"></div> |
| 11 </if> |
| 12 </div> |
| 13 <div class="language-options"> |
| 14 <div class="language-options-left"> |
| 15 <h3 i18n-content="languages"></h3> |
| 16 <list id="language-options-list"></list> |
| 17 <div class="language-options-lower-left"> |
| 18 <button id="language-options-add-button" |
| 19 i18n-content="add_button"></button> |
| 20 </div> |
| 21 <div id="language-options-list-dropmarker"></div> |
| 22 </div> |
| 23 <div class="language-options-right"> |
| 24 <h3 id="language-options-language-name"></h3> |
| 25 <if expr="os == 'win32' or pp_ifdef('chromeos')"> |
| 26 <div class="language-options-contents"> |
| 27 <button id="language-options-ui-language-button"></button> |
| 28 </div> |
| 29 </if> |
| 30 <div class="language-options-contents"> |
| 31 <button id="language-options-spell-check-language-button"></button> |
| 32 </div> |
| 33 <div id="language-options-ui-notification-bar" |
| 34 class="language-options-notification"> |
| 35 <div i18n-content="restart_required"></div> |
| 36 <if expr="pp_ifdef('chromeos')"> |
| 37 <button id="language-options-ui-restart-button" |
| 38 i18n-content="restart_button"></button> |
| 39 </if> |
| 40 </div> |
| 41 <if expr="pp_ifdef('chromeos')"> |
| 42 <h3 i18n-content="input_method"></h3> |
| 43 <div id="language-options-input-method-list" |
| 44 class="language-options-contents"> |
| 45 </div> |
| 46 </if> |
| 47 <if expr="pp_ifdef('chromeos') and pp_ifdef('use_virtual_keyboard')"> |
| 48 <div class="language-options-contents"> |
| 49 <button id="language-options-virtual-keyboard" |
| 50 i18n-content="virtual_keyboard_button"></button> |
| 51 </div> |
| 52 </if> |
| 53 </div> |
| 54 </div> |
| 55 <div class="language-options-footer"> |
| 56 <if expr="pp_ifdef('chromeos')"> |
| 57 <div i18n-content="switch_input_methods_hint"></div> |
| 58 <div i18n-content="select_previous_input_method_hint"></div> |
| 59 </if> |
| 60 <if expr="not pp_ifdef('chromeos') and not is_macosx"> |
| 61 <div id="spell-check-option" class="checkbox"> |
| 62 <label> |
| 63 <input id="enable-spell-check" pref="browser.enable_spellchecking" |
| 64 metric="Options_SpellCheck" type="checkbox"> |
| 65 <span i18n-content="enable_spell_check"></span> |
| 66 </label> |
| 67 </div> |
| 68 <div id="auto-spell-correction-option" class="checkbox" hidden> |
| 69 <label> |
| 70 <input id="enable-auto-spell-correction" |
| 71 pref="browser.enable_autospellcorrect" |
| 72 metric="Options_AutoSpellCorrection" type="checkbox"> |
| 73 <span i18n-content="enable_auto_spell_correction"></span> |
| 74 </label> |
| 75 </div> |
| 76 </if> |
| 77 </div> |
| 78 </div> |
OLD | NEW |