mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Changed the "Really restart?" prompt in the call to cPluginManager::Active() in menu.c to "restart anyway?"
This commit is contained in:
parent
1cfeb4625e
commit
ce991f442b
@ -981,6 +981,8 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi>
|
|||||||
for reporting a bug in handling the color button texts when switching from the
|
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
|
'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 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>
|
Ralf Klueber <ralf.klueber@vodafone.com>
|
||||||
for reporting a bug in cutting a recording if there is only a single editing mark
|
for reporting a bug in cutting a recording if there is only a single editing mark
|
||||||
|
2
HISTORY
2
HISTORY
@ -4672,3 +4672,5 @@ Video Disk Recorder Revision History
|
|||||||
- Added a hint about commenting out the line '#define USE_FADVISE' in tools.c in
|
- 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
|
case of problems with replaying in fast forward mode if the video directory is
|
||||||
mounted via a Samba share (reported by Andy Grobb).
|
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
24
i18n.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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:
|
* Translations provided by:
|
||||||
*
|
*
|
||||||
@ -1275,6 +1275,28 @@ const tI18nPhrase Phrases[] = {
|
|||||||
"Vil du virkelig genstarte?",
|
"Vil du virkelig genstarte?",
|
||||||
"Opravdu restartovat?",
|
"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?",
|
{ "shut down anyway?",
|
||||||
"trotzdem ausschalten?",
|
"trotzdem ausschalten?",
|
||||||
"zares izklopi?",
|
"zares izklopi?",
|
||||||
|
4
menu.c
4
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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"
|
#include "menu.h"
|
||||||
@ -2704,7 +2704,7 @@ eOSState cMenuSetup::Restart(void)
|
|||||||
{
|
{
|
||||||
if (Interface->Confirm(tr("Really restart?"))
|
if (Interface->Confirm(tr("Really restart?"))
|
||||||
&& (!cRecordControls::Active() || Interface->Confirm(tr("Recording - restart anyway?")))
|
&& (!cRecordControls::Active() || Interface->Confirm(tr("Recording - restart anyway?")))
|
||||||
&& !cPluginManager::Active(tr("Really restart?"))) {
|
&& !cPluginManager::Active(tr("restart anyway?"))) {
|
||||||
cThread::EmergencyExit(true);
|
cThread::EmergencyExit(true);
|
||||||
return osEnd;
|
return osEnd;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user