A message is now given when an instant recording is started

This commit is contained in:
Klaus Schmidinger 2006-01-04 15:21:55 +01:00
parent 951b3509ea
commit a4ed08b37a
4 changed files with 29 additions and 4 deletions

View File

@ -535,6 +535,7 @@ Helmut Auer <vdr@helmutauer.de>
for implementing a default cRemote::Initialize() for implementing a default cRemote::Initialize()
for suggesting to increase the default value for 'Min. user inactivity' to 300 minutes for suggesting to increase the default value for 'Min. user inactivity' to 300 minutes
for suggesting to add cChannel::LinkChannels() and cChannel::RefChannel() for suggesting to add cChannel::LinkChannels() and cChannel::RefChannel()
for suggesting to give a message when an instant recording is started
Jeremy Hall <jhall@UU.NET> Jeremy Hall <jhall@UU.NET>
for fixing an incomplete initialization of the filter parameters in eit.c for fixing an incomplete initialization of the filter parameters in eit.c

View File

@ -4085,3 +4085,6 @@ Video Disk Recorder Revision History
- The new option "Setup/OSD/Timeout requested channel info" can be used to turn - The new option "Setup/OSD/Timeout requested channel info" can be used to turn
off the automatic timeout of the channel display in case it was invoked by off the automatic timeout of the channel display in case it was invoked by
a press of the "Ok" key (suggested by Thiemo Gehrke). a press of the "Ok" key (suggested by Thiemo Gehrke).
- A message is now given when an instant recording is started (suggested by
Helmut Auer). Actually the code was already there, just commented out - don't
remember why it wasn't active...

25
i18n.c
View File

@ -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.223 2006/01/04 14:41:50 kls Exp $ * $Id: i18n.c 1.224 2006/01/04 15:14:10 kls Exp $
* *
* Translations provided by: * Translations provided by:
* *
@ -5325,7 +5325,7 @@ const tI18nPhrase Phrases[] = {
"Redigeerimine ebaõnnestus", "Redigeerimine ebaõnnestus",
"Redigeringsproces fejlede!", "Redigeringsproces fejlede!",
}, },
{ "scanning recordings...", { "scanning recordings...",//XXX obsolete
"Aufzeichnungen werden durchsucht...", "Aufzeichnungen werden durchsucht...",
"iskanje posnetkov...", "iskanje posnetkov...",
"scansione registrazioni...", "scansione registrazioni...",
@ -5346,6 +5346,27 @@ const tI18nPhrase Phrases[] = {
"salvestuste skaneerimine...", "salvestuste skaneerimine...",
"skanner optagelser...", "skanner optagelser...",
}, },
{ "Recording started",
"Aufzeichnung gestartet",
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
},
{ "Pausing live video...", { "Pausing live video...",
"Live-Signal wird angehalten...", "Live-Signal wird angehalten...",
"Ustavljanje predvajanja v ¾ivo...", "Ustavljanje predvajanja v ¾ivo...",

4
vdr.c
View File

@ -22,7 +22,7 @@
* *
* The project's page is at http://www.cadsoft.de/vdr * The project's page is at http://www.cadsoft.de/vdr
* *
* $Id: vdr.c 1.226 2006/01/04 13:01:13 kls Exp $ * $Id: vdr.c 1.227 2006/01/04 15:09:07 kls Exp $
*/ */
#include <getopt.h> #include <getopt.h>
@ -919,7 +919,7 @@ int main(int argc, char *argv[])
break; break;
case osRecord: DELETENULL(Menu); case osRecord: DELETENULL(Menu);
if (cRecordControls::Start()) if (cRecordControls::Start())
;//XXX Skins.Message(mtInfo, tr("Recording")); Skins.Message(mtInfo, tr("Recording started"));
else else
Skins.Message(mtError, tr("No free DVB device to record!")); Skins.Message(mtError, tr("No free DVB device to record!"));
break; break;