OLD | NEW |
1 # The list of input methods that we support. The input methods metadata is | 1 # 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. | 2 # also defined here. We use this data for the following purposes. |
3 # | 3 # |
4 # 1. Exclude unnecessary input methods. For example, we don't need | 4 # 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 | 5 # "ja:anthy", and "zh:pinyin" engines in ibus-m17n since we have better |
6 # alternatives outside of ibus-m17n. Excluding these input methods from | 6 # alternatives outside of ibus-m17n. Excluding these input methods from |
7 # the IBus engine XML files, such as /usr/share/ibus/component/m17n.xml, | 7 # 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 | 8 # makes the startup time of the IBus daemon faster. This filtering is |
9 # done using a python script at build time of ibus-m17n. | 9 # done using a python script at build time of ibus-m17n. |
10 # See crosbug.com/4161 for details. | 10 # See crosbug.com/4161 for details. |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 # and update the following files by running this script. | 49 # and update the following files by running this script. |
50 # | 50 # |
51 # * chrome/app/generated_resources.grd | 51 # * chrome/app/generated_resources.grd |
52 # * chrome/browser/resources/chromeos/keyboard_overlay_data.js | 52 # * chrome/browser/resources/chromeos/keyboard_overlay_data.js |
53 # * chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc | 53 # * chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc |
54 # | 54 # |
55 # If you add an XKB layout which depends on X11's Mod3Mask (e.g. Germany Neo2 | 55 # 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 | 56 # XKB layout), you should also update IsMod3UsedByCurrentInputMethod() method |
57 # in chrome/browser/ui/ash/event_rewriter.cc. Otherwise, Mod3Mask might be | 57 # in chrome/browser/ui/ash/event_rewriter.cc. Otherwise, Mod3Mask might be |
58 # removed unexpectedly by the rewriter. | 58 # removed unexpectedly by the rewriter. |
| 59 # |
| 60 # If you add a new language such that all its layouts can be used at |
| 61 # signin screen (e.g. it is "Full Latin Keyboard Language" therefore allowing |
| 62 # input of gmail password), you should also update |
| 63 # kFullLatinKeyboardLanguageList[] in chrome/browser/chromeos/input_method/ |
| 64 # input_method_manager_impl.cc . |
| 65 # |
| 66 # If you add a new keyboard layout for existing language, please ensure |
| 67 # that its "Full Latin Keyboard Language" property is not changed by new |
| 68 # layout. If it's changed, please also update kFullLatinKeyboardLanguageList[] |
| 69 # or change algoritm to check "this input method can be used at login screen". |
59 | 70 |
60 # U.S. English | 71 # U.S. English |
61 xkb:us::eng us en-US | 72 xkb:us::eng us en-US |
62 xkb:us:intl:eng us(intl) en-US | 73 xkb:us:intl:eng us(intl) en-US |
63 xkb:us:altgr-intl:eng us(altgr-intl) en-US | 74 xkb:us:altgr-intl:eng us(altgr-intl) en-US |
64 xkb:us:dvorak:eng us(dvorak) en-US | 75 xkb:us:dvorak:eng us(dvorak) en-US |
65 xkb:us:colemak:eng us(colemak) en-US | 76 xkb:us:colemak:eng us(colemak) en-US |
66 english-m us en-US | 77 english-m us en-US |
67 # U.S. English entiries have to be above the Dutch entry so that xkb:us:intl:eng | 78 # U.S. English entiries have to be above the Dutch entry so that xkb:us:intl:eng |
68 # will be selected as the default keyboard when the UI language is set to Dutch. | 79 # will be selected as the default keyboard when the UI language is set to Dutch. |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 xkb:si::slv si sl | 143 xkb:si::slv si sl |
133 xkb:rs::srp rs sr | 144 xkb:rs::srp rs sr |
134 xkb:tr::tur tr tr | 145 xkb:tr::tur tr tr |
135 xkb:ua::ukr ua uk | 146 xkb:ua::ukr ua uk |
136 xkb:by::bel by be | 147 xkb:by::bel by be |
137 xkb:am:phonetic:arm am hy | 148 xkb:am:phonetic:arm am hy |
138 xkb:ge::geo ge ka | 149 xkb:ge::geo ge ka |
139 xkb:mn::mon mn mn | 150 xkb:mn::mon mn mn |
140 # TODO(yusukes): Support xkb:latam:deadtilde:spa and/or xkb:latam:nodeadkeys:spa | 151 # TODO(yusukes): Support xkb:latam:deadtilde:spa and/or xkb:latam:nodeadkeys:spa |
141 # if necessary. | 152 # if necessary. |
OLD | NEW |