Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: chromeos/ime/input_methods.txt

Issue 18856014: We should switch the keyboard layout to the layout the user set according to (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Diff versus master. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos/ime/input_method_manager.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 some of its layouts can be used at
61 # signin screen (e.g. it is "Full Latin Keyboard Layout" therefore allowing
62 # input of gmail password), you should also update
63 # kHasLatinKeyboardLanguageList[] in
64 # chrome/browser/chromeos/input_method/input_method_manager_impl_ll.cc
65 #
66 # If you add a new keyboard layout for existing language, please ensure
67 # that information in kHasLatinKeyboardLanguageList[] is still correct.
59 68
60 # U.S. English 69 # U.S. English
61 xkb:us::eng us en-US 70 xkb:us::eng us en-US
62 xkb:us:intl:eng us(intl) en-US 71 xkb:us:intl:eng us(intl) en-US
63 xkb:us:altgr-intl:eng us(altgr-intl) en-US 72 xkb:us:altgr-intl:eng us(altgr-intl) en-US
64 xkb:us:dvorak:eng us(dvorak) en-US 73 xkb:us:dvorak:eng us(dvorak) en-US
65 xkb:us:colemak:eng us(colemak) en-US 74 xkb:us:colemak:eng us(colemak) en-US
66 english-m us en-US 75 english-m us en-US
67 # U.S. English entiries have to be above the Dutch entry so that xkb:us:intl:eng 76 # 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. 77 # 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
132 xkb:si::slv si sl 141 xkb:si::slv si sl
133 xkb:rs::srp rs sr 142 xkb:rs::srp rs sr
134 xkb:tr::tur tr tr 143 xkb:tr::tur tr tr
135 xkb:ua::ukr ua uk 144 xkb:ua::ukr ua uk
136 xkb:by::bel by be 145 xkb:by::bel by be
137 xkb:am:phonetic:arm am hy 146 xkb:am:phonetic:arm am hy
138 xkb:ge::geo ge ka 147 xkb:ge::geo ge ka
139 xkb:mn::mon mn mn 148 xkb:mn::mon mn mn
140 # TODO(yusukes): Support xkb:latam:deadtilde:spa and/or xkb:latam:nodeadkeys:spa 149 # TODO(yusukes): Support xkb:latam:deadtilde:spa and/or xkb:latam:nodeadkeys:spa
141 # if necessary. 150 # if necessary.
OLDNEW
« no previous file with comments | « chromeos/ime/input_method_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698