diff options
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | menuundelete.c | 2 | ||||
-rw-r--r-- | undelete.c | 4 |
3 files changed, 7 insertions, 1 deletions
@@ -46,5 +46,7 @@ VDR Plugin 'undelete' Revision History - merge patch for gcc-4.4 from Holger Schvestka <hotzenplotz5@gmx.de> - merge patch with changes for VDR >= 1.5.7 from Stone <syphyr@gmail.com> - merge patch with changes for VDR >= 1.7.3 from Thomas Günther <tom@toms-cafe.de> +- merge patch with cosmetic changes: change text summary to info for VDR >= 1.3.25 + from Matthias Schwarzott <zzam@gentoo.org> diff --git a/menuundelete.c b/menuundelete.c index 0402c71..0c24bc7 100644 --- a/menuundelete.c +++ b/menuundelete.c @@ -422,7 +422,7 @@ eOSState cMenuRecordingSelect::FunctionCall(int FunctionNumber) case 7: recording = GetRecording(item); #if VDRVERSNUM >= 10325 if (recording && recording->Info() && recording->Info()->Description() && *recording->Info()->Description()) - state = AddSubMenu(new cMenuText(tr("Summary"), recording->Info()->Description())); + state = AddSubMenu(new cMenuText(tr("Info"), recording->Info()->Description())); #else if (recording && recording->Summary() && *recording->Summary()) state = AddSubMenu(new cMenuText(tr("Summary"), recording->Summary())); @@ -286,7 +286,11 @@ void cPluginUndelete::TestAndSetOSDLanguage(void) FunctionHotKey[4] = tr("Display$purge all"); FunctionHotKey[5] = tr("Display$salvage all"); FunctionHotKey[6] = tr("Open"); +#if VDRVERSNUM >= 10325 + FunctionHotKey[7] = tr("Info"); +#else FunctionHotKey[7] = tr("Summary"); +#endif FunctionHotKey[8] = tr("Display$<--1"); FunctionHotKey[9] = tr("Display$2-->"); FunctionHotKey[10] = tr("Display$disp. keys"); |