delete characters in the InputBox with mute key
[enigma2.git] / lib / python / Components / TimerList.py
index 6349466b44cfb80401efd92433a776d317170ddf..0b7e0cc79dc27526eef934d58ba854173988a759 100644 (file)
@@ -48,21 +48,21 @@ def TimerEntryComponent(timer, processed):
 
        if not processed:
                if timer.state == TimerEntry.StateWaiting:
-                       state = "waiting"
+                       state = _("waiting")
                elif timer.state == TimerEntry.StatePrepared:
-                       state = "about to start"
+                       state = _("about to start")
                elif timer.state == TimerEntry.StateRunning:
-                       state = "recording..."
+                       state = _("recording...")
                else:
-                       state = "<unknown>"
+                       state = _("<unknown>")
        else:
-               state = "done!"
+               state = _("done!")
        
        res.append((eListboxPythonMultiContent.TYPE_TEXT, 320, 50, 240, 20, 1, RT_HALIGN_RIGHT|RT_VALIGN_CENTER, state))
 
        if timer.disabled:
                png = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "/redx.png"))
-               res.append((eListboxPythonMultiContent.TYPE_PIXMAP, 490, 5, 40, 40, png))
+               res.append((eListboxPythonMultiContent.TYPE_PIXMAP_ALPHATEST, 490, 5, 40, 40, png))
        
        return res