added ',' to the 0-key double press shortcut list
This commit is contained in:
parent
9b33937220
commit
4405c0e34b
2 changed files with 2 additions and 0 deletions
|
|
@ -76,6 +76,7 @@
|
|||
<string name="key_volume_down">Volume Down</string>
|
||||
<string name="key_volume_up">Volume Up</string>
|
||||
|
||||
<string name="char_comma" translatable="false">,</string>
|
||||
<string name="char_dot" translatable="false">.</string>
|
||||
<string name="char_newline">New Line</string>
|
||||
<string name="char_space">Space</string>
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ public class ItemSelectZeroKeyCharacter {
|
|||
Resources resources = context.getResources();
|
||||
|
||||
KEYS.put(".", resources.getString(R.string.char_dot));
|
||||
KEYS.put(",", resources.getString(R.string.char_comma));
|
||||
KEYS.put("\\n", resources.getString(R.string.char_newline)); // SharedPreferences return a corrupted string when using the real "\n"... :(
|
||||
KEYS.put(" ", resources.getString(R.string.char_space));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue