]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
GTK graphics dialog: Default to scaling 100% when no scaling or size is given
[lyx.git] / src / gettext.C
index 2f08de503833626e30be66e33c614ec3cd3fe1d3..aae9bc7f5c12b91b6e989775e99fda66c2b7484b 100644 (file)
 
 #include "gettext.h"
 #include "messages.h"
-
+#include "support/environment.h"
 
 #ifdef HAVE_LOCALE_H
 #  include <locale.h>
 #endif
 
 using std::string;
+using lyx::support::setEnv;
 
 
 namespace {
@@ -44,6 +45,8 @@ string const _(string const & str)
 
 void locale_init()
 {
+       // Disable, as otherwise it overrides everything else incl. the doc language
+       setEnv("LANGUAGE", "");
 #  ifdef HAVE_LC_MESSAGES
        setlocale(LC_MESSAGES, "");
 #  endif