1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Added a missing "Button$" for the Timer button

This commit is contained in:
Klaus Schmidinger 2006-03-31 13:00:05 +02:00
parent 513b24ccd7
commit 359d43076a
4 changed files with 7 additions and 5 deletions

View File

@ -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 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 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 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> Ralf Klueber <ralf.klueber@vodafone.com>
for reporting a bug in cutting a recording if there is only a single editing mark for reporting a bug in cutting a recording if there is only a single editing mark

View File

@ -4460,3 +4460,4 @@ Video Disk Recorder Revision History
- Fixed handling broken PMT records (thanks to Marcel Wiesweg for pointing out how - Fixed handling broken PMT records (thanks to Marcel Wiesweg for pointing out how
to detect these). to detect these).
- Added a missing "Button$" for the Timer button (thanks to Rolf Ahrenberg).

4
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.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: * Translations provided by:
* *
@ -680,7 +680,7 @@ const tI18nPhrase Phrases[] = {
"Til/Fra", "Til/Fra",
"Zap./Vyp.", "Zap./Vyp.",
}, },
{ "Timer", { "Button$Timer",
"Timer", "Timer",
"",// TODO "",// TODO
"",// TODO "",// TODO

6
menu.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: 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" #include "menu.h"
@ -1105,7 +1105,7 @@ void cMenuWhatsOn::SetHelpKeys(void)
NewHelpKeys = 1; NewHelpKeys = 1;
} }
if (NewHelpKeys != helpKeys) { 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")); SetHelp(Red[NewHelpKeys], now ? tr("Button$Next") : tr("Button$Now"), tr("Button$Schedule"), tr("Button$Switch"));
helpKeys = NewHelpKeys; helpKeys = NewHelpKeys;
} }
@ -1347,7 +1347,7 @@ void cMenuSchedule::SetHelpKeys(void)
NewHelpKeys = 1; NewHelpKeys = 1;
} }
if (NewHelpKeys != helpKeys) { 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")); SetHelp(Red[NewHelpKeys], tr("Button$Now"), tr("Button$Next"));
helpKeys = NewHelpKeys; helpKeys = NewHelpKeys;
} }