aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-07-28 21:30:32 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-07-28 21:30:32 +0000
commit312a7a58ea41e410d503aa34ea75b3a1d1d833ac (patch)
treec3340673b4889393bbb74be23ffb7059b02052d0
parenta3330763e823caac4dd7a2f98504c4496bf46c34 (diff)
downloadenigma2-312a7a58ea41e410d503aa34ea75b3a1d1d833ac.tar.gz
enigma2-312a7a58ea41e410d503aa34ea75b3a1d1d833ac.zip
translate text attribute for skin objects
-rw-r--r--skin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/skin.py b/skin.py
index f13ec9ca..ecd4355e 100644
--- a/skin.py
+++ b/skin.py
@@ -111,7 +111,7 @@ def applySingleAttribute(guiObject, desktop, attrib, value):
elif attrib == 'title':
guiObject.setTitle(_(value))
elif attrib == 'text':
- guiObject.setText(value)
+ guiObject.setText(_(value))
elif attrib == 'font':
guiObject.setFont(parseFont(value))
elif attrib == 'zPosition':