summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-03-31 13:00:05 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-03-31 13:00:05 +0200
commit359d43076a095d0ad90caab7053392a7488cb418 (patch)
tree12cff8c334cac1d8e703c0bd0e6cf84391e38556
parent513b24ccd77394b50128434376261615fd13b71e (diff)
downloadvdr-359d43076a095d0ad90caab7053392a7488cb418.tar.gz
vdr-359d43076a095d0ad90caab7053392a7488cb418.tar.bz2
Added a missing "Button$" for the Timer button
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY1
-rw-r--r--i18n.c4
-rw-r--r--menu.c6
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
diff --git a/HISTORY b/HISTORY
index dc278bbd..025cc090 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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).
diff --git a/i18n.c b/i18n.c
index f4760f6e..63977cec 100644
--- a/i18n.c
+++ b/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.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
diff --git a/menu.c b/menu.c
index f3c9fab9..4f503fb8 100644
--- a/menu.c
+++ b/menu.c
@@ -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;
}