aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-22 21:10:35 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-22 21:10:35 +0000
commit21f79f2e37db9b37da2522ba7d0e8d6676ddad5b (patch)
tree999114ffc797b2ad0991975d5b6d4d6ea2975acd /lib
parenta902e9ddfd12aa1acdb346258348f993792b4401 (diff)
downloadenigma2-21f79f2e37db9b37da2522ba7d0e8d6676ddad5b.tar.gz
enigma2-21f79f2e37db9b37da2522ba7d0e8d6676ddad5b.zip
translate some things
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Components/TimerList.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py
index f55c9b1b..0b7e0cc7 100644
--- a/lib/python/Components/TimerList.py
+++ b/lib/python/Components/TimerList.py
@@ -48,15 +48,15 @@ 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))