mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
A message is now given when an instant recording is started
This commit is contained in:
parent
951b3509ea
commit
a4ed08b37a
@ -535,6 +535,7 @@ Helmut Auer <vdr@helmutauer.de>
|
||||
for implementing a default cRemote::Initialize()
|
||||
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 give a message when an instant recording is started
|
||||
|
||||
Jeremy Hall <jhall@UU.NET>
|
||||
for fixing an incomplete initialization of the filter parameters in eit.c
|
||||
|
3
HISTORY
3
HISTORY
@ -4085,3 +4085,6 @@ Video Disk Recorder Revision History
|
||||
- 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
|
||||
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
25
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.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:
|
||||
*
|
||||
@ -5325,7 +5325,7 @@ const tI18nPhrase Phrases[] = {
|
||||
"Redigeerimine ebaõnnestus",
|
||||
"Redigeringsproces fejlede!",
|
||||
},
|
||||
{ "scanning recordings...",
|
||||
{ "scanning recordings...",//XXX obsolete
|
||||
"Aufzeichnungen werden durchsucht...",
|
||||
"iskanje posnetkov...",
|
||||
"scansione registrazioni...",
|
||||
@ -5346,6 +5346,27 @@ const tI18nPhrase Phrases[] = {
|
||||
"salvestuste skaneerimine...",
|
||||
"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...",
|
||||
"Live-Signal wird angehalten...",
|
||||
"Ustavljanje predvajanja v ¾ivo...",
|
||||
|
4
vdr.c
4
vdr.c
@ -22,7 +22,7 @@
|
||||
*
|
||||
* 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>
|
||||
@ -919,7 +919,7 @@ int main(int argc, char *argv[])
|
||||
break;
|
||||
case osRecord: DELETENULL(Menu);
|
||||
if (cRecordControls::Start())
|
||||
;//XXX Skins.Message(mtInfo, tr("Recording"));
|
||||
Skins.Message(mtInfo, tr("Recording started"));
|
||||
else
|
||||
Skins.Message(mtError, tr("No free DVB device to record!"));
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user