small optimizations and cleanups by Moritz Venn
[enigma2.git] / lib / python / Plugins / Extensions / SocketMMI / plugin.py
index 4eadf2ea2e0aa8cd5db63a2fa37224a9c4283ca6..387c8306d7d8ecd391e85924cf1ede2bbaaefc5d 100644 (file)
@@ -22,6 +22,6 @@ def autostart(reason, **kwargs):
                socketHandler = SocketMMIMessageHandler()
 
 def Plugins(**kwargs):
-       return [ PluginDescriptor(name = "SocketMMI", description = "Python frontend for /tmp/mmi.socket", where = PluginDescriptor.WHERE_MENU, fnc = menu),
+       return [ PluginDescriptor(name = "SocketMMI", description = _("Python frontend for /tmp/mmi.socket"), where = PluginDescriptor.WHERE_MENU, fnc = menu),
                PluginDescriptor(where = PluginDescriptor.WHERE_SESSIONSTART, fnc = sessionstart),
                PluginDescriptor(where = PluginDescriptor.WHERE_AUTOSTART, fnc = autostart) ]