Skip to content
Snippets Groups Projects
Commit 11c6fc2b authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Fixing over-internationalization of ossim keywordlists

parent 940052d6
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@
typedef otb::ConfigurationFile ConfigurationType;\
ConfigurationType::Pointer conf = ConfigurationType::GetInstance();\
std::string lang = conf->GetParameter<std::string>("OTB_LANG");\
setlocale( LC_ALL, lang.c_str() );\
setlocale( LC_MESSAGES, lang.c_str() );\
bindtextdomain( "otb", QUOTEME(OTB_LANG_LOCATION) );\
textdomain( "otb" );\
std::cout << "Language: " << lang << std::endl;\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment