diff options
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | i18n.c | 4 | ||||
-rw-r--r-- | menu.c | 6 |
4 files changed, 7 insertions, 5 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 184356c3..84611a6d 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -970,6 +970,7 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi> for suggesting to also set the language codes when setting the audio track descriptions for reporting a problem in setting the audio language codes in 'Transfer-Mode' for fixing cReadLine::Read() for lines that end with the infamous "\r\n" + for adding a missing "Button$" for the Timer button Ralf Klueber <ralf.klueber@vodafone.com> for reporting a bug in cutting a recording if there is only a single editing mark @@ -4460,3 +4460,4 @@ Video Disk Recorder Revision History - Fixed handling broken PMT records (thanks to Marcel Wiesweg for pointing out how to detect these). +- Added a missing "Button$" for the Timer button (thanks to Rolf Ahrenberg). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: i18n.c 1.252 2006/03/26 09:17:58 kls Exp $ + * $Id: i18n.c 1.253 2006/03/31 12:58:26 kls Exp $ * * Translations provided by: * @@ -680,7 +680,7 @@ const tI18nPhrase Phrases[] = { "Til/Fra", "Zap./Vyp.", }, - { "Timer", + { "Button$Timer", "Timer", "",// TODO "",// TODO @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.424 2006/02/28 13:58:00 kls Exp $ + * $Id: menu.c 1.425 2006/03/31 12:58:26 kls Exp $ */ #include "menu.h" @@ -1105,7 +1105,7 @@ void cMenuWhatsOn::SetHelpKeys(void) NewHelpKeys = 1; } if (NewHelpKeys != helpKeys) { - const char *Red[] = { NULL, tr("Button$Record"), tr("Timer") }; + const char *Red[] = { NULL, tr("Button$Record"), tr("Button$Timer") }; SetHelp(Red[NewHelpKeys], now ? tr("Button$Next") : tr("Button$Now"), tr("Button$Schedule"), tr("Button$Switch")); helpKeys = NewHelpKeys; } @@ -1347,7 +1347,7 @@ void cMenuSchedule::SetHelpKeys(void) NewHelpKeys = 1; } if (NewHelpKeys != helpKeys) { - const char *Red[] = { NULL, tr("Button$Record"), tr("Timer") }; + const char *Red[] = { NULL, tr("Button$Record"), tr("Button$Timer") }; SetHelp(Red[NewHelpKeys], tr("Button$Now"), tr("Button$Next")); helpKeys = NewHelpKeys; } |