diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-08-11 14:27:02 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-08-11 14:27:02 +0200 |
commit | 26e2e4dee23d000f260c779947824988a4bff52c (patch) | |
tree | 5109ae55167cc95337b43c9764bf09d6dfbb2ac2 /i18n.c | |
parent | 84184e2c03918adb9d9ed3ab0a26ddd89d124690 (diff) | |
download | vdr-26e2e4dee23d000f260c779947824988a4bff52c.tar.gz vdr-26e2e4dee23d000f260c779947824988a4bff52c.tar.bz2 |
Using system locale for i18n by default
Diffstat (limited to 'i18n.c')
-rw-r--r-- | i18n.c | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: i18n.c 1.305 2007/08/11 11:33:23 kls Exp $ + * $Id: i18n.c 1.306 2007/08/11 14:27:02 kls Exp $ * * */ @@ -57,10 +57,13 @@ void I18nInitialize(void) char *OldLocale = strdup(setlocale(LC_MESSAGES, NULL)); for (int i = 0; i < Locales.Size(); i++) { if (i < I18N_MAX_LANGUAGES - 1) { - setlocale(LC_MESSAGES, Locales[i]); - LanguageLocales.Append(strdup(Locales[i])); - LanguageNames.Append(strdup(gettext(LanguageName))); - LanguageCodes.Append(strdup(gettext(LanguageCode))); + if (setlocale(LC_MESSAGES, Locales[i])) { + LanguageLocales.Append(strdup(Locales[i])); + LanguageNames.Append(strdup(gettext(LanguageName))); + LanguageCodes.Append(strdup(gettext(LanguageCode))); + if (strstr(OldLocale, Locales[i]) == OldLocale) + CurrentLanguage = LanguageLocales.Size() - 1; + } } else esyslog("ERROR: too many locales - increase I18N_MAX_LANGUAGES!"); |