summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--HISTORY.DE1
-rw-r--r--conflictcheck.c1
-rw-r--r--conflictcheck.h10
-rw-r--r--menu_commands.c2
-rw-r--r--menu_main.c2
-rw-r--r--menu_myedittimer.c7
-rw-r--r--menu_searchresults.c1
-rw-r--r--menu_whatson.c13
-rw-r--r--po/ca_ES.po11
-rw-r--r--po/cs_CZ.po11
-rw-r--r--po/da_DK.po11
-rw-r--r--po/de_DE.po11
-rw-r--r--po/el_GR.po11
-rw-r--r--po/es_ES.po11
-rw-r--r--po/et_EE.po11
-rw-r--r--po/fi_FI.po11
-rw-r--r--po/fr_FR.po11
-rw-r--r--po/hr_HR.po11
-rw-r--r--po/hu_HU.po11
-rw-r--r--po/it_IT.po11
-rw-r--r--po/lt_LT.po11
-rw-r--r--po/nl_NL.po11
-rw-r--r--po/nn_NO.po11
-rw-r--r--po/pl_PL.po11
-rw-r--r--po/pt_PT.po11
-rw-r--r--po/ro_RO.po11
-rw-r--r--po/ru_RU.po11
-rw-r--r--po/sk_SK.po11
-rw-r--r--po/sl_SI.po11
-rw-r--r--po/sv_SE.po11
-rw-r--r--po/tr_TR.po11
32 files changed, 249 insertions, 42 deletions
diff --git a/HISTORY b/HISTORY
index 7ef02bc..8b97b27 100644
--- a/HISTORY
+++ b/HISTORY
@@ -20,6 +20,7 @@ new:
- Commit 0001-revert-seperate-status-thread.diff by TomJoad@vdr-portal.de
- Commit 0002-fix-incorrect-lock-sequences.diff by TomJoad@vdr-portal.de
- Commit 0003-revert-now-obsolete-pointer-params.diff by TomJoad@vdr-portal.de
+- Commit 0004-some-small-fixes.diff by TomJoad@vdr-portal.de
http://www.vdr-portal.de/board17-developer/board21-vdr-plugins/p1291452-epgsearch-f%C3%BCr-vdr-2-3-x/#post1291452
2013-03-xx; Version 1.0.1 - maintenance release
diff --git a/HISTORY.DE b/HISTORY.DE
index d0ed51d..2a4fa6a 100644
--- a/HISTORY.DE
+++ b/HISTORY.DE
@@ -20,6 +20,7 @@ neu:
- Anwenden 0001-revert-seperate-status-thread.diff von TomJoad@vdr-portal.de
- Anwenden 0002-fix-incorrect-lock-sequences.diff von TomJoad@vdr-portal.de
- Anwenden 0003-revert-now-obsolete-pointer-params.diff von TomJoad@vdr-portal.de
+- Anwenden 0004-some-small-fixes.diff von TomJoad@vdr-portal.de
http://www.vdr-portal.de/board17-developer/board21-vdr-plugins/p1291452-epgsearch-f%C3%BCr-vdr-2-3-x/#post1291452
2013-03-xx: Version 1.0.1 - Maintenance Release
diff --git a/conflictcheck.c b/conflictcheck.c
index 1f16f35..9f34aec 100644
--- a/conflictcheck.c
+++ b/conflictcheck.c
@@ -276,6 +276,7 @@ cList<cConflictCheckTimerObj>* cConflictCheck::CreateCurrentTimerList()
for (ti = vdrtimers->First(); ti; ti = vdrtimers->Next(ti))
{
tMax = max(tMax, ti->StartTime());
+ if (ti->Remote()) continue; // TO BE DONE: remote service request CC
if (!ti->IsSingleEvent()) continue;
// already recording?
int deviceNr = gl_recStatusMonitor->TimerRecDevice(ti)-1;
diff --git a/conflictcheck.h b/conflictcheck.h
index 940f864..079b7ca 100644
--- a/conflictcheck.h
+++ b/conflictcheck.h
@@ -61,17 +61,11 @@ class cConflictCheckTimerObj : public cTimerObj
int Matches(const cEvent *Event, int *Overlap) const;
const cTimer* OrigTimer(const cTimers* timers) const
{
- // http://www.vdr-portal.de/board1-news/board2-vdr-news/p1255344-/#post1255344
- // if patch is accepted, change to
- //return timers->GetTimer(timer);
- return ((cTimers*)timers)->GetTimer((cTimer*)timer);
+ return timers->GetTimer(timer);
}
cTimer* OrigTimer(cTimers* timers)
{
- // http://www.vdr-portal.de/board1-news/board2-vdr-news/p1255344-/#post1255344
- // if patch is accepted, change to
- //return timers->GetTimer(timer);
- return timers->GetTimer((cTimer*)timer);
+ return timers->GetTimer(timer);
}
};
diff --git a/menu_commands.c b/menu_commands.c
index 3c7bfe6..aef97b1 100644
--- a/menu_commands.c
+++ b/menu_commands.c
@@ -192,9 +192,9 @@ eOSState cMenuSearchCommands::Record(void)
vdrtimers->SetModified();
#if VDRVERSNUM > 20300
if (!HandleRemoteTimerModifications(timer)) {
- vdrtimers->Del(timer);
delete timer;
}
+ else
#else
LogFile.iSysLog("timer %s added (active)", *timer->ToDescr());
#endif
diff --git a/menu_main.c b/menu_main.c
index 9b541dc..057a25b 100644
--- a/menu_main.c
+++ b/menu_main.c
@@ -272,9 +272,9 @@ eOSState cMenuSearchMain::Record(void)
vdrtimers->SetModified();
#else
if (!HandleRemoteTimerModifications(timer)) {
- vdrtimers->Del(timer);
delete timer;
}
+ else
#endif
LogFile.iSysLog("timer %s added (active)", *timer->ToDescr());
diff --git a/menu_myedittimer.c b/menu_myedittimer.c
index c578f5b..956f1ae 100644
--- a/menu_myedittimer.c
+++ b/menu_myedittimer.c
@@ -252,7 +252,7 @@ eOSState cMenuMyEditTimer::DeleteTimer()
#if VDRVERSNUM > 20300
LOCK_TIMERS_WRITE;
if (!Timers) {
- ERROR("Epgsearch: Recursive LOCK DeleteTimer failed");
+ ERROR(tr("Epgsearch: Recursive LOCK DeleteTimer failed"));
return osContinue;
}
Timers->SetExplicitModify();
@@ -447,7 +447,7 @@ eOSState cMenuMyEditTimer::ProcessKey(eKeys Key)
{
LOCK_TIMERS_WRITE;
if (!Timers) {
- ERROR("Epgsearch: recursive TIMERS LOCK");
+ ERROR(tr("Epgsearch: recursive TIMERS LOCK"));
return osBack;
}
Timers->SetExplicitModify();
@@ -462,8 +462,9 @@ eOSState cMenuMyEditTimer::ProcessKey(eKeys Key)
#if VDRVERSNUM > 20300
vdrtimers->SetModified();
if (!HandleRemoteTimerModifications(timer)) {
- vdrtimers->Del(timer);
delete timer;
+ ERROR(tr("Epgsearch: RemoteTimerModifications failed"));
+ return osBack;
}
}
}
diff --git a/menu_searchresults.c b/menu_searchresults.c
index 0608244..269c81b 100644
--- a/menu_searchresults.c
+++ b/menu_searchresults.c
@@ -323,7 +323,6 @@ eOSState cMenuSearchResults::Record(void)
vdrtimers->SetModified();
#if VDRVERSNUM > 20300
if (!HandleRemoteTimerModifications(timer)) {
- vdrtimers->Del(timer);
delete timer;
}
#else
diff --git a/menu_whatson.c b/menu_whatson.c
index dd3ca44..bb09be1 100644
--- a/menu_whatson.c
+++ b/menu_whatson.c
@@ -656,16 +656,19 @@ eOSState cMenuWhatsOnSearch::Record(void)
timer->SetRemote(Setup.SVDRPDefaultHost);
#endif
vdrtimers->Add(timer);
- gl_timerStatusMonitor->SetConflictCheckAdvised();
- timer->Matches();
- vdrtimers->SetModified();
#if VDRVERSNUM > 20300
if (!HandleRemoteTimerModifications(timer)) {
- vdrtimers->Del(timer);
delete timer;
+ ERROR("Epgsearch: RemoteTimerModifications failed");
}
-#else
+ else {
+#endif
+ gl_timerStatusMonitor->SetConflictCheckAdvised();
+ timer->Matches();
+ vdrtimers->SetModified();
LogFile.iSysLog("timer %s added (active)", *timer->ToDescr());
+#if VDRVERSNUM > 20300
+ }
#endif
if (HasSubMenu())
diff --git a/po/ca_ES.po b/po/ca_ES.po
index e44add5..47229f6 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -823,6 +823,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 884a5ee..0745f8f 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.7.21\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\n"
"PO-Revision-Date: 2011-10-31 20:21+0200\n"
"Last-Translator: Radek Stastny <dedkus@gmail.com>\n"
"Language-Team: Czech <vdr@linuxtv.org>\n"
@@ -820,6 +820,15 @@ msgstr "S Názvem dílu"
msgid "Button$Without subtitle"
msgstr "Bez Názvu dílu"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr "Rozšířené"
diff --git a/po/da_DK.po b/po/da_DK.po
index 2eccacf..1429488 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -821,6 +821,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/de_DE.po b/po/de_DE.po
index dae3f86..677de82 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -859,6 +859,15 @@ msgstr "Mit Untertitel"
msgid "Button$Without subtitle"
msgstr "Ohne Untertitel"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr "Epgsearch: Rekursiver LOCK Problem beim Löschen eines Timers"
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr "Epgsearch: Rekursiver TIMER Lock"
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr "Epgsearch: Problem bei RemoteTimerModifications"
+
msgid "Button$Extended"
msgstr "Erweitert"
diff --git a/po/el_GR.po b/po/el_GR.po
index 4956913..f2913e6 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -821,6 +821,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/es_ES.po b/po/es_ES.po
index d4139e4..9e10509 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -862,6 +862,15 @@ msgstr "Con subtítulo"
msgid "Button$Without subtitle"
msgstr "Sin subtítulo"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr "Ampliado"
diff --git a/po/et_EE.po b/po/et_EE.po
index d944b0e..b1ef8e1 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -821,6 +821,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/fi_FI.po b/po/fi_FI.po
index ed791fd..26f3996 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: EPGSearch 0.9.25\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -863,6 +863,15 @@ msgstr "Kuvaus"
msgid "Button$Without subtitle"
msgstr "Ei kuvausta"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr "Laaja"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index f6a6a50..7e4dd54 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -862,6 +862,15 @@ msgstr "Avec les sous-titres"
msgid "Button$Without subtitle"
msgstr "Sans sous-titres"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr "Extention"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 3e6c96a..8905804 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -822,6 +822,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 3e8beea..beef721 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -821,6 +821,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/it_IT.po b/po/it_IT.po
index 1e58dc4..c39dd59 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\n"
"PO-Revision-Date: 2011-07-17 17:46+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian <vdr@linuxtv.org>\n"
@@ -865,6 +865,15 @@ msgstr "Con sottotitoli"
msgid "Button$Without subtitle"
msgstr "Senza sottotitoli"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr "Esteso"
diff --git a/po/lt_LT.po b/po/lt_LT.po
index 8ba7d9d..8e1cc12 100644
--- a/po/lt_LT.po
+++ b/po/lt_LT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.7.10\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -867,6 +867,15 @@ msgstr "Su subtitrais"
msgid "Button$Without subtitle"
msgstr "Be subtitrų"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr "Išplėstas"
diff --git a/po/nl_NL.po b/po/nl_NL.po
index a73d63d..43f474e 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -861,6 +861,15 @@ msgstr "Met ondertitel"
msgid "Button$Without subtitle"
msgstr "Zonder ondertitel"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr "Uitgebreid"
diff --git a/po/nn_NO.po b/po/nn_NO.po
index e1f4fd5..4b95723 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -821,6 +821,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/pl_PL.po b/po/pl_PL.po
index 053e68b..6cad7a9 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -821,6 +821,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/pt_PT.po b/po/pt_PT.po
index ffb8ec5..1cdf4e9 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -820,6 +820,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index bce8efd..ec04176 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -821,6 +821,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 2f6a603..f7bb078 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -820,6 +820,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/sk_SK.po b/po/sk_SK.po
index 09510e8..f5580cd 100644
--- a/po/sk_SK.po
+++ b/po/sk_SK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: epgsearch\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -862,6 +862,15 @@ msgstr "S titulkami"
msgid "Button$Without subtitle"
msgstr "Bez titulkov"
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr "Rozšírené"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index 49450a6..930d7ed 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -822,6 +822,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/sv_SE.po b/po/sv_SE.po
index a1e0c73..dcb3f1b 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -821,6 +821,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""
diff --git a/po/tr_TR.po b/po/tr_TR.po
index a3aa221..8180e0c 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2015-01-10 16:38+0100\n"
+"POT-Creation-Date: 2017-05-04 17:01+0200\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"
@@ -820,6 +820,15 @@ msgstr ""
msgid "Button$Without subtitle"
msgstr ""
+msgid "Epgsearch: Recursive LOCK DeleteTimer failed"
+msgstr ""
+
+msgid "Epgsearch: recursive TIMERS LOCK"
+msgstr ""
+
+msgid "Epgsearch: RemoteTimerModifications failed"
+msgstr ""
+
msgid "Button$Extended"
msgstr ""