make menu text translatable
[enigma2.git] / lib / python / Plugins / SystemPlugins / SkinSelector / plugin.py
index d92211753ce142b8f68ab58cfb4bea226ecb9fa0..060a4f35e03f68b2ccd51344959812883df98dde 100755 (executable)
@@ -131,9 +131,9 @@ def SkinSelMain(session, **kwargs):
 
 def SkinSelSetup(menuid, **kwargs):
        if menuid == "system":
-               return [("Skin...", SkinSelMain)]
+               return [(_("Skin..."), SkinSelMain, "skin_selector", None)]
        else:
                return []
 
 def Plugins(**kwargs):
-       return PluginDescriptor(name="Skinselector", description="Select Your Skin", where = PluginDescriptor.WHERE_SETUP, fnc=SkinSelSetup)
+       return PluginDescriptor(name="Skinselector", description="Select Your Skin", where = PluginDescriptor.WHERE_MENU, fnc=SkinSelSetup)