From: Axel Buehning Date: Wed, 25 Jan 2006 17:03:48 +0000 (+0000) Subject: don't translate empty strings X-Git-Tag: 2.6.0~4286 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/7736405ed8fe65d15120981b32b2fd9d8ecfd3aa don't translate empty strings --- diff --git a/lib/python/Screens/EventView.py b/lib/python/Screens/EventView.py index 95c875f5..31e97fa6 100644 --- a/lib/python/Screens/EventView.py +++ b/lib/python/Screens/EventView.py @@ -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,