From: Andreas Monzner Date: Sun, 16 Apr 2006 11:01:10 +0000 (+0000) Subject: add repeating zap timers is now possible X-Git-Tag: 2.6.0~3610 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/824ce8f9838e96812384f87155653fa2cb443045 add repeating zap timers is now possible --- 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: