diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-03-31 13:00:05 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-03-31 13:00:05 +0200 |
commit | 359d43076a095d0ad90caab7053392a7488cb418 (patch) | |
tree | 12cff8c334cac1d8e703c0bd0e6cf84391e38556 /menu.c | |
parent | 513b24ccd77394b50128434376261615fd13b71e (diff) | |
download | vdr-359d43076a095d0ad90caab7053392a7488cb418.tar.gz vdr-359d43076a095d0ad90caab7053392a7488cb418.tar.bz2 |
Added a missing "Button$" for the Timer button
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; } |