diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-04-06 18:09:12 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-04-07 12:55:44 +0200 |
commit | 9009f4f385f949f7337d0044efc32a69a0f558c9 (patch) | |
tree | 42c4470fd78e6ebf5353a7456ea454c1b78ec209 /tvguide.c | |
parent | b70112ae508cf51c52626ca989f480ee1351d495 (diff) | |
download | vdr-plugin-tvguide-9009f4f385f949f7337d0044efc32a69a0f558c9.tar.gz vdr-plugin-tvguide-9009f4f385f949f7337d0044efc32a69a0f558c9.tar.bz2 |
A german DESCRIPTION
Diffstat (limited to 'tvguide.c')
-rw-r--r-- | tvguide.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,7 @@ #endif static const char *VERSION = "1.2.5"; -static const char *DESCRIPTION = "A fancy 2d EPG Viewer"; +static const char *DESCRIPTION = tr("A fancy 2d EPG Viewer"); static const char *MAINMENUENTRY = "Tvguide"; class cPluginTvguide : public cPlugin { @@ -35,7 +35,7 @@ public: cPluginTvguide(void); virtual ~cPluginTvguide(); virtual const char *Version(void) { return VERSION; } - virtual const char *Description(void) { return DESCRIPTION; } + virtual const char *Description(void) { return tr(DESCRIPTION); } virtual const char *CommandLineHelp(void); virtual bool ProcessArgs(int argc, char *argv[]); virtual bool Initialize(void); |