add KeyBindings.py to install_DATA
[enigma2.git] / lib / python / Tools / NumericalTextInput.py
index 260f80b4217d38e2024245b4a1ab759c42ea1764..79c330107bed9cb4f0f980fb5cd0db5617439451 100644 (file)
@@ -2,19 +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
                                 
     def __init__(self, nextFunction):
         self.nextFunction = nextFunction