aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-02 16:48:29 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-02 16:48:29 +0000
commit7698f560bce1d097c887cbee427e0389fa85eee6 (patch)
tree7244448c8ed0c52321bfb91d26690cce787a42cb /lib/python
parent8b353d9dd3ae6fd5915dff698ef670cf023d2214 (diff)
downloadenigma2-7698f560bce1d097c887cbee427e0389fa85eee6.tar.gz
enigma2-7698f560bce1d097c887cbee427e0389fa85eee6.zip
update ok and cancel in the timer editor
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/TimerEntry.py6
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()