| OLD | NEW |
| 1 <div id="keyboard-overlay" class="page" hidden> | 1 <div id="keyboard-overlay" class="page" hidden> |
| 2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
| 3 <h1 i18n-content="keyboardOverlayTitle"></h1> | 3 <h1 i18n-content="keyboardOverlayTitle"></h1> |
| 4 <div class="content-area"> | 4 <div class="content-area"> |
| 5 <table class="option-control-table"> | 5 <table class="option-control-table"> |
| 6 <tr> | 6 <tr> |
| 7 <td> | 7 <td> |
| 8 <label class="option-name" for="remap-search-key-to" | 8 <label class="option-name" for="remap-search-key-to" |
| 9 i18n-content="remapSearchKeyToContent"> | 9 i18n-content="remapSearchKeyToContent"> |
| 10 </label> | 10 </label> |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 </label> | 87 </label> |
| 88 <span class="bubble-button controlled-setting-indicator" | 88 <span class="bubble-button controlled-setting-indicator" |
| 89 pref="settings.language.send_function_keys"></span> | 89 pref="settings.language.send_function_keys"></span> |
| 90 </span> | 90 </span> |
| 91 </span> | 91 </span> |
| 92 </div> | 92 </div> |
| 93 <label id="send-function-keys-description" for="send-function-keys" | 93 <label id="send-function-keys-description" for="send-function-keys" |
| 94 i18n-content="sendFunctionKeysDescription"> | 94 i18n-content="sendFunctionKeysDescription"> |
| 95 </label> | 95 </label> |
| 96 </div> | 96 </div> |
| 97 <div class="settings-row"> |
| 98 <div class="checkbox"> |
| 99 <input id="enable-auto-repeat" type="checkbox" |
| 100 pref="settings.language.xkb_auto_repeat_enabled_r2" |
| 101 metric="Options_KeyboardAutoRepeat" dialog-pref> |
| 102 <label for="enable-auto-repeat" i18n-content="enableAutoRepeat"></label> |
| 103 </div> |
| 104 <div id="auto-repeat-settings-section"> |
| 105 <div class="row"> |
| 106 <span class="option-name" i18n-content="autoRepeatDelay"></span> |
| 107 <span i18n-content="autoRepeatDelayLong"></span> |
| 108 <input id="auto-repeat-delay-range" type="range" |
| 109 class="touch-slider" |
| 110 pref="settings.language.xkb_auto_repeat_delay_r2" dialog-pref> |
| 111 <span i18n-content="autoRepeatDelayShort"></span> |
| 112 </div> |
| 113 <div class="row"> |
| 114 <span class="option-name" i18n-content="autoRepeatRate"></span> |
| 115 <span i18n-content="autoRepeatRateSlow"></span> |
| 116 <input id="auto-repeat-interval-range" type="range" |
| 117 class="touch-slider" |
| 118 pref="settings.language.xkb_auto_repeat_interval_r2" |
| 119 dialog-pref> |
| 120 <span i18n-content="autoRepeatRateFast"></span> |
| 121 </div> |
| 122 </div> |
| 123 </div> |
| 97 <button id="keyboard-shortcuts" class="settings-row link-button" | 124 <button id="keyboard-shortcuts" class="settings-row link-button" |
| 98 i18n-content="showKeyboardShortcuts"></button> | 125 i18n-content="showKeyboardShortcuts"></button> |
| 99 <button id="languages-and-input-settings" class="settings-row link-button" | 126 <button id="languages-and-input-settings" class="settings-row link-button" |
| 100 i18n-content="changeLanguageAndInputSettings"></button> | 127 i18n-content="changeLanguageAndInputSettings"></button> |
| 101 </div> | 128 </div> |
| 102 <div class="action-area"> | 129 <div class="action-area"> |
| 103 <div class="button-strip"> | 130 <div class="button-strip"> |
| 104 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> | 131 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> |
| 105 <button id="keyboard-confirm" class="default-button" type="submit" | 132 <button id="keyboard-confirm" class="default-button" type="submit" |
| 106 i18n-content="ok"> | 133 i18n-content="ok"> |
| 107 </button> | 134 </button> |
| 108 </div> | 135 </div> |
| 109 </div> | 136 </div> |
| 110 </div> | 137 </div> |
| OLD | NEW |