summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-05-01 14:57:12 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-05-01 14:57:12 +0200
commiteefd2b88f14d64461a91a4e02439dee96fbcdc42 (patch)
tree338d22c6b7ef79c6cd7e429243d90d8baf20794e
parenta0449f07ef21389824524188d7b8ece7d05b919a (diff)
downloadvdr-eefd2b88f14d64461a91a4e02439dee96fbcdc42.tar.gz
vdr-eefd2b88f14d64461a91a4e02439dee96fbcdc42.tar.bz2
Fixed the unit of the 'SVDRP timeout' setup parameter
-rw-r--r--CONTRIBUTORS3
-rw-r--r--HISTORY2
-rw-r--r--i18n.c26
-rw-r--r--menu.c4
4 files changed, 20 insertions, 15 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 903c7073..afb1db90 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -314,3 +314,6 @@ Simon Dean <linux-dvb@sickhack.com>
Dimitrios Dimitrakos <mail@dimitrios.de>
for translating OSD texts to the Greek language
+
+Marcus Kuba <marcus@kuba4u.de>
+ for reporting a bug in the unit of the "SVDRP timeout" setup parameter
diff --git a/HISTORY b/HISTORY
index 5160e602..86985dfe 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1226,3 +1226,5 @@ Video Disk Recorder Revision History
- The default duration of an instant recording has been increased to 3 hours and
is now configurable in the "Setup/Recording" menu.
- Added Greek language texts (thanks to Dimitrios Dimitrakos).
+- Fixed the unit of the "SVDRP timeout" setup parameter (thanks to Marcus Kuba
+ for reporting this one).
diff --git a/i18n.c b/i18n.c
index fc7cb560..680ad2f7 100644
--- a/i18n.c
+++ b/i18n.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: i18n.c 1.84 2002/05/01 10:30:13 kls Exp $
+ * $Id: i18n.c 1.85 2002/05/01 14:53:55 kls Exp $
*
* Slovenian translations provided by Miha Setina <mihasetina@softhome.net> and Matjaz Thaler <matjaz.thaler@guest.arnes.si>
* Italian translations provided by Alberto Carraro <bertocar@tin.it>
@@ -1742,18 +1742,18 @@ const tPhrase Phrases[] = {
"Tiempo mínimo inactividad (min)",
"Elaxistos xronos mi energis xrisis se lepta",
},
- { "Setup.Miscellaneous$SVDRP timeout (min)",
- "SVDRP Timeout (min)",
- "SVDRP Timeout (min)",
- "Timeout SVDRP (min)",
- "SVDRP Timeout (min)",
- "Timeout SVDRP (min)",
- "Temps maxi SVDRP (min)",
- "Ubrukt SVDRP-levetid (min)",
- "SVDRP odotusaika (min)",
- "Min. brak aktywnosci SVDRP (min)",
- "SVDRP interrupción (min)",
- "SVDRP Timeout (lepta)",
+ { "Setup.Miscellaneous$SVDRP timeout (s)",
+ "SVDRP Timeout (s)",
+ "SVDRP Timeout (s)",
+ "Timeout SVDRP (s)",
+ "SVDRP Timeout (s)",
+ "Timeout SVDRP (s)",
+ "Temps maxi SVDRP (s)",
+ "Ubrukt SVDRP-levetid (s)",
+ "SVDRP odotusaika (s)",
+ "Min. brak aktywnosci SVDRP (s)",
+ "SVDRP interrupción (s)",
+ "SVDRP Timeout (s)",
},
// The days of the week:
{ "MTWTFSS",
diff --git a/menu.c b/menu.c
index 2364ff47..0eeba12c 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.188 2002/04/26 12:43:32 kls Exp $
+ * $Id: menu.c 1.189 2002/05/01 14:54:10 kls Exp $
*/
#include "menu.h"
@@ -2242,7 +2242,7 @@ void cMenuSetupMisc::Set(void)
SetupTitle("Miscellaneous");
Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Min. event timeout (min)"), &data.MinEventTimeout));
Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Min. user inactivity (min)"), &data.MinUserInactivity));
- Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$SVDRP timeout (min)"), &data.SVDRPTimeout));
+ Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$SVDRP timeout (s)"), &data.SVDRPTimeout));
}
// --- cMenuSetup ------------------------------------------------------------