TransCodingSetup : support italian language.
authorhschang <chang@dev3>
Tue, 12 Feb 2013 07:11:02 +0000 (16:11 +0900)
committerhschang <chang@dev3>
Tue, 12 Feb 2013 07:11:06 +0000 (16:11 +0900)
lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/Makefile.am
lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/it.po [new file with mode: 0644]
lib/python/Plugins/SystemPlugins/TransCodingSetup/plugin.py

index 9b6033c..1cfe86d 100644 (file)
@@ -1,5 +1,5 @@
 PLUGIN = TransCodingSetup
 PLUGIN = TransCodingSetup
-LANGS = de
+LANGS = de it
 
 CATEGORY ?= "SystemPlugins"
 
 
 CATEGORY ?= "SystemPlugins"
 
diff --git a/lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/it.po b/lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/it.po
new file mode 100644 (file)
index 0000000..a313251
--- /dev/null
@@ -0,0 +1,93 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-02-08 23:13+0100\n"
+"PO-Revision-Date: 2013-02-08 23:17+0100\n"
+"Last-Translator: meo <lupomeo@hotmail.com>\n"
+"Language-Team: Black Hole <vuplus-community.net>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-Language: Italian\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: plugin.py:14
+msgid "enabled"
+msgstr "abilitato"
+
+#: plugin.py:14
+msgid "disabled"
+msgstr "disabilitato"
+
+#: plugin.py:155
+msgid "Transcoding can be started when there is no corresponding channel recordings."
+msgstr "La funzione Transcoding può essere abilitata quando non c'è una registrazione in corso sul canale corrispondente."
+
+#: plugin.py:156
+msgid ""
+"\n"
+"When transcoding, both PIP and analog video outputs are disabled."
+msgstr ""
+"\n"
+"Quando il transcoding è attivo sono disabilitati sia il PIP che l'uscita video analogica."
+
+#: plugin.py:157
+msgid "Cancel"
+msgstr "Annulla"
+
+#: plugin.py:158
+msgid "Ok"
+msgstr "Ok"
+
+#: plugin.py:159
+#, python-format
+msgid "%s"
+msgstr "%s"
+
+#: plugin.py:170
+msgid "This plugin is available on SOLO2/DUO2"
+msgstr "Questo plugin è disponibile solo per Solo2 e Duo2"
+
+#: plugin.py:174
+msgid "Transcoding"
+msgstr "Transcoding"
+
+#: plugin.py:175
+msgid "Port"
+msgstr "Porta"
+
+#: plugin.py:190
+#, python-format
+msgid ""
+"Failed, Encoder %s\n"
+"(%s)."
+msgstr ""
+"Encoding di %s\n"
+"(%s) fallito."
+
+#: plugin.py:195
+#, python-format
+msgid ""
+"OK. Encoder %s.\n"
+"%s"
+msgstr ""
+"OK. Encoding di %s.\n"
+"%s OK"
+
+#: plugin.py:197
+#, python-format
+msgid "OK. Encoder %s."
+msgstr "Encoding di %s Ok."
+
+#: plugin.py:224
+msgid "TranscodingSetup"
+msgstr "TranscodingSetup"
+
+#: plugin.py:224
+msgid "Transcoding Setup"
+msgstr "Configurazione Transcoding."
+
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)
                }, -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)
                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):
        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()
 
 
 transcodingsetupinit = TranscodingSetupInit()