X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/335929cf7b8838d4543484d2a76f383eb3b4017d..703e28ce14566d6093d98feca0c96a0468936747:/lib/python/Components/TimerList.py diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py index 6349466b..0b7e0cc7 100644 --- a/lib/python/Components/TimerList.py +++ b/lib/python/Components/TimerList.py @@ -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 = "" + state = _("") 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