aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/TimerEntry.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-28 14:31:59 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-28 14:31:59 +0000
commitb17019f43527d615589ce2083fb3d2a9058f2c3c (patch)
tree174f9a5a4714d858a7556e49baa30c608a7ae252 /lib/python/Screens/TimerEntry.py
parent2b4878cea6145fe231e7492fe72d3c89acf8be6f (diff)
downloadenigma2-b17019f43527d615589ce2083fb3d2a9058f2c3c.tar.gz
enigma2-b17019f43527d615589ce2083fb3d2a9058f2c3c.zip
add "go to standby" as timer after event
Diffstat (limited to 'lib/python/Screens/TimerEntry.py')
-rw-r--r--lib/python/Screens/TimerEntry.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py
index 1c83bdb6..fe44d9a3 100644
--- a/lib/python/Screens/TimerEntry.py
+++ b/lib/python/Screens/TimerEntry.py
@@ -84,7 +84,7 @@ class TimerEntry(Screen, ConfigListScreen):
day[weekday] = 1
self.timerentry_justplay = ConfigSelection(choices = [("zap", _("zap")), ("record", _("record"))], default = {0: "record", 1: "record"}[justplay])
- self.timerentry_afterevent = ConfigSelection(choices = [("nothing", _("do nothing")), ("deepstandby", _("go to deep standby"))], default = afterevent)
+ self.timerentry_afterevent = ConfigSelection(choices = [("nothing", _("do nothing")), ("standby", _("go to standby")), ("deepstandby", _("go to deep standby"))], default = afterevent)
self.timerentry_type = ConfigSelection(choices = [("once",_("once")), ("repeated", _("repeated"))], default = type)
self.timerentry_name = ConfigText(default = self.timer.name, fixed_size = False)
self.timerentry_description = ConfigText(default = self.timer.description, fixed_size = False)