aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-16 11:01:10 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-16 11:01:10 +0000
commit824ce8f9838e96812384f87155653fa2cb443045 (patch)
treecb8d693a67dc55dc3826e4a78b50b5819f3b4f50 /lib/python
parent2a6ff13c824fea58c274290495196e98228e27f1 (diff)
downloadenigma2-824ce8f9838e96812384f87155653fa2cb443045.tar.gz
enigma2-824ce8f9838e96812384f87155653fa2cb443045.zip
add repeating zap timers is now possible
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/TimerList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py
index bdc749e4..d3774cfa 100644
--- a/lib/python/Components/TimerList.py
+++ b/lib/python/Components/TimerList.py
@@ -43,7 +43,7 @@ def TimerEntryComponent(timer, processed):
count += 1
flags = flags >> 1
if timer.justplay:
- res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 50, 400, 20, 1, RT_HALIGN_LEFT|RT_VALIGN_CENTER, repeatedtext + ((" %s "+ _("(ZAP)")) % (FuzzyTime(timer.begin)[1], FuzzyTime(timer.end)[1]))))
+ res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 50, 400, 20, 1, RT_HALIGN_LEFT|RT_VALIGN_CENTER, repeatedtext + ((" %s "+ _("(ZAP)")) % (FuzzyTime(timer.begin)[1]))))
else:
res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 50, 400, 20, 1, RT_HALIGN_LEFT|RT_VALIGN_CENTER, repeatedtext + ((" %s ... %s (%d " + _("mins") + ")") % (FuzzyTime(timer.begin)[1], FuzzyTime(timer.end)[1], (timer.end - timer.begin) / 60))))
else: