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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 i18n-content="remapCapsLockKeyToContent"> | 49 i18n-content="remapCapsLockKeyToContent"> |
50 </label> | 50 </label> |
51 </td> | 51 </td> |
52 <td class="option-value"> | 52 <td class="option-value"> |
53 <select id="remap-caps-lock-key-to" class="control" | 53 <select id="remap-caps-lock-key-to" class="control" |
54 data-type="number" | 54 data-type="number" |
55 pref="settings.language.remap_caps_lock_key_to" | 55 pref="settings.language.remap_caps_lock_key_to" |
56 i18n-options="remapCapsLockKeyToValue" dialog-pref></select> | 56 i18n-options="remapCapsLockKeyToValue" dialog-pref></select> |
57 </td> | 57 </td> |
58 </tr> | 58 </tr> |
| 59 <tr id="function-key-remapping-section" hidden> |
| 60 <td colspan="2"> |
| 61 <div class="checkbox"> |
| 62 <span class="controlled-setting-with-label"> |
| 63 <input id="search-acts-as-function-key" |
| 64 pref="settings.language.search_key_acts_as_function_key" |
| 65 type="checkbox"> |
| 66 <span> |
| 67 <label for="search-acts-as-function-key" |
| 68 i18n-content="searchKeyActsAsFunctionKey"> |
| 69 </label> |
| 70 <span class="controlled-setting-indicator" |
| 71 for="search-acts-as-function-key"> |
| 72 </span> |
| 73 </span> |
| 74 </span> |
| 75 </div> |
| 76 </td> |
| 77 </tr> |
59 </table> | 78 </table> |
60 </div> | 79 </div> |
61 <div class="action-area"> | 80 <div class="action-area"> |
62 <div class="button-strip"> | 81 <div class="button-strip"> |
63 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> | 82 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> |
64 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> | 83 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> |
65 </div> | 84 </div> |
66 </div> | 85 </div> |
67 </div> | 86 </div> |
OLD | NEW |