]> www.fi.muni.cz Git - evince.git/blobdiff - libdocument/ev-init.c
[windows] Fix localization on Windows
[evince.git] / libdocument / ev-init.c
index 2b247ebe2e02fd8460b85fa2ec3e0c47919bd881..fb10ac57dc2ec207cd450f703d86c6d9b0df9817 100644 (file)
@@ -21,6 +21,9 @@
 
 #include <glib.h>
 #include <glib/gi18n-lib.h>
+#ifdef G_OS_WIN32
+#include <windows.h>
+#endif
 
 #include "ev-init.h"
 #include "ev-backends-manager.h"
 
 static int ev_init_count;
 
+#ifdef G_OS_WIN32
+
+static HMODULE evdocument_dll = NULL;
+
+#ifdef DLL_EXPORT
+BOOL WINAPI
+DllMain (HINSTANCE hinstDLL,
+        DWORD     fdwReason,
+        LPVOID    lpvReserved)
+{
+       if (fdwReason == DLL_PROCESS_ATTACH)
+               evdocument_dll = hinstDLL;
+
+       return TRUE;
+}
+#endif
+
+#endif
+
+static gchar *
+_ev_get_locale_dir (void)
+{
+#ifdef G_OS_WIN32
+       gchar *install_dir = NULL, *locale_dir;
+       gchar *retval = NULL;
+
+       if (evdocument_dll != NULL)
+               install_dir = g_win32_get_package_installation_directory_of_module (evdocument_dll);
+
+       if (install_dir) {
+               locale_dir = g_build_filename (install_dir,
+                       "share", "locale", NULL);
+
+               retval = g_win32_locale_filename_from_utf8 (locale_dir);
+
+               g_free (install_dir);
+               g_free (locale_dir);
+       }
+
+       if (retval)
+               return retval;
+       else
+               return g_strdup ("");
+#else
+       return g_strdup (GNOMELOCALEDIR);
+#endif
+}
+
 /**
  * ev_init:
  *
@@ -49,7 +100,9 @@ ev_init (void)
                 return have_backends;
 
        /* set up translation catalog */
-       bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
+       gchar *tmp = _ev_get_locale_dir ();
+       bindtextdomain (GETTEXT_PACKAGE, tmp);
+       g_free (tmp);
        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
 
         _ev_debug_init ();