OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 var keyboardOverlayData = { | 5 var keyboardOverlayData = { |
6 'inputMethodIdToOverlayId': { | 6 'inputMethodIdToOverlayId': { |
7 'm17n:ar:kbd': 'ar', | 7 'm17n:ar:kbd': 'ar', |
8 'm17n:fa:isiri': 'ar', | 8 'm17n:fa:isiri': 'ar', |
9 'm17n:hi:itrans': 'hi', | 9 'm17n:hi:itrans': 'hi', |
10 'm17n:th:kesmanee': 'th', | 10 'm17n:th:kesmanee': 'th', |
(...skipping 15879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15890 '7<>SEARCH': 'keyboardOverlayF7', | 15890 '7<>SEARCH': 'keyboardOverlayF7', |
15891 '8<>SEARCH': 'keyboardOverlayF8', | 15891 '8<>SEARCH': 'keyboardOverlayF8', |
15892 '9<>SEARCH': 'keyboardOverlayF9', | 15892 '9<>SEARCH': 'keyboardOverlayF9', |
15893 '0<>SEARCH': 'keyboardOverlayF10', | 15893 '0<>SEARCH': 'keyboardOverlayF10', |
15894 '-<>SEARCH': 'keyboardOverlayF11', | 15894 '-<>SEARCH': 'keyboardOverlayF11', |
15895 '=<>SEARCH': 'keyboardOverlayF12', | 15895 '=<>SEARCH': 'keyboardOverlayF12', |
15896 'backspace<>SEARCH': 'keyboardOverlayDelete', | 15896 'backspace<>SEARCH': 'keyboardOverlayDelete', |
15897 'down<>SEARCH': 'keyboardOverlayPageDown', | 15897 'down<>SEARCH': 'keyboardOverlayPageDown', |
15898 'right<>SEARCH': 'keyboardOverlayEnd', | 15898 'right<>SEARCH': 'keyboardOverlayEnd', |
15899 'up<>SEARCH': 'keyboardOverlayPageUp', | 15899 'up<>SEARCH': 'keyboardOverlayPageUp', |
15900 'left<>SEARCH': 'keyboardOverlayHome' | 15900 'left<>SEARCH': 'keyboardOverlayHome', |
| 15901 '\\<>SEARCH': 'keyboardOverlayInsert' |
15901 } | 15902 } |
15902 }; | 15903 }; |
OLD | NEW |