Merge commit '8850bdc7e4c1da7049231bc1e21f17213562f9b6' into eclair-mr2
* commit '8850bdc7e4c1da7049231bc1e21f17213562f9b6':
Fix for 2170453: Capitalization sticks when entering passwords in Browser
This is caused by a delay in changing the shift state for performance reasons.
The delay was too long, causing multiple characters to be in shifted state when
typing fast (300ms interval).
Fix removes the optimization for the forward typing case. Doesn't affect the
backspace long-press optimization.
Triage: Hiroshi
Dr. No: mcleron
Merge commit 'b7a94fd7d66ad2cb73ed6c7226de5535935ab8b0' into eclair-mr2
* commit 'b7a94fd7d66ad2cb73ed6c7226de5535935ab8b0':
Fix for 2148982: Keyboard freezes while typing
Contacts dictionary code was being triggered too frequently during sync and
during presence updates and this seems expensive for accounts with a lot of
contacts.
Throttling the contacts read to every 30 minutes.
Merge commit '75e5091ceacb201b9a1c81cab21f357bd2e91f17' into eclair-mr2
* commit '75e5091ceacb201b9a1c81cab21f357bd2e91f17':
Import revised translations. DO NOT MERGE
Merge commit 'b49679fa547f52ad548539cfa8719c2b07207da7' into eclair
* commit 'b49679fa547f52ad548539cfa8719c2b07207da7':
Import revised translations. DO NOT MERGE
Native code was not returning the correct count for found matches. Fixed the
incorrect assumption that words usually get inserted in descending order of
frequency.
Merge commit '3fd9d9e3e07587a913cc5bb54c6a0fc08f048d0d' into eclair-mr2
* commit '3fd9d9e3e07587a913cc5bb54c6a0fc08f048d0d':
Import revised translations. DO NOT MERGE
Sometimes the keyboard is getting confused about it's width when switching
between hard keyboard open and close state and portrait-forced home. Force
creation of keyboard layouts after a configuration change to fix the
inconsistent state.
Don't force create when just switching between input fields, too expensive.
Also fixes the problem of keyboard not changing layout after a locale change,
unless there's an orientation change.
The KeyboardSwitcher was remembering state from a previous edittext
where the user was in symbols mode and applying the switch code
when user hits space in the new edittext for the first time.
Make sure to reset the state when a new keyboard mode is requested.
Also make sure that we don't switch from symbols to alphabet keyboard
when editing in a number/datetime field and hitting space.
Increase key height in portrait.
Increase spacebar width and reduce punctuation width.
Increase vertical target area for spacebar to avoid accidentally
hitting "V" and "B".
Increase height of candidate strip.
Merge commit '399d49b76d450fffc7e7e5e8ccc4111061dc9b87' into eclair
* commit '399d49b76d450fffc7e7e5e8ccc4111061dc9b87':
Import revised translations. DO NOT MERGE
Makes the user/contacts dictionary lookup faster. This is necessary because
there's more in these dictionaries now and it's written in Java.
Fix an auto-caps issue when moving the cursor. And do it a little lazily.
Fixed a bug that was causing user dictionary words to get a much
higher weightage than the main dictionary.