TransCodingSetup : support italian language.
[vuplus_dvbapp] / lib / python / Plugins / SystemPlugins / TransCodingSetup / plugin.py
index 09ec093..b07f35f 100755 (executable)
@@ -152,8 +152,8 @@ class TranscodingSetup(Screen,ConfigListScreen, TranscodingSetupInit):
                }, -2)
                self.list = []
                ConfigListScreen.__init__(self, self.list,session = self.session)
-               TEXT = "Transcoding can be started when there is no corresponding channel recordings."
-               TEXT += "\nWhen transcoding, both PIP and analog video outputs are disabled."
+               TEXT = _("Transcoding can be started when there is no corresponding channel recordings.")
+               TEXT += _("\nWhen transcoding, both PIP and analog video outputs are disabled.")
                self["key_red"] = StaticText(_("Cancel"))
                self["key_green"] = StaticText(_("Ok"))
                self["text"] = StaticText(_("%s")%TEXT)
@@ -221,7 +221,7 @@ def main(session, **kwargs):
        session.open(TranscodingSetup)
 
 def Plugins(**kwargs):
-       return [PluginDescriptor(name=_("TranscodingSetup"), description="Transcoding Setup", where = PluginDescriptor.WHERE_PLUGINMENU, needsRestart = False, fnc=main)]
+       return [PluginDescriptor(name=_("TranscodingSetup"), description=_("Transcoding Setup"), where = PluginDescriptor.WHERE_PLUGINMENU, needsRestart = False, fnc=main)]
 
 transcodingsetupinit = TranscodingSetupInit()