From: Stefan Pluecken Date: Mon, 2 Jan 2006 16:48:29 +0000 (+0000) Subject: update ok and cancel in the timer editor X-Git-Tag: 2.6.0~4543 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/7698f560bce1d097c887cbee427e0389fa85eee6?hp=8b353d9dd3ae6fd5915dff698ef670cf023d2214 update ok and cancel in the timer editor --- diff --git a/data/skin.xml b/data/skin.xml index c1b09e9e..385b4bed 100644 --- a/data/skin.xml +++ b/data/skin.xml @@ -109,8 +109,10 @@ - - + + + + 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()