diff options
| author | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-09-30 20:44:09 +0000 |
|---|---|---|
| committer | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-09-30 20:44:09 +0000 |
| commit | b21005fe9437b12b945c2c6fa1d9bd4fb4992cb8 (patch) | |
| tree | 93cde25d58d15347710fc4376a4dcf7b2f500616 /lib/python/Screens/InputBox.py | |
| parent | 04b494e437db398c5c16e0562cb415fe29c715ab (diff) | |
| download | enigma2-b21005fe9437b12b945c2c6fa1d9bd4fb4992cb8.tar.gz enigma2-b21005fe9437b12b945c2c6fa1d9bd4fb4992cb8.zip | |
fix linguistic syntax
Diffstat (limited to 'lib/python/Screens/InputBox.py')
| -rw-r--r-- | lib/python/Screens/InputBox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/InputBox.py b/lib/python/Screens/InputBox.py index 16fadf3d..1fa9a9ee 100644 --- a/lib/python/Screens/InputBox.py +++ b/lib/python/Screens/InputBox.py @@ -99,7 +99,7 @@ class PinInput(InputBox): remaining = (self.triesEntry.time.value + (self.waitTime * 60)) - time() remainingMinutes = int(remaining / 60) remainingSeconds = int(remaining % 60) - self.onFirstExecBegin.append(boundFunction(self.session.openWithCallback, self.closePinCancel, MessageBox, _("You have to wait for") + " " + str(remainingMinutes) + " " + _("minutes and") + " " + str(remainingSeconds) + " " + _("seconds."), MessageBox.TYPE_ERROR)) + self.onFirstExecBegin.append(boundFunction(self.session.openWithCallback, self.closePinCancel, MessageBox, _("You have to wait %s!") % (str(remainingMinutes) + " " + _("minutes") + ", " + str(remainingSeconds) + " " + _("seconds"), MessageBox.TYPE_ERROR)) else: self.setTries(3) |
