aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-05-26 13:41:57 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-05-26 13:41:57 +0000
commit2a2ec738fb169d58f1d36b2fc0e1c509822c33f4 (patch)
tree9b62e46efedcb1275b0894ee882e4b3742904563 /lib/python
parent8251696239ba2bb74c348a2726fab85a275ebd11 (diff)
downloadenigma2-2a2ec738fb169d58f1d36b2fc0e1c509822c33f4.tar.gz
enigma2-2a2ec738fb169d58f1d36b2fc0e1c509822c33f4.zip
fix typos
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Standby.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py
index a7819268..a4ba6042 100644
--- a/lib/python/Screens/Standby.py
+++ b/lib/python/Screens/Standby.py
@@ -97,13 +97,13 @@ class TryQuitMainloop(MessageBox):
next_rec_time = session.nav.RecordTimer.getNextRecordingTime()
if recordings or (next_rec_time > 0 and (next_rec_time - time()) < 360):
if retvalue == 1:
- MessageBox.__init__(self, session, _("Recording(s) are in progress or comming up in few seconds... really shutdown now?"), type = MessageBox.TYPE_YESNO, timeout = timeout)
+ MessageBox.__init__(self, session, _("Recording(s) are in progress or coming up in few seconds... really shutdown now?"), type = MessageBox.TYPE_YESNO, timeout = timeout)
elif retvalue == 2:
- MessageBox.__init__(self, session, _("Recording(s) are in progress or comming up in few seconds... really reboot now?"), type = MessageBox.TYPE_YESNO, timeout = timeout)
+ MessageBox.__init__(self, session, _("Recording(s) are in progress or coming up in few seconds... really reboot now?"), type = MessageBox.TYPE_YESNO, timeout = timeout)
elif retvalue == 4:
pass
else:
- MessageBox.__init__(self, session, _("Recording(s) are in progress or comming up in few seconds... really restart now?"), type = MessageBox.TYPE_YESNO, timeout = timeout)
+ MessageBox.__init__(self, session, _("Recording(s) are in progress or coming up in few seconds... really restart now?"), type = MessageBox.TYPE_YESNO, timeout = timeout)
self.skinName = "MessageBox"
session.nav.record_event.append(self.getRecordEvent)
self.connected = True