fix typos
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sun, 7 Jan 2007 01:47:30 +0000 (01:47 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sun, 7 Jan 2007 01:47:30 +0000 (01:47 +0000)
RecordTimer.py
SleepTimer.py

index 21dc77c..8689c05 100644 (file)
@@ -215,11 +215,11 @@ class RecordTimerEntry(timer.TimerEntry):
                        if self.afterEvent == AFTEREVENT.STANDBY:
                                global inStandby
                                if not inStandby:
                        if self.afterEvent == AFTEREVENT.STANDBY:
                                global inStandby
                                if not inStandby:
-                                       Notifications.AddNotificationWithCallback(self.sendStandbyNotification, MessageBox, _("A finished record timer want's to set your\nDreambox to standby. Do that now?"), timeout = 20)
+                                       Notifications.AddNotificationWithCallback(self.sendStandbyNotification, MessageBox, _("A finished record timer wants to set your\nDreambox to standby. Do that now?"), timeout = 20)
                        if self.afterEvent == AFTEREVENT.DEEPSTANDBY:
                                global inTryQuitMainloop
                                if not inTryQuitMainloop:
                        if self.afterEvent == AFTEREVENT.DEEPSTANDBY:
                                global inTryQuitMainloop
                                if not inTryQuitMainloop:
-                                       Notifications.AddNotificationWithCallback(self.sendTryQuitMainloopNotification, MessageBox, _("A finished record timer want's to shut down\nyour Dreambox. Shutdown now?"), timeout = 20)
+                                       Notifications.AddNotificationWithCallback(self.sendTryQuitMainloopNotification, MessageBox, _("A finished record timer wants to shut down\nyour Dreambox. Shutdown now?"), timeout = 20)
                        return True
 
        def sendStandbyNotification(self, answer):
                        return True
 
        def sendStandbyNotification(self, answer):
index 82acc12..e53122d 100644 (file)
@@ -23,13 +23,13 @@ class SleepTimerEntry(timer.TimerEntry):
                        if config.SleepTimer.action.value == "shutdown":
                                global inTryQuitMainloop
                                if config.SleepTimer.ask.value and not inTryQuitMainloop:
                        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:
                                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)
 
                                else:
                                        self.standby(True)