add missing import
[enigma2.git] / lib / python / Screens / TimerEntry.py
index 966bbab485b8a29ee12f88933ef3fb7ecd07b9b8..ea18d892df4b4231d8cdc81f35bfcd731813e750 100644 (file)
@@ -6,6 +6,7 @@ from Components.ActionMap import NumberActionMap
 from Components.ConfigList import ConfigList
 from Components.NimManager import nimmanager
 from Components.Label import Label
+from Components.Pixmap import Pixmap
 import time
 import datetime
 
@@ -14,8 +15,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()