diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-12 00:34:22 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-12 00:34:22 +0000 |
| commit | 620e62f6361005cbf56cfbf5db5e02279f1441f9 (patch) | |
| tree | d0ed2a4e4862a9823d41419e443b87fbd94af7b6 /lib/python/Tools | |
| parent | ff90cba66b3ebe6adf9b436fa8ae9ac440a0c70c (diff) | |
| download | enigma2-620e62f6361005cbf56cfbf5db5e02279f1441f9.tar.gz enigma2-620e62f6361005cbf56cfbf5db5e02279f1441f9.zip | |
add some characters to NumericalTextInput
Diffstat (limited to 'lib/python/Tools')
| -rw-r--r-- | lib/python/Tools/NumericalTextInput.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/python/Tools/NumericalTextInput.py b/lib/python/Tools/NumericalTextInput.py index 260f80b4..02e74ed8 100644 --- a/lib/python/Tools/NumericalTextInput.py +++ b/lib/python/Tools/NumericalTextInput.py @@ -2,16 +2,16 @@ from enigma import * class NumericalTextInput: mapping = [] - mapping.append ("abcABC") # 0 - mapping.append ("abcABC") # 1 - mapping.append ("abcABC") # 2 - mapping.append ("defDEF") # 3 - mapping.append ("ghiGHI") # 4 - mapping.append ("jklJKL") # 5 - mapping.append ("mnoMNO") # 6 - mapping.append ("pqrsPQRS") # 7 - mapping.append ("tuvTUV") # 8 - mapping.append ("wxyzWXYZ") # 9 + mapping.append (".,?'\"0") # 0 + mapping.append (" 1") # 1 + mapping.append ("abc2ABC") # 2 + mapping.append ("def3DEF") # 3 + mapping.append ("ghi4GHI") # 4 + mapping.append ("jkl5JKL") # 5 + mapping.append ("mno6MNO") # 6 + mapping.append ("pqrs7PQRS") # 7 + mapping.append ("tuv8TUV") # 8 + mapping.append ("wxyz9WXYZ") # 9 |
