diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2011-01-09 13:15:45 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2011-01-09 13:15:45 +0100 |
commit | 287475be08c2e14e92111e86ac53003e101e854b (patch) | |
tree | b72f1772a5ef07dbf01e4860984a22c1768076cb | |
parent | 7f9432fe4193dae2f2080407c7364b099300c2dd (diff) | |
download | vdr-plugin-epgsearch-287475be08c2e14e92111e86ac53003e101e854b.tar.gz vdr-plugin-epgsearch-287475be08c2e14e92111e86ac53003e101e854b.tar.bz2 |
updated support for pin plugin patch, thanks to Jiri Dobry for providing a patch
-rw-r--r-- | menu_commands.c | 2 | ||||
-rw-r--r-- | menu_main.c | 2 | ||||
-rw-r--r-- | menu_myedittimer.c | 9 | ||||
-rw-r--r-- | menu_searchresults.c | 2 | ||||
-rw-r--r-- | menu_whatson.c | 2 | ||||
-rw-r--r-- | po/ca_ES.po | 4 | ||||
-rw-r--r-- | po/cs_CZ.po | 4 | ||||
-rw-r--r-- | po/da_DK.po | 4 | ||||
-rw-r--r-- | po/de_DE.po | 4 | ||||
-rw-r--r-- | po/el_GR.po | 4 | ||||
-rw-r--r-- | po/es_ES.po | 4 | ||||
-rw-r--r-- | po/et_EE.po | 4 | ||||
-rw-r--r-- | po/fi_FI.po | 5 | ||||
-rw-r--r-- | po/fr_FR.po | 4 | ||||
-rw-r--r-- | po/hr_HR.po | 4 | ||||
-rw-r--r-- | po/hu_HU.po | 4 | ||||
-rw-r--r-- | po/it_IT.po | 4 | ||||
-rw-r--r-- | po/lt_LT.po | 4 | ||||
-rw-r--r-- | po/nl_NL.po | 4 | ||||
-rw-r--r-- | po/nn_NO.po | 4 | ||||
-rw-r--r-- | po/pl_PL.po | 4 | ||||
-rw-r--r-- | po/pt_PT.po | 4 | ||||
-rw-r--r-- | po/ro_RO.po | 4 | ||||
-rw-r--r-- | po/ru_RU.po | 4 | ||||
-rw-r--r-- | po/sk_SK.po | 4 | ||||
-rw-r--r-- | po/sl_SI.po | 4 | ||||
-rw-r--r-- | po/sv_SE.po | 4 | ||||
-rw-r--r-- | po/tr_TR.po | 4 |
28 files changed, 56 insertions, 54 deletions
diff --git a/menu_commands.c b/menu_commands.c index 418dea9..15e6e2d 100644 --- a/menu_commands.c +++ b/menu_commands.c @@ -165,7 +165,7 @@ eOSState cMenuSearchCommands::Record(void) } #ifdef USE_PINPLUGIN aux = ""; - aux = UpdateAuxValue(aux, "protected", timer->FskProtection() ? "yes" : "no"); + aux = UpdateAuxValue(aux, "protected", timer->HasFlags(tfProtected) ? "yes" : "no"); fullaux = UpdateAuxValue(fullaux, "pin-plugin", aux); #endif diff --git a/menu_main.c b/menu_main.c index 8fe08c1..166d4fd 100644 --- a/menu_main.c +++ b/menu_main.c @@ -226,7 +226,7 @@ eOSState cMenuSearchMain::Record(void) } #ifdef USE_PINPLUGIN aux = ""; - aux = UpdateAuxValue(aux, "protected", timer->FskProtection() ? "yes" : "no"); + aux = UpdateAuxValue(aux, "protected", timer->HasFlags(tfProtected) ? "yes" : "no"); fullaux = UpdateAuxValue(fullaux, "pin-plugin", aux); #endif diff --git a/menu_myedittimer.c b/menu_myedittimer.c index 276ce4c..a35617a 100644 --- a/menu_myedittimer.c +++ b/menu_myedittimer.c @@ -34,6 +34,9 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include "menu_deftimercheckmethod.h" #include "timerstatus.h" #include <math.h> +#ifdef USE_PINPLUGIN +#include "../pin/pin.h" +#endif const char *cMenuMyEditTimer::CheckModes[3]; @@ -63,7 +66,7 @@ cMenuMyEditTimer::cMenuMyEditTimer(cTimer *Timer, bool New, const cEvent* Event, strcpy(file, Timer->File()); channel = Timer->Channel()->Number(); #ifdef USE_PINPLUGIN - fskProtection = Timer->FskProtection(); + fskProtection = Timer->HasFlags(tfProtected); #endif if (forcechannel) channel = forcechannel->Number(); @@ -125,7 +128,7 @@ void cMenuMyEditTimer::Set() Add(new cMenuEditStrItem( tr("Directory"), directory, MaxFileName, tr(AllowedChars))); Add(new cMenuEditBitItem( trVDR("Active"), &flags, tfActive)); #ifdef USE_PINPLUGIN - if (cOsd::pinValid) Add(new cMenuEditChanItem(tr("Channel"), &channel)); + if (PinService::pinValid) Add(new cMenuEditChanItem(tr("Channel"), &channel)); else { cString buf = cString::sprintf("%s\t%s", tr("Channel"), Channels.GetByNumber(channel)->Name()); Add(new cOsdItem(buf)); @@ -144,7 +147,7 @@ void cMenuMyEditTimer::Set() Add(new cMenuEditIntItem( trVDR("Priority"), &priority, 0, MAXPRIORITY)); Add(new cMenuEditIntItem( trVDR("Lifetime"), &lifetime, 0, MAXLIFETIME)); #ifdef USE_PINPLUGIN - if (cOsd::pinValid || !fskProtection) Add(new cMenuEditBoolItem(tr("Childlock"),&fskProtection)); + if (PinService::pinValid || !fskProtection) Add(new cMenuEditBoolItem(tr("Childlock"),&fskProtection)); else { cString buf = cString::sprintf("%s\t%s", tr("Childlock"), fskProtection ? trVDR("yes") : trVDR("no")); Add(new cOsdItem(buf)); diff --git a/menu_searchresults.c b/menu_searchresults.c index 850af9d..f825330 100644 --- a/menu_searchresults.c +++ b/menu_searchresults.c @@ -259,7 +259,7 @@ eOSState cMenuSearchResults::Record(void) #ifdef USE_PINPLUGIN aux = ""; - aux = UpdateAuxValue(aux, "protected", timer->FskProtection() ? "yes" : "no"); + aux = UpdateAuxValue(aux, "protected", timer->HasFlags(tfProtected) ? "yes" : "no"); fullaux = UpdateAuxValue(fullaux, "pin-plugin", aux); #endif diff --git a/menu_whatson.c b/menu_whatson.c index 826e564..f6ac49f 100644 --- a/menu_whatson.c +++ b/menu_whatson.c @@ -580,7 +580,7 @@ eOSState cMenuWhatsOnSearch::Record(void) } #ifdef USE_PINPLUGIN aux = ""; - aux = UpdateAuxValue(aux, "protected", timer->FskProtection() ? "yes" : "no"); + aux = UpdateAuxValue(aux, "protected", timer->HasFlags(tfProtected) ? "yes" : "no"); fullaux = UpdateAuxValue(fullaux, "pin-plugin", aux); #endif SetAux(timer, fullaux); diff --git a/po/ca_ES.po b/po/ca_ES.po index e5c3397..f2f0153 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Jordi Vilŕ <jvila@tinet.org>\n" "Language-Team: Catalan <vdr@linuxtv.org>\n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" msgid "Channel groups" msgstr "" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index 7442117..f8e93a0 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>\n" "Language-Team: Czech <vdr@linuxtv.org>\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" msgid "Channel groups" msgstr "" diff --git a/po/da_DK.po b/po/da_DK.po index 60bbbb9..b4c1a33 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Mogens Elneff <mogens@elneff.dk>\n" "Language-Team: Danish <vdr@linuxtv.org>\n" -"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" msgid "Channel groups" msgstr "" diff --git a/po/de_DE.po b/po/de_DE.po index 7bcf105..00495d8 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Klaus Schmidinger <kls@cadsoft.de>\n" "Language-Team: German <vdr@linuxtv.org>\n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" msgid "Channel groups" msgstr "Kanalgruppen" diff --git a/po/el_GR.po b/po/el_GR.po index 3310a81..1196953 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n" "Language-Team: Greek <vdr@linuxtv.org>\n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-7\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" msgid "Channel groups" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index a2e6a3b..945e0a1 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-11-18 20:09+0200\n" "Last-Translator: bittor from open7x0.org <bittor7x0 _at_ gmail.com>\n" "Language-Team: Spanish <vdr@linuxtv.org>\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" msgid "Channel groups" msgstr "Grupos de canales" diff --git a/po/et_EE.po b/po/et_EE.po index 7286758..ee2e0c1 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n" "Language-Team: Estonian <vdr@linuxtv.org>\n" -"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-13\n" "Content-Transfer-Encoding: 8bit\n" +"Language: et\n" msgid "Channel groups" msgstr "" diff --git a/po/fi_FI.po b/po/fi_FI.po index 0abe07a..0f649c8 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: EPGSearch 0.9.25\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2011-01-04 21:07+0200\n" "Last-Translator: Ville Skyttä <ville.skytta@iki.fi>\n" "Language-Team: Finnish <vdr@linuxtv.org>\n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1280,4 +1280,3 @@ msgstr "%02ldh" #, c-format msgid "in %02ldm" msgstr "%02ldm" - diff --git a/po/fr_FR.po b/po/fr_FR.po index 72558ea..bad58ae 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2008-04-30 08:36+0200\n" "Last-Translator: Patrice Staudt <patrice.staudt@laposte.net>\n" "Language-Team: French <vdr@linuxtv.org>\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" msgid "Channel groups" msgstr "Groupe de chaînes" diff --git a/po/hr_HR.po b/po/hr_HR.po index c303339..f64cec3 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n" "Language-Team: Croatian <vdr@linuxtv.org>\n" -"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" msgid "Channel groups" msgstr "" diff --git a/po/hu_HU.po b/po/hu_HU.po index 7c44ba6..2df84b5 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n" "Language-Team: Hungarian <vdr@linuxtv.org>\n" -"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" msgid "Channel groups" msgstr "" diff --git a/po/it_IT.po b/po/it_IT.po index 5d29eed..cc449ec 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2010-03-29 01:42+0100\n" "Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" "Language-Team: Italian <vdr@linuxtv.org>\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "X-Poedit-Language: Italian\n" "X-Poedit-Country: ITALY\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/po/lt_LT.po b/po/lt_LT.po index 24d2f7e..2dfa94d 100644 --- a/po/lt_LT.po +++ b/po/lt_LT.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.10\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n" "Language-Team: Lithuanian <vdr@linuxtv.org>\n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" msgid "Channel groups" msgstr "kanalo grupÄ—s" diff --git a/po/nl_NL.po b/po/nl_NL.po index 282f9fd..5b0b4b0 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n" "Language-Team: Dutch <vdr@linuxtv.org>\n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" msgid "Channel groups" msgstr "Kanaal groepen" diff --git a/po/nn_NO.po b/po/nn_NO.po index 6f923c0..fb5917f 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Truls Slevigen <truls@slevigen.no>\n" "Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n" -"Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nn\n" msgid "Channel groups" msgstr "" diff --git a/po/pl_PL.po b/po/pl_PL.po index 0c2f4fe..9c17efd 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Michael Rakowski <mrak@gmx.de>\n" "Language-Team: Polish <vdr@linuxtv.org>\n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" msgid "Channel groups" msgstr "" diff --git a/po/pt_PT.po b/po/pt_PT.po index 475a472..502237d 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Paulo Lopes <pmml@netvita.pt>\n" "Language-Team: Portuguese <vdr@linuxtv.org>\n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" msgid "Channel groups" msgstr "" diff --git a/po/ro_RO.po b/po/ro_RO.po index 860f695..f690645 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n" "Language-Team: Romanian <vdr@linuxtv.org>\n" -"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" msgid "Channel groups" msgstr "" diff --git a/po/ru_RU.po b/po/ru_RU.po index 4f636b7..4de17b9 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n" "Language-Team: Russian <vdr@linuxtv.org>\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-5\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" msgid "Channel groups" msgstr "" diff --git a/po/sk_SK.po b/po/sk_SK.po index 5c5c0b2..2668dbc 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: epgsearch\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2009-11-02 09:40+0100\n" "Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n" "Language-Team: Slovak <hrala.milan@gmail.com>\n" -"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" msgid "Channel groups" msgstr "Skupiny kanálov" diff --git a/po/sl_SI.po b/po/sl_SI.po index b1ca3a2..1d36a8a 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n" "Language-Team: Slovenian <vdr@linuxtv.org>\n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" msgid "Channel groups" msgstr "" diff --git a/po/sv_SE.po b/po/sv_SE.po index 76678cd..eae2489 100644 --- a/po/sv_SE.po +++ b/po/sv_SE.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Tomas Prybil <tomas@prybil.se>\n" "Language-Team: Swedish <vdr@linuxtv.org>\n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" msgid "Channel groups" msgstr "" diff --git a/po/tr_TR.po b/po/tr_TR.po index ef233ee..ceebdb2 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n" -"POT-Creation-Date: 2010-12-28 20:19+0100\n" +"POT-Creation-Date: 2011-01-08 12:15+0100\n" "PO-Revision-Date: 2007-08-14 20:21+0200\n" "Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n" "Language-Team: Turkish <vdr@linuxtv.org>\n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-9\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" msgid "Channel groups" msgstr "" |