summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--i18n-generated.h70
-rw-r--r--pages/timers.ecpp15
-rw-r--r--po/ca_ES.po8
-rw-r--r--po/cs_CZ.po8
-rw-r--r--po/da_DK.po8
-rw-r--r--po/de_DE.po8
-rw-r--r--po/el_GR.po8
-rw-r--r--po/es_ES.po8
-rw-r--r--po/et_EE.po8
-rw-r--r--po/fi_FI.po9
-rw-r--r--po/fr_FR.po9
-rw-r--r--po/hr_HR.po8
-rw-r--r--po/hu_HU.po8
-rw-r--r--po/it_IT.po9
-rw-r--r--po/nl_NL.po9
-rw-r--r--po/nn_NO.po8
-rw-r--r--po/pl_PL.po8
-rw-r--r--po/pt_PT.po8
-rw-r--r--po/ro_RO.po8
-rw-r--r--po/ru_RU.po8
-rw-r--r--po/sl_SI.po8
-rw-r--r--po/sv_SE.po8
-rw-r--r--po/tr_TR.po8
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
@@ -7711,6 +7711,76 @@ const tI18nPhrase Phrases[] = {
"",
#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
+ },
{ "Toggle timer active/inactive",
"Timer aktiv/inaktiv schalten",
"",
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ème"
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 ""