diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-02 16:48:29 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-02 16:48:29 +0000 |
| commit | 7698f560bce1d097c887cbee427e0389fa85eee6 (patch) | |
| tree | 7244448c8ed0c52321bfb91d26690cce787a42cb /lib/python/Screens/TimerEntry.py | |
| parent | 8b353d9dd3ae6fd5915dff698ef670cf023d2214 (diff) | |
| download | enigma2-7698f560bce1d097c887cbee427e0389fa85eee6.tar.gz enigma2-7698f560bce1d097c887cbee427e0389fa85eee6.zip | |
update ok and cancel in the timer editor
Diffstat (limited to 'lib/python/Screens/TimerEntry.py')
| -rw-r--r-- | lib/python/Screens/TimerEntry.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py index 966bbab4..5c18c419 100644 --- a/lib/python/Screens/TimerEntry.py +++ b/lib/python/Screens/TimerEntry.py @@ -14,8 +14,10 @@ class TimerEntry(Screen): Screen.__init__(self, session) self.timer = timer; - self["ok"] = Label("OK") - self["cancel"] = Label("Cancel") + self["oktext"] = Label(_("OK")) + self["canceltext"] = Label(_("Cancel")) + self["ok"] = Pixmap() + self["cancel"] = Pixmap() self.createConfig() |
