diff options
Diffstat (limited to 'plugin.c')
-rw-r--r-- | plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25,13 +25,13 @@ #include <ctype.h> #if APIVERSNUM < 10503 -#include "i18n.h" + #include "i18n.h" #endif static const char * kPluginName = "graphlcd"; static const char *VERSION = "0.2.0-touchcol-git"; -static const char *DESCRIPTION = "Output to graphic LCD"; +static const char *DESCRIPTION = tr("Output to graphic LCD"); static const char *MAINMENUENTRY = NULL; static const char * kDefaultConfigFile = "/etc/graphlcd.conf"; @@ -52,7 +52,7 @@ public: cPluginGraphLCD(); virtual ~cPluginGraphLCD(); virtual const char * Version() { return VERSION; } - virtual const char * Description() { return tr(DESCRIPTION); } + virtual const char * Description() { return DESCRIPTION; } virtual const char * CommandLineHelp(); virtual bool ProcessArgs(int argc, char * argv[]); virtual bool Initialize(); |