From 23db7a4510cb8b49691f356ba31f067394c229b4 Mon Sep 17 00:00:00 2001
From: Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>
Date: Mon, 17 Dec 2007 22:55:39 +0000
Subject: - Added tooltip for timer status. Closed Bug #396.

---
 Makefile          |  2 +-
 i18n-generated.h  | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 pages/timers.ecpp | 15 ++++++++----
 po/ca_ES.po       |  8 ++++++-
 po/cs_CZ.po       |  8 ++++++-
 po/da_DK.po       |  8 ++++++-
 po/de_DE.po       |  8 ++++++-
 po/el_GR.po       |  8 ++++++-
 po/es_ES.po       |  8 ++++++-
 po/et_EE.po       |  8 ++++++-
 po/fi_FI.po       |  9 ++++++-
 po/fr_FR.po       |  9 ++++++-
 po/hr_HR.po       |  8 ++++++-
 po/hu_HU.po       |  8 ++++++-
 po/it_IT.po       |  9 ++++++-
 po/nl_NL.po       |  9 ++++++-
 po/nn_NO.po       |  8 ++++++-
 po/pl_PL.po       |  8 ++++++-
 po/pt_PT.po       |  8 ++++++-
 po/ro_RO.po       |  8 ++++++-
 po/ru_RU.po       |  8 ++++++-
 po/sl_SI.po       |  8 ++++++-
 po/sv_SE.po       |  8 ++++++-
 po/tr_TR.po       |  8 ++++++-
 24 files changed, 232 insertions(+), 27 deletions(-)

diff --git a/Makefile b/Makefile
index 1e58c71..2142fa3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 #
 # Makefile for a Video Disk Recorder plugin
 #
-# $Id: Makefile,v 1.56 2007/12/17 21:57:29 tadi Exp $
+# $Id: Makefile,v 1.57 2007/12/17 22:55:39 tadi Exp $
 
 # The official name of this plugin.
 # This name will be used in the '-P...' option of VDR to load the plugin.
diff --git a/i18n-generated.h b/i18n-generated.h
index 8267050..e5fcf09 100644
--- a/i18n-generated.h
+++ b/i18n-generated.h
@@ -7707,6 +7707,76 @@ const tI18nPhrase Phrases[] = {
 #if VDRVERSNUM >= 10342
     "",
 #endif
+#if VDRVERSNUM >= 10502
+    "",
+#endif
+  },
+  { "Timer is recording.",
+    "Timer zeichnet auf.",
+    "",
+    "Registrazione serie",
+    "Serie's opnemen",
+    "",
+    "Enregistrement de s�rie",
+    "",
+    "Sarjatallennus",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+#if VDRVERSNUM >= 10302
+    "",
+#endif
+#if VDRVERSNUM >= 10307
+    "",
+#endif
+#if VDRVERSNUM >= 10313
+    "",
+#endif
+#if VDRVERSNUM >= 10316
+    "",
+#endif
+#if VDRVERSNUM >= 10342
+    "",
+#endif
+#if VDRVERSNUM >= 10502
+    "",
+#endif
+  },
+  { "Timer is active.",
+    "Timer ist aktiv.",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+    "",
+#if VDRVERSNUM >= 10302
+    "",
+#endif
+#if VDRVERSNUM >= 10307
+    "",
+#endif
+#if VDRVERSNUM >= 10313
+    "",
+#endif
+#if VDRVERSNUM >= 10316
+    "",
+#endif
+#if VDRVERSNUM >= 10342
+    "",
+#endif
 #if VDRVERSNUM >= 10502
     "",
 #endif
diff --git a/pages/timers.ecpp b/pages/timers.ecpp
index 0eaacd6..581e51c 100644
--- a/pages/timers.ecpp
+++ b/pages/timers.ecpp
@@ -74,7 +74,7 @@ static const size_t maximumDescriptionLength = 300;
 						longDescription = StringEscapeAndBreak(SortedTimers::GetTimerInfo(*timer)) + "<hr>"
 											+ StringEscapeAndBreak(StringWordTruncate(epgEvent->LongDescr(), maximumDescriptionLength))
 											+ "<br/><br/>" + tr("Click to view details.");
-					}	
+					}
 					string currentDay = SortedTimers::GetTimerDays(*timer);
 					SortedTimers::iterator nextTimer = timer; ++nextTimer;
 					bool bottom = false;
@@ -114,19 +114,24 @@ static const size_t maximumDescriptionLength = 300;
 <%cpp>
 					}
 					std::string timerStateImg = "transparent.png";
-					if (timer->Recording())
+					std::string timerStateHint;
+					if (timer->Recording()) {
 						timerStateImg = "arrow_rec.gif";
-					else if (timer->Flags() & tfActive)
+						timerStateHint = tr("Timer is recording.");
+					}
+					else if (timer->Flags() & tfActive) {
 						timerStateImg = "arrow.png";
+						timerStateHint = tr("Timer is active.");
+					}
 </%cpp>
 				<tr>
 
