| OLD | NEW |
| (Empty) |
| 1 <div id="keyboard-overlay" class="page" hidden> | |
| 2 <div class="close-button"></div> | |
| 3 <h1 i18n-content="keyboardOverlayTitle"></h1> | |
| 4 <div class="content-area"> | |
| 5 <table class="option-control-table"> | |
| 6 <tr> | |
| 7 <td> | |
| 8 <label class="option-name" for="xkb-remap-search-key-to" | |
| 9 i18n-content="xkbRemapSearchKeyToContent"> | |
| 10 </label> | |
| 11 </td> | |
| 12 <td class="option-value"> | |
| 13 <select id="xkb-remap-search-key-to" class="control" | |
| 14 data-type="number" i18n-options="xkbRemapSearchKeyToValue" | |
| 15 pref="settings.language.xkb_remap_search_key_to" dialog-pref> | |
| 16 </select> | |
| 17 </td> | |
| 18 </tr> | |
| 19 <tr> | |
| 20 <td> | |
| 21 <label class="option-name" for="xkb-remap-control-key-to" | |
| 22 i18n-content="xkbRemapControlKeyToContent"> | |
| 23 </label> | |
| 24 </td> | |
| 25 <td class="option-value"> | |
| 26 <select id="xkb-remap-control-key-to" class="control" | |
| 27 data-type="number" i18n-options="xkbRemapControlKeyToValue" | |
| 28 pref="settings.language.xkb_remap_control_key_to" dialog-pref> | |
| 29 </select> | |
| 30 </td> | |
| 31 </tr> | |
| 32 <tr> | |
| 33 <td> | |
| 34 <label class="option-name" for="xkb-remap-alt-key-to" | |
| 35 i18n-content="xkbRemapAltKeyToContent"> | |
| 36 </label> | |
| 37 </td> | |
| 38 <td class="option-value"> | |
| 39 <select id="xkb-remap-alt-key-to" class="control" data-type="number" | |
| 40 pref="settings.language.xkb_remap_alt_key_to" | |
| 41 i18n-options="xkbRemapAltKeyToValue" dialog-pref></select> | |
| 42 </td> | |
| 43 </tr> | |
| 44 </table> | |
| 45 </div> | |
| 46 <div class="action-area"> | |
| 47 <div class="button-strip"> | |
| 48 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> | |
| 49 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> | |
| 50 </div> | |
| 51 </div> | |
| 52 </div> | |
| OLD | NEW |