diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2007-01-07 01:47:30 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2007-01-07 01:47:30 +0000 |
| commit | dc1e6fcd9c08ddbc1d224710651826cd682ed63e (patch) | |
| tree | 62b32ca63258736a25562684f2cb7e4cbc841d44 /SleepTimer.py | |
| parent | d26553091d5fb6519f73ff4bedb82bb5d34336f1 (diff) | |
| download | enigma2-dc1e6fcd9c08ddbc1d224710651826cd682ed63e.tar.gz enigma2-dc1e6fcd9c08ddbc1d224710651826cd682ed63e.zip | |
fix typos
Diffstat (limited to 'SleepTimer.py')
| -rw-r--r-- | SleepTimer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SleepTimer.py b/SleepTimer.py index 82acc124..e53122d8 100644 --- a/SleepTimer.py +++ b/SleepTimer.py @@ -23,13 +23,13 @@ class SleepTimerEntry(timer.TimerEntry): if config.SleepTimer.action.value == "shutdown": global inTryQuitMainloop if config.SleepTimer.ask.value and not inTryQuitMainloop: - Notifications.AddNotificationWithCallback(self.shutdown, MessageBox, _("A sleep timer want's to shut down\nyour Dreambox. Shutdown now?"), timeout = 20) + Notifications.AddNotificationWithCallback(self.shutdown, MessageBox, _("A sleep timer wants to shut down\nyour Dreambox. Shutdown now?"), timeout = 20) else: self.shutdown(True) elif config.SleepTimer.action.value == "standby": global inStandby if config.SleepTimer.ask.value and not inStandby: - Notifications.AddNotificationWithCallback(self.standby, MessageBox, _("A sleep timer want's to set your\nDreambox to standby. Do that now?"), timeout = 20) + Notifications.AddNotificationWithCallback(self.standby, MessageBox, _("A sleep timer wants to set your\nDreambox to standby. Do that now?"), timeout = 20) else: self.standby(True) |
