OLD | NEW |
1 # The list of keyboard layouts that we support. The keyboard layout metadata is | 1 # The list of keyboard layouts that we support. The keyboard layout metadata is |
2 # also defined here. | 2 # also defined here. |
3 # | 3 # |
4 # Each non-comment line contains the following tab-or-space-separated columns. | 4 # Each non-comment line contains the following tab-or-space-separated columns. |
5 # | 5 # |
6 # 1) The input method ID used by Chrome. (ex. "xkb:ca::fra") You should *NEVER* | 6 # 1) The input method ID used by Chrome. (ex. "xkb:ca::fra") You should *NEVER* |
7 # change the ID since the ID might be written in user's ~/Preferences. For | 7 # change the ID since the ID might be written in user's ~/Preferences. For |
8 # example, three-letter ISO 639-2/B codes are used for IDs start with "xkb:" | 8 # example, three-letter ISO 639-2/B codes are used for IDs start with "xkb:" |
9 # for histrical reason, but we should not replace them with two-letter 639-1 | 9 # for histrical reason, but we should not replace them with two-letter 639-1 |
10 # codes that are currently in use in the 3rd column. | 10 # codes that are currently in use in the 3rd column. |
(...skipping 25 matching lines...) Expand all Loading... |
36 # | 36 # |
37 # If you add an XKB layout which depends on AltGr or X11's Mod3Mask | 37 # If you add an XKB layout which depends on AltGr or X11's Mod3Mask |
38 # (e.g. Germany Neo2 XKB layout), you should also update kAltGrLayoutIds or | 38 # (e.g. Germany Neo2 XKB layout), you should also update kAltGrLayoutIds or |
39 # kMod3LayoutIds in | 39 # kMod3LayoutIds in |
40 # chrome/browser/chromeos/input_method/input_method_manager_impl.cc | 40 # chrome/browser/chromeos/input_method/input_method_manager_impl.cc |
41 # Otherwise, Mod3Mask might be removed unexpectedly by the rewriter, and | 41 # Otherwise, Mod3Mask might be removed unexpectedly by the rewriter, and |
42 # sticky keys will not work. | 42 # sticky keys will not work. |
43 # | 43 # |
44 | 44 |
45 # U.S. English | 45 # U.S. English |
46 xkb:us::eng us en,en-US,en-AU,en-NZ US login | 46 xkb:us::eng us en,en-US,en-AU,en-NZ US login |
47 xkb:us:intl:eng us(intl) en,en-US INTL login | 47 xkb:us:intl:eng us(intl) en,en-US INTL login |
48 xkb:us:altgr-intl:eng us(altgr-intl) en,en-US EXTD login | 48 xkb:us:altgr-intl:eng us(altgr-intl) en,en-US EXTD login |
49 xkb:us:dvorak:eng us(dvorak) en,en-US DV login | 49 xkb:us:dvorak:eng us(dvorak) en,en-US DV login |
50 xkb:us:colemak:eng us(colemak) en,en-US CO login | 50 xkb:us:colemak:eng us(colemak) en,en-US CO login |
51 xkb:us:intl:nld us(intl) nl INTL login | 51 xkb:us:workman:eng us(workman) en,en-US WM login |
52 xkb:us:intl:por us(intl) pt-BR INTL login | 52 xkb:us:workman-intl:eng us(workman-intl) en,en-US WMI login |
53 xkb:us::ind us id US login | 53 xkb:us:intl:nld us(intl) nl INTL login |
54 xkb:us::fil us fil US login | 54 xkb:us:intl:por us(intl) pt-BR INTL login |
55 xkb:us::msa us ms US login | 55 xkb:us::ind us id US login |
| 56 xkb:us::fil us fil US login |
| 57 xkb:us::msa us ms US login |
56 | 58 |
57 # U.S. English entiries have to be above the Dutch entry so that xkb:us:intl:eng | 59 # U.S. English entiries have to be above the Dutch entry so that xkb:us:intl:eng |
58 # will be selected as the default keyboard when the UI language is set to Dutch. | 60 # will be selected as the default keyboard when the UI language is set to Dutch. |
59 | 61 |
60 # Dutch | 62 # Dutch |
61 xkb:be::nld be nl BE login | 63 xkb:be::nld be nl BE login |
62 # We don't support xkb:nl::nld. See b/4430951. | 64 # We don't support xkb:nl::nld. See b/4430951. |
63 | 65 |
64 # French | 66 # French |
65 xkb:fr::fra fr fr,fr-FR FR login | 67 xkb:fr::fra fr fr,fr-FR FR login |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 xkb:by::bel by be BY | 122 xkb:by::bel by be BY |
121 xkb:am:phonetic:arm am hy AM | 123 xkb:am:phonetic:arm am hy AM |
122 xkb:ge::geo ge ka GE | 124 xkb:ge::geo ge ka GE |
123 xkb:mn::mon mn mn MN | 125 xkb:mn::mon mn mn MN |
124 xkb:ie::ga ie ga GA login | 126 xkb:ie::ga ie ga GA login |
125 xkb:mt::mlt mt mt MT login | 127 xkb:mt::mlt mt mt MT login |
126 xkb:mk::mkd mk mk MK | 128 xkb:mk::mkd mk mk MK |
127 | 129 |
128 # TODO(yusukes): Support xkb:latam:deadtilde:spa and/or xkb:latam:nodeadkeys:spa | 130 # TODO(yusukes): Support xkb:latam:deadtilde:spa and/or xkb:latam:nodeadkeys:spa |
129 # if necessary. | 131 # if necessary. |
OLD | NEW |