diff options
author | andreas 'randy' weinberger <vdr@smue.org> | 2010-02-28 12:13:17 +0100 |
---|---|---|
committer | andreas 'randy' weinberger <vdr@smue.org> | 2010-02-28 12:13:17 +0100 |
commit | 4efb6e5dca657a4d04d2e995df762054df227a6e (patch) | |
tree | 11b64601d6bce46c293c0be0aa617befce90ca3c /menu.c | |
parent | e73252dc58ecd5a27c6d8af94028f311f23687ab (diff) | |
download | vdr-plugin-graphlcd-4efb6e5dca657a4d04d2e995df762054df227a6e.tar.gz vdr-plugin-graphlcd-4efb6e5dca657a4d04d2e995df762054df227a6e.tar.bz2 |
added UTF8 support (vdr-graphlcd-0.1.5-utf8_i18n.diff)
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -31,15 +31,15 @@ cGraphLCDMenuSetup::cGraphLCDMenuSetup() { static const char * showDateTimeValues[3]; - showDateTimeValues[0] = tr("no"); - showDateTimeValues[1] = tr("yes"); + showDateTimeValues[0] = trVDR("no"); + showDateTimeValues[1] = trVDR("yes"); showDateTimeValues[2] = tr("not in menu"); static const char * showSymbolsValues[3]; - showSymbolsValues[0] = tr("no"); - showSymbolsValues[1] = tr("yes"); + showSymbolsValues[0] = trVDR("no"); + showSymbolsValues[1] = trVDR("yes"); showSymbolsValues[2] = tr("compressed"); static const char * showLogoValues[4]; - showLogoValues[0] = tr("no"); + showLogoValues[0] = trVDR("no"); showLogoValues[1] = tr("auto"); showLogoValues[2] = tr("medium"); showLogoValues[3] = tr("large"); |