diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-28 12:53:07 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-28 12:53:07 +0200 |
commit | ce991f442b0870f114568a7aab4f88b7dd2f7434 (patch) | |
tree | d33f30d0eb23cb7fb7671c1c89bae149b3186309 | |
parent | 1cfeb4625eff61bc7c726e9910bb75b9eefb6bf8 (diff) | |
download | vdr-ce991f442b0870f114568a7aab4f88b7dd2f7434.tar.gz vdr-ce991f442b0870f114568a7aab4f88b7dd2f7434.tar.bz2 |
Changed the "Really restart?" prompt in the call to cPluginManager::Active() in menu.c to "restart anyway?"
-rw-r--r-- | CONTRIBUTORS | 2 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | i18n.c | 24 | ||||
-rw-r--r-- | menu.c | 4 |
4 files changed, 29 insertions, 3 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 36ccac42..f6222676 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -981,6 +981,8 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi> for reporting a bug in handling the color button texts when switching from the 'Schedule' menu of a channel without EPG info to the 'What's on now' menu for reporting a bug in handling empty titles in cEvent::FixEpgBugs() + for suggesting to replace the "Really restart?" prompt in the call to + cPluginManager::Active() in menu.c to "restart anyway?" Ralf Klueber <ralf.klueber@vodafone.com> for reporting a bug in cutting a recording if there is only a single editing mark @@ -4672,3 +4672,5 @@ Video Disk Recorder Revision History - Added a hint about commenting out the line '#define USE_FADVISE' in tools.c in case of problems with replaying in fast forward mode if the video directory is mounted via a Samba share (reported by Andy Grobb). +- Changed the "Really restart?" prompt in the call to cPluginManager::Active() in + menu.c to "restart anyway?" (suggested by Rolf Ahrenberg). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: i18n.c 1.274 2006/04/25 21:24:33 kls Exp $ + * $Id: i18n.c 1.275 2006/04/28 12:50:04 kls Exp $ * * Translations provided by: * @@ -1275,6 +1275,28 @@ const tI18nPhrase Phrases[] = { "Vil du virkelig genstarte?", "Opravdu restartovat?", }, + { "restart anyway?", + "trotzdem neu starten?", + "zares ponoven zagon?", + "riavvio comunque?", + "toch opnieuw starten?", + "quer mesmo reiniciar?", + "redémarrer?", + "starte på nytt likevel?", + "käynnistetäänkö uudelleen?", + "zrestartowaæ mimo to?", + "¿reiniciar igualmente?", + "ÔåëéêÜ íá ãßíåé åðáíåêêßíçóç?", + "vill du ändå starta om?", + "repornesc, totuºi?", + "mégis újraindítani?", + "Reiniciar de totes maneres?", + "ÔÕÙáâÒØâÕÛìÝÞ ßÕàÕ×ÐßãáâØâì?", + "svejedno restart sistema?", + "restart?", + "genstart alligevel?", + "pøesto restartovat?", + }, { "shut down anyway?", "trotzdem ausschalten?", "zares izklopi?", @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.434 2006/04/16 12:20:46 kls Exp $ + * $Id: menu.c 1.435 2006/04/28 12:48:01 kls Exp $ */ #include "menu.h" @@ -2704,7 +2704,7 @@ eOSState cMenuSetup::Restart(void) { if (Interface->Confirm(tr("Really restart?")) && (!cRecordControls::Active() || Interface->Confirm(tr("Recording - restart anyway?"))) - && !cPluginManager::Active(tr("Really restart?"))) { + && !cPluginManager::Active(tr("restart anyway?"))) { cThread::EmergencyExit(true); return osEnd; } |