diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-16 11:01:10 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-16 11:01:10 +0000 |
| commit | 824ce8f9838e96812384f87155653fa2cb443045 (patch) | |
| tree | cb8d693a67dc55dc3826e4a78b50b5819f3b4f50 /lib | |
| parent | 2a6ff13c824fea58c274290495196e98228e27f1 (diff) | |
| download | enigma2-824ce8f9838e96812384f87155653fa2cb443045.tar.gz enigma2-824ce8f9838e96812384f87155653fa2cb443045.zip | |
add repeating zap timers is now possible
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/TimerList.py | 2 |
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: |
