X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=SleepTimer.py;h=a6f39efdc18a39e21b4a5f3dbcfe916f7433c5e4;hp=221e8f0b29422826edeb3368fcf24bdd752d7a6d;hb=23f75a8d35e2f353ea66873a83265477a8279fb6;hpb=830d79376a0bc82a7c50930c5dc7d48b35bb8a21 diff --git a/SleepTimer.py b/SleepTimer.py old mode 100644 new mode 100755 index 221e8f0..a6f39ef --- a/SleepTimer.py +++ b/SleepTimer.py @@ -26,12 +26,12 @@ class SleepTimerEntry(timer.TimerEntry): if self.state == self.StateRunning: if config.SleepTimer.action.value == "shutdown": if config.SleepTimer.ask.value and not Screens.Standby.inTryQuitMainloop: - Notifications.AddNotificationWithCallback(self.shutdown, MessageBox, _("A sleep timer wants to shut down\nyour Dreambox. Shutdown now?"), timeout = 20) + Notifications.AddNotificationWithCallback(self.shutdown, MessageBox, _("A sleep timer wants to shut down\nyour STB. Shutdown now?"), timeout = 20) else: self.shutdown(True) elif config.SleepTimer.action.value == "standby": if config.SleepTimer.ask.value and not Screens.Standby.inStandby: - Notifications.AddNotificationWithCallback(self.standby, MessageBox, _("A sleep timer wants to set your\nDreambox to standby. Do that now?"), timeout = 20) + Notifications.AddNotificationWithCallback(self.standby, MessageBox, _("A sleep timer wants to set your\nSTB to standby. Do that now?"), timeout = 20) else: self.standby(True)