OLD | NEW |
| 1 # TODO(nona): Remove this file, this is only for migration. |
1 # The list of input methods that we support. The input methods metadata is | 2 # The list of input methods that we support. The input methods metadata is |
2 # also defined here. We use this data for the following purposes. | 3 # also defined here. We use this data for the following purposes. |
3 # | 4 # |
4 # 1. Exclude unnecessary input methods. For example, we don't need | 5 # 1. Exclude unnecessary input methods. For example, we don't need |
5 # "ja:anthy", and "zh:pinyin" engines in ibus-m17n since we have better | 6 # "ja:anthy", and "zh:pinyin" engines in ibus-m17n since we have better |
6 # alternatives outside of ibus-m17n. Excluding these input methods from | 7 # alternatives outside of ibus-m17n. Excluding these input methods from |
7 # the IBus engine XML files, such as /usr/share/ibus/component/m17n.xml, | 8 # the IBus engine XML files, such as /usr/share/ibus/component/m17n.xml, |
8 # makes the startup time of the IBus daemon faster. This filtering is | 9 # makes the startup time of the IBus daemon faster. This filtering is |
9 # done using a python script at build time of ibus-m17n. | 10 # done using a python script at build time of ibus-m17n. |
10 # See crosbug.com/4161 for details. | 11 # See crosbug.com/4161 for details. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 # | 43 # |
43 # Notes: | 44 # Notes: |
44 # When adding a line to this list, please also add a mapping from the input | 45 # When adding a line to this list, please also add a mapping from the input |
45 # method ID to the keyboard overlay ID to INPUT_METHOD_ID_TO_OVERLAY_ID in | 46 # method ID to the keyboard overlay ID to INPUT_METHOD_ID_TO_OVERLAY_ID in |
46 # | 47 # |
47 # * tools/gen_keyboard_overlay_data/gen_keyboard_overlay_data.py | 48 # * tools/gen_keyboard_overlay_data/gen_keyboard_overlay_data.py |
48 # | 49 # |
49 # and update the following files by running this script. | 50 # and update the following files by running this script. |
50 # | 51 # |
51 # * chrome/app/generated_resources.grd | 52 # * chrome/app/generated_resources.grd |
52 # * chrome/browser/resources/keyboard_overlay_data.js | 53 # * chrome/browser/resources/chromeos/keyboard_overlay_data.js |
53 # * chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc | 54 # * chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc |
54 # | 55 # |
55 # If you add an XKB layout which depends on X11's Mod3Mask (e.g. Germany Neo2 | 56 # If you add an XKB layout which depends on X11's Mod3Mask (e.g. Germany Neo2 |
56 # XKB layout), you should also update IsMod3UsedByCurrentInputMethod() method | 57 # XKB layout), you should also update IsMod3UsedByCurrentInputMethod() method |
57 # in chrome/browser/ui/ash/event_rewriter.cc. Otherwise, Mod3Mask might be | 58 # in chrome/browser/ui/ash/event_rewriter.cc. Otherwise, Mod3Mask might be |
58 # removed unexpectedly by the rewriter. | 59 # removed unexpectedly by the rewriter. |
59 | 60 |
60 # U.S. English | 61 # U.S. English |
61 xkb:us::eng us en-US | 62 xkb:us::eng us en-US |
62 xkb:us:intl:eng us(intl) en-US | 63 xkb:us:intl:eng us(intl) en-US |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 xkb:pt::por pt pt-PT | 204 xkb:pt::por pt pt-PT |
204 xkb:ro::rum ro ro | 205 xkb:ro::rum ro ro |
205 xkb:se::swe se sv | 206 xkb:se::swe se sv |
206 xkb:sk::slo sk sk | 207 xkb:sk::slo sk sk |
207 xkb:si::slv si sl | 208 xkb:si::slv si sl |
208 xkb:rs::srp rs sr | 209 xkb:rs::srp rs sr |
209 xkb:tr::tur tr tr | 210 xkb:tr::tur tr tr |
210 xkb:ua::ukr ua uk | 211 xkb:ua::ukr ua uk |
211 # TODO(yusukes): Support xkb:latam:deadtilde:spa and/or xkb:latam:nodeadkeys:spa | 212 # TODO(yusukes): Support xkb:latam:deadtilde:spa and/or xkb:latam:nodeadkeys:spa |
212 # if necessary. | 213 # if necessary. |
OLD | NEW |