Changed the "Really restart?" prompt in the call to cPluginManager::Active() in menu.c to "restart anyway?"

This commit is contained in:
Klaus Schmidinger 2006-04-28 12:53:07 +02:00
parent 1cfeb4625e
commit ce991f442b
4 changed files with 29 additions and 3 deletions

View File

@ -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

View File

@ -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).

24
i18n.c
View File

@ -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
menu.c
View File

@ -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;
}