diff options
| author | Jochen Dolze <vdr@dolze.de> | 2010-08-01 08:42:12 +0200 |
|---|---|---|
| committer | Jochen Dolze <vdr@dolze.de> | 2010-07-31 22:32:15 +0200 |
| commit | 415f957ea35045b32b96831def310465b35035e1 (patch) | |
| tree | 571819cd67f6d0da19e8d290d65db240473da1fb /timer.cpp | |
| parent | 5785295a438e1ddd874f27b0f89b391d7c976fd7 (diff) | |
| download | vdr-plugin-tvonscreen-415f957ea35045b32b96831def310465b35035e1.tar.gz vdr-plugin-tvonscreen-415f957ea35045b32b96831def310465b35035e1.tar.bz2 | |
Added gettext support
Diffstat (limited to 'timer.cpp')
| -rw-r--r-- | timer.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/timer.cpp b/timer.cpp new file mode 100644 index 0000000..8d0c59d --- /dev/null +++ b/timer.cpp @@ -0,0 +1,24 @@ +/* + * timer.c + * + * See the README file for copyright information and how to reach the author. + * + * $Id: timer.c,v 1.3 2006/06/18 13:59:36 schmitzj Exp $ + * + */ + +#include "magazine.h" + +tvOcMenuEvent::tvOcMenuEvent(const class cEvent *EventInfo) : cMenuEvent(EventInfo,false) +{ + helpLine(); +} + +void tvOcMenuEvent::printMsg(const char *s) +{ + SetStatus(s); +} +void tvOcMenuEvent::helpLine(bool full) +{ + SetHelp(tr("Record"), tr("Search"), full?tr("AutoTimer"):NULL, NULL); +} |
