gresource: Initialize i18n
authorMatthias Clasen <mclasen@redhat.com>
Tue, 24 Jan 2012 22:37:09 +0000 (17:37 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 24 Jan 2012 22:38:23 +0000 (17:38 -0500)
...otherwise translations don't work. Pointed out by Kjartan Maraas.

https://bugzilla.gnome.org/show_bug.cgi?id=668561

gio/gresource-tool.c

index 3e0d95c..4211d56 100644 (file)
@@ -580,6 +580,26 @@ main (int argc, char *argv[])
   gboolean details = FALSE;
   void (* function) (const gchar *, const gchar *, const gchar *, gboolean);
 
+#ifdef G_OS_WIN32
+  extern gchar *_glib_get_locale_dir (void);
+  gchar *tmp;
+#endif
+
+  setlocale (LC_ALL, "");
+  textdomain (GETTEXT_PACKAGE);
+
+#ifdef G_OS_WIN32
+  tmp = _glib_get_locale_dir ();
+  bindtextdomain (GETTEXT_PACKAGE, tmp);
+  g_free (tmp);
+#else
+  bindtextdomain (GETTEXT_PACKAGE, GLIB_LOCALE_DIR);
+#endif
+
+#ifdef HAVE_BIND_TEXTDOMAIN_CODESET
+  bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+#endif
+
   g_type_init ();
 
   if (argc < 2)