-					<td class="leftcol <? bottom ? "bottomrow" ?>"><img src="<$ LiveSetup().GetThemedLink("img", timerStateImg) $>" alt=""></img></td>
+				<td class="leftcol <? bottom ? "bottomrow" ?>"><img src="<$ LiveSetup().GetThemedLink("img", timerStateImg) $>" alt="" <%cpp> if (!timerStateHint.empty()) { </%cpp><& tooltip.hint text=(timerStateHint) &><%cpp> } </%cpp>></img></td>
 					<td class="<? bottom ? "bottomrow" ?>"><div class="withmargin"><a href="schedule.html?channel=<$ timer->Channel()->Number()$>"><$ timer->Channel()->Name() $></a></div></td>
 					<td class="<? bottom ? "bottomrow" ?>"><div class="withmargin"><$ FormatDateTime(tr("%I:%M %p"), timer->StartTime()) $></div></td>
 					<td class="<? bottom ? "bottomrow" ?>"><div class="withmargin"><$ FormatDateTime(tr("%I:%M %p"), timer->StopTime()) $></div></td>
 					<td class="<? bottom ? "bottomrow" ?>"><div class="withmargin"><a
-%						if (!longDescription.empty()) {		
+%						if (!longDescription.empty()) {
 						<& tooltip.hint text=(longDescription) &><& tooltip.display domId=(epgEvent->Id()) &>
 %					}
 						><$ timer->File() $></a></div>
diff --git a/po/ca_ES.po b/po/ca_ES.po
index a4a3687..324f2ce 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Jordi Vil� <jvila@tinet.org>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -678,6 +678,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 54af0b8..7cfd038 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Vladim�r B�rta <vladimir.barta@k2atmitec.cz>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/da_DK.po b/po/da_DK.po
index e8cf289..4c0380f 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/de_DE.po b/po/de_DE.po
index 82ac646..d9abe5a 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Klaus Schmidinger <kls@cadsoft.de>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr "Thema"
 msgid "No timer defined"
 msgstr "Keine Timer vorhanden"
 
+msgid "Timer is recording."
+msgstr "Timer zeichnet auf."
+
+msgid "Timer is active."
+msgstr "Timer ist aktiv."
+
 msgid "Toggle timer active/inactive"
 msgstr "Timer aktiv/inaktiv schalten"
 
diff --git a/po/el_GR.po b/po/el_GR.po
index bd6a0f8..3c4e0f2 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/es_ES.po b/po/es_ES.po
index 265d5b3..da752dd 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.com>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/et_EE.po b/po/et_EE.po
index 16d6b68..c00fd7d 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/fi_FI.po b/po/fi_FI.po
index fac279d..322d700 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -680,6 +680,13 @@ msgstr "Ulkoasu"
 msgid "No timer defined"
 msgstr "Ajastinta ei ole m��ritelty"
 
+#, fuzzy
+msgid "Timer is recording."
+msgstr "Sarjatallennus"
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr "Aseta ajastin p��lle/pois"
 
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 5b7db8e..3a582b8 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -680,6 +680,13 @@ msgstr "Th
 msgid "No timer defined"
 msgstr "Aucune programmation d�finie"
 
+#, fuzzy
+msgid "Timer is recording."
+msgstr "Enregistrement de s�rie"
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr "Programmation basculer actif/inactif"
 
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 8121e9e..f3b1624 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -677,6 +677,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 4806fbf..1d32489 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -677,6 +677,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/it_IT.po b/po/it_IT.po
index 68e71cf..1e0b479 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Sean Carlos <seanc@libero.it>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -679,6 +679,13 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+#, fuzzy
+msgid "Timer is recording."
+msgstr "Registrazione serie"
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/nl_NL.po b/po/nl_NL.po
index bf30359..d98a7ed 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -679,6 +679,13 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+#, fuzzy
+msgid "Timer is recording."
+msgstr "Serie's opnemen"
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/nn_NO.po b/po/nn_NO.po
index 95b8970..ac2829c 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -677,6 +677,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/pl_PL.po b/po/pl_PL.po
index bf5f1d2..47ad717 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 1bb6b09..8876d01 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Paulo Lopes <pmml@netvita.pt>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/ro_RO.po b/po/ro_RO.po
index fd670b8..ce61598 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -677,6 +677,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 2fc60ce..b9b928a 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/sl_SI.po b/po/sl_SI.po
index ee462e0..609255e 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -677,6 +677,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/sv_SE.po b/po/sv_SE.po
index a286ebd..07e4563 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Tomas Prybil <tomas@prybil.se>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -677,6 +677,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
diff --git a/po/tr_TR.po b/po/tr_TR.po
index 863b78a..baea70b 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: VDR-LIVE 0.2.0\n"
 "Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-12-16 23:49+0100\n"
+"POT-Creation-Date: 2007-12-17 23:42+0100\n"
 "PO-Revision-Date: 2007-08-19 20:15+0200\n"
 "Last-Translator: Oktay Yolge�en <oktay_73@yahoo.de>\n"
 "Language-Team: <vdr@linuxtv.org>\n"
@@ -676,6 +676,12 @@ msgstr ""
 msgid "No timer defined"
 msgstr ""
 
+msgid "Timer is recording."
+msgstr ""
+
+msgid "Timer is active."
+msgstr ""
+
 msgid "Toggle timer active/inactive"
 msgstr ""
 
-- 
cgit v1.2.3