summaryrefslogtreecommitdiff
path: root/tools/generate.c
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw@src.gnome.org>2016-01-11 13:35:34 +0800
committerTing-Wei Lan <lantw@src.gnome.org>2017-05-05 11:52:18 +0800
commit74e4542739df792d4a1f42eecd756506140703b0 (patch)
treee845b3b047ad5df5f167a5510eb8170b2ec9642e /tools/generate.c
parent2d7cb109011b694904653eb6969049be36011cf8 (diff)
downloadgobject-introspection-74e4542739df792d4a1f42eecd756506140703b0.tar.gz
g-ir-{compiler,generate,inspect}: Call setlocale in main function
It is required to correctly show translated messages on some locales. https://bugzilla.gnome.org/show_bug.cgi?id=760419
Diffstat (limited to 'tools/generate.c')
-rw-r--r--tools/generate.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/generate.c b/tools/generate.c
index 3e310978..926ffcac 100644
--- a/tools/generate.c
+++ b/tools/generate.c
@@ -20,6 +20,8 @@
* Boston, MA 02111-1307, USA.
*/
+#include <locale.h>
+
#include <glib.h>
#include <glib/gstdio.h>
#include <gmodule.h>
@@ -54,6 +56,8 @@ main (int argc, char *argv[])
g_typelib_check_sanity ();
+ setlocale (LC_ALL, "");
+
context = g_option_context_new ("");
g_option_context_add_main_entries (context, options, NULL);
g_option_context_parse (context, &argc, &argv, &error);