From: Stefan Pluecken Date: Wed, 23 Nov 2005 15:25:56 +0000 (+0000) Subject: translate config element properly X-Git-Tag: 2.6.0~4981 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/e9b37cc9582c76462771c5970a57c036c5533142 translate config element properly --- diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 2056192f..3328a168 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -78,7 +78,7 @@ class configSelection: def __call__(self, selected): #needed by configlist self.checkValues() - return ("text", self.parent.vals[self.parent.value]) + return ("text", _(self.parent.vals[self.parent.value])) class configDateTime: def __init__(self, parent):