diff options
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | duplicates.c | 2 | ||||
-rw-r--r-- | menu.c | 2 | ||||
-rw-r--r-- | po/it_IT.po | 37 |
4 files changed, 44 insertions, 2 deletions
@@ -1,6 +1,11 @@ VDR Plugin 'duplicates' Revision History ---------------------------------------- +2011-09-12: Version 0.0.2 + +- Added Italian translations provided by Diego Pierotto. +- Fixed compilation with VDR 1.7.21 and Liemikuutio 1.31. + 2011-06-01: Version 0.0.1 - Initial revision. diff --git a/duplicates.c b/duplicates.c index 763e77b..e649c6a 100644 --- a/duplicates.c +++ b/duplicates.c @@ -10,7 +10,7 @@ #include <vdr/plugin.h> #include "menu.h" -static const char *VERSION = "0.0.1"; +static const char *VERSION = "0.0.2"; static const char *DESCRIPTION = trNOOP("Shows duplicate recordings"); static const char *MAINMENUENTRY = trNOOP("Duplicate recordings"); @@ -89,7 +89,7 @@ public: cMenuDuplicateItem::cMenuDuplicateItem(const cRecording *Recording) { fileName = strdup(Recording->FileName()); -#ifdef LIEMIKUUTIO +#if defined LIEMIKUUTIO && LIEMIKUUTIO < 131 SetText(Recording->Title('\t', true, -1, false)); #else SetText(Recording->Title('\t', true)); diff --git a/po/it_IT.po b/po/it_IT.po new file mode 100644 index 0000000..5c01a63 --- /dev/null +++ b/po/it_IT.po @@ -0,0 +1,37 @@ +# Finnish translations for PACKAGE package +# Suomenkielinen käännös PACKAGE-paketille. +# Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Timo Eskola <timo@tolleri.net>, 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: vdr-duplicates 0.0.1\n" +"Report-Msgid-Bugs-To: <see README>\n" +"POT-Creation-Date: 2011-06-02 19:48+0300\n" +"PO-Revision-Date: 2011-06-05 23:37+0100\n" +"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Italian\n" +"X-Poedit-Country: ITALY\n" +"X-Poedit-SourceCharset: utf-8\n" + +msgid "Shows duplicate recordings" +msgstr "Mostra registrazioni duplicate" + +msgid "Duplicate recordings" +msgstr "Registrazioni duplicate" + +#, c-format +msgid "%d duplicate recordings" +msgstr "%d registrazioni duplicate" + +#, c-format +msgid "%d recordings without description" +msgstr "%d registrazioni senza descrizione" + |