don't translate empty strings
authorAxel Buehning <axel.buehning@multimedia-labs.de>
Wed, 25 Jan 2006 17:03:48 +0000 (17:03 +0000)
committerAxel Buehning <axel.buehning@multimedia-labs.de>
Wed, 25 Jan 2006 17:03:48 +0000 (17:03 +0000)
lib/python/Screens/EventView.py

index 95c875f..31e97fa 100644 (file)
@@ -17,10 +17,10 @@ class EventViewBase:
                self["datetime"] = Label()
                self["channel"] = Label()
                self["duration"] = Label()
-               self["key_red"] = Button(_(""))
+               self["key_red"] = Button("")
                self["key_green"] = Button(_("Add Timer"))
-               self["key_yellow"] = Button(_(""))
-               self["key_blue"] = Button(_(""))
+               self["key_yellow"] = Button("")
+               self["key_blue"] = Button("")
                self["actions"] = ActionMap(["OkCancelActions", "EventViewActions"],
                        {
                                "cancel": self.close,