aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
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()