aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAxel Buehning <axel.buehning@multimedia-labs.de>2006-01-25 17:03:48 +0000
committerAxel Buehning <axel.buehning@multimedia-labs.de>2006-01-25 17:03:48 +0000
commit7736405ed8fe65d15120981b32b2fd9d8ecfd3aa (patch)
treea7e615f92851e63940f9a79ee74f0f0e52f8d06d /lib/python
parent1ed61ffce316f2753b26ca66fd805c4ba1202ef0 (diff)
downloadenigma2-7736405ed8fe65d15120981b32b2fd9d8ecfd3aa.tar.gz
enigma2-7736405ed8fe65d15120981b32b2fd9d8ecfd3aa.zip
don't translate empty strings
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/EventView.py6
1 files changed, 3 insertions, 3 deletions
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,