diff options
author | Ting-Wei Lan <lantw@src.gnome.org> | 2016-01-11 13:35:34 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw@src.gnome.org> | 2017-05-05 11:52:18 +0800 |
commit | 74e4542739df792d4a1f42eecd756506140703b0 (patch) | |
tree | e845b3b047ad5df5f167a5510eb8170b2ec9642e | |
parent | 2d7cb109011b694904653eb6969049be36011cf8 (diff) | |
download | gobject-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
-rw-r--r-- | tools/compiler.c | 3 | ||||
-rw-r--r-- | tools/g-ir-inspect.c | 3 | ||||
-rw-r--r-- | tools/generate.c | 4 |
3 files changed, 10 insertions, 0 deletions
diff --git a/tools/compiler.c b/tools/compiler.c index 9485761c..06d87d91 100644 --- a/tools/compiler.c +++ b/tools/compiler.c @@ -20,6 +20,7 @@ */ #include <errno.h> +#include <locale.h> #include <string.h> #include <glib.h> @@ -148,6 +149,8 @@ main (int argc, char ** argv) gint i; 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); diff --git a/tools/g-ir-inspect.c b/tools/g-ir-inspect.c index 6152f9af..2dfe61c2 100644 --- a/tools/g-ir-inspect.c +++ b/tools/g-ir-inspect.c @@ -22,6 +22,7 @@ #include <glib.h> #include <girepository.h> #include <stdlib.h> +#include <locale.h> static void print_shlibs (const gchar *namespace) @@ -77,6 +78,8 @@ main (gint argc, { NULL }, }; + setlocale (LC_ALL, ""); + GOptionContext *context = g_option_context_new ("- Inspect GI typelib"); g_option_context_add_main_entries (context, options, NULL); if (!g_option_context_parse (context, &argc, &argv, &error)) 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); |