aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/SleepTimerEdit.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-03 16:46:01 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-03 16:46:01 +0100
commit9fba96095af3d4a6b1b596893f4e005dc0b6f16d (patch)
treef4beec8801cdcfe9ff7b07d248698b1f641b39c7 /lib/python/Screens/SleepTimerEdit.py
parent1d05937cd1d720c4b23fb852ad8fcf3d9466ec4a (diff)
downloadenigma2-9fba96095af3d4a6b1b596893f4e005dc0b6f16d.tar.gz
enigma2-9fba96095af3d4a6b1b596893f4e005dc0b6f16d.zip
use new DeepstandbySupport SystemInfo entry at some places... this fixes bug #307
Conflicts: lib/python/Screens/TimerEntry.py
Diffstat (limited to 'lib/python/Screens/SleepTimerEdit.py')
-rw-r--r--lib/python/Screens/SleepTimerEdit.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/python/Screens/SleepTimerEdit.py b/lib/python/Screens/SleepTimerEdit.py
index ff061d88..e5e7af4e 100644
--- a/lib/python/Screens/SleepTimerEdit.py
+++ b/lib/python/Screens/SleepTimerEdit.py
@@ -5,6 +5,7 @@ from Components.Input import Input
from Components.Label import Label
from Components.Pixmap import Pixmap
from Components.config import config, ConfigInteger
+from Components.SystemInfo import SystemInfo
from enigma import eEPGCache
from SleepTimer import SleepTimer
from time import time
@@ -77,7 +78,11 @@ class SleepTimerEdit(Screen):
self["red_text"].setText(_("Action:") + " " + _("Disable timer"))
if config.SleepTimer.action.value == "shutdown":
- self["green_text"].setText(_("Sleep timer action:") + " " + _("Deep Standby"))
+ if SystemInfo["DeepstandbySupport"]:
+ shutdownString = _("Deep Standby")
+ else:
+ shutdownString = _("Shutdown")
+ self["green_text"].setText(_("Sleep timer action:") + " " + shutdownString)
elif config.SleepTimer.action.value == "standby":
self["green_text"].setText(_("Sleep timer action:") + " " + _("Standby"))