From b1e1038b7f755138999865af1ffd53047e06b853 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 29 Dec 2012 20:19:39 +0300 Subject: Add debug lines to check how gettext working. --- src/client.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/client.cpp') diff --git a/src/client.cpp b/src/client.cpp index 273806c3a..a47b16388 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -339,7 +339,9 @@ void Client::gameInit() { putenv(const_cast(("LANG=" + lang).c_str())); putenv(const_cast(("LANGUAGE=" + lang).c_str())); + logger->log("set lang: " + lang); } + logger->log("lang1=%s", getenv("LANG")); #ifdef ANDROID bindTextDomain("manaplus", (std::string(PHYSFS_getBaseDir()) + "/locale").c_str()); @@ -357,21 +359,27 @@ void Client::gameInit() #endif #endif #endif + logger->log("lang2=%s", getenv("LANG")); char *locale = setlocale(LC_MESSAGES, lang.c_str()); + logger->log("lang3=%s", getenv("LANG")); if (locale) { logger->log("locale: %s", locale); } else { + logger->log("lang4=%s", getenv("LANG")); locale = setlocale(LC_MESSAGES, (lang + ".utf8").c_str()); + logger->log("lang5=%s", getenv("LANG")); if (locale) logger->log("locale: %s", locale); else logger->log("locale empty"); } bind_textdomain_codeset("manaplus", "UTF-8"); + logger->log("lang6=%s", getenv("LANG")); textdomain("manaplus"); + logger->log("lang7=%s", getenv("LANG")); #endif #if defined(WIN32) || defined(__APPLE__) -- cgit v1.2.3-60-g2f50