diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-08-11 12:39:06 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-08-11 12:39:06 +0200 |
commit | 0f7a4af1683abfe892cb6d05536818a964d8cfe6 (patch) | |
tree | 13bb325aa8f5b390db1227c7875b0e406a43efec /themes.h | |
parent | 5b8fe34a0e8398a901eebe42c9385622d9bd7a22 (diff) | |
download | vdr-0f7a4af1683abfe892cb6d05536818a964d8cfe6.tar.gz vdr-0f7a4af1683abfe892cb6d05536818a964d8cfe6.tar.bz2 |
Switched I18N to gettext
Diffstat (limited to 'themes.h')
-rw-r--r-- | themes.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,13 +4,14 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: themes.h 1.1 2004/05/15 14:22:16 kls Exp $ + * $Id: themes.h 1.2 2007/08/05 14:10:22 kls Exp $ */ #ifndef __THEMES_H #define __THEMES_H #include "i18n.h" +#include "tools.h" #include "osd.h" class cTheme { @@ -18,7 +19,7 @@ public: enum { MaxThemeColors = 128 }; private: char *name; - char *descriptions[I18nNumLanguages]; + cStringList descriptions; char *colorNames[MaxThemeColors]; tColor colorValues[MaxThemeColors]; bool FileNameOk(const char *FileName, bool SetName = false); |