aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/EventView.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-17 21:43:50 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-17 21:43:50 +0000
commit2fcfe7e7703ce61ccb532939b6e2132b8423b7c3 (patch)
tree2c1806b464aa6831b4dbf1c5ba302d8f4fb2b06c /lib/python/Screens/EventView.py
parent746b9083adb6a9b67a91476c11de6982b824b21c (diff)
downloadenigma2-2fcfe7e7703ce61ccb532939b6e2132b8423b7c3.tar.gz
enigma2-2fcfe7e7703ce61ccb532939b6e2132b8423b7c3.zip
translations
Diffstat (limited to 'lib/python/Screens/EventView.py')
-rw-r--r--lib/python/Screens/EventView.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/EventView.py b/lib/python/Screens/EventView.py
index b8ad1e0e..f7c77e71 100644
--- a/lib/python/Screens/EventView.py
+++ b/lib/python/Screens/EventView.py
@@ -40,7 +40,7 @@ class EventView(Screen):
if name is not None:
self["channel"].setText(name)
else:
- self["channel"].setText("unknown service")
+ self["channel"].setText(_("unknown service"))
def setEvent(self, event):
text = event.getEventName()
@@ -55,7 +55,7 @@ class EventView(Screen):
# self.session.currentDialog.instance.setTitle(event.getEventName())
self["epg_description"].setText(text)
self["datetime"].setText(event.getBeginTimeString())
- self["duration"].setText("%d min"%(event.getDuration()/60))
+ self["duration"].setText(_("%d min")%(event.getDuration()/60))
def pageUp(self):
self["epg_description"].pageUp()