From 4d337c52ff25fb3350e7678ebbf5a969c8db8374 Mon Sep 17 00:00:00 2001 From: hschang Date: Tue, 12 Feb 2013 16:11:02 +0900 Subject: [PATCH] TransCodingSetup : support italian language. --- .../TransCodingSetup/locale/Makefile.am | 2 +- .../SystemPlugins/TransCodingSetup/locale/it.po | 93 ++++++++++++++++++++++ .../SystemPlugins/TransCodingSetup/plugin.py | 6 +- 3 files changed, 97 insertions(+), 4 deletions(-) create mode 100644 lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/it.po diff --git a/lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/Makefile.am b/lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/Makefile.am index 9b6033c..1cfe86d 100644 --- a/lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/Makefile.am +++ b/lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/Makefile.am @@ -1,5 +1,5 @@ PLUGIN = TransCodingSetup -LANGS = de +LANGS = de it 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 index 0000000..a313251 --- /dev/null +++ b/lib/python/Plugins/SystemPlugins/TransCodingSetup/locale/it.po @@ -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 \n" +"Language-Team: Black Hole \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." + diff --git a/lib/python/Plugins/SystemPlugins/TransCodingSetup/plugin.py b/lib/python/Plugins/SystemPlugins/TransCodingSetup/plugin.py index 09ec093..b07f35f 100755 --- a/lib/python/Plugins/SystemPlugins/TransCodingSetup/plugin.py +++ b/lib/python/Plugins/SystemPlugins/TransCodingSetup/plugin.py @@ -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() -- 2.7.4