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 23 matching lines...) Expand all Loading... |
34 <label class="option-name" for="remap-alt-key-to" | 34 <label class="option-name" for="remap-alt-key-to" |
35 i18n-content="remapAltKeyToContent"> | 35 i18n-content="remapAltKeyToContent"> |
36 </label> | 36 </label> |
37 </td> | 37 </td> |
38 <td class="option-value"> | 38 <td class="option-value"> |
39 <select id="remap-alt-key-to" class="control" data-type="number" | 39 <select id="remap-alt-key-to" class="control" data-type="number" |
40 pref="settings.language.xkb_remap_alt_key_to" | 40 pref="settings.language.xkb_remap_alt_key_to" |
41 i18n-options="remapAltKeyToValue" dialog-pref></select> | 41 i18n-options="remapAltKeyToValue" dialog-pref></select> |
42 </td> | 42 </td> |
43 </tr> | 43 </tr> |
44 <!-- TODO(yusukes): Show this UI when --has-chromeos-keyboard flag is not | 44 <!-- The caps lock section is hidden by default. This is only visible |
45 passed to Chrome. | 45 when --has-chromeos-keyboard flag is not passed. --> |
46 <tr> | 46 <tr id="caps-lock-remapping-section" hidden> |
47 <td> | 47 <td> |
48 <label class="option-name" for="remap-caps-lock-key-to" | 48 <label class="option-name" for="remap-caps-lock-key-to" |
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 --> | |
60 </table> | 59 </table> |
61 </div> | 60 </div> |
62 <div class="action-area"> | 61 <div class="action-area"> |
63 <div class="button-strip"> | 62 <div class="button-strip"> |
64 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> | 63 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> |
65 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> | 64 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> |
66 </div> | 65 </div> |
67 </div> | 66 </div> |
68 </div> | 67 </div> |
OLD | NEW |