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 /config.h | |
parent | 5b8fe34a0e8398a901eebe42c9385622d9bd7a22 (diff) | |
download | vdr-0f7a4af1683abfe892cb6d05536818a964d8cfe6.tar.gz vdr-0f7a4af1683abfe892cb6d05536818a964d8cfe6.tar.bz2 |
Switched I18N to gettext
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.295 2007/07/28 09:45:27 kls Exp $ + * $Id: config.h 1.296 2007/08/10 13:01:52 kls Exp $ */ #ifndef __CONFIG_H @@ -199,7 +199,7 @@ private: public: // Also adjust cMenuSetup (menu.c) when adding parameters here! int __BeginData__; - int OSDLanguage; + char OSDLanguage[I18N_MAX_LOCALE_LEN]; char OSDSkin[MaxSkinName]; char OSDTheme[MaxThemeName]; int PrimaryDVB; @@ -219,8 +219,8 @@ public: int TimeSource; int TimeTransponder; int MarginStart, MarginStop; - int AudioLanguages[I18nNumLanguages + 1]; - int EPGLanguages[I18nNumLanguages + 1]; + int AudioLanguages[I18N_MAX_LANGUAGES + 1]; + int EPGLanguages[I18N_MAX_LANGUAGES + 1]; int EPGScanTimeout; int EPGBugfixLevel; int EPGLinger; |