From 21f79f2e37db9b37da2522ba7d0e8d6676ddad5b Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Wed, 22 Feb 2006 21:10:35 +0000 Subject: translate some things --- lib/python/Components/TimerList.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/python/Components') 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 = "" + state = _("") else: - state = "done!" + state = _("done!") res.append((eListboxPythonMultiContent.TYPE_TEXT, 320, 50, 240, 20, 1, RT_HALIGN_RIGHT|RT_VALIGN_CENTER, state)) -- cgit v1.2.3