Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=2562641ce0ed35ef53b3175221029671cb3924be

commit 2562641ce0ed35ef53b3175221029671cb3924be
Author: Priyank <[EMAIL PROTECTED]>
Date:   Sun Mar 23 21:03:53 2008 +0530

Fixed the translations bug with gfpm.glade
* The domain argument to glade_xml_new() should be NULL and not "UTF-8".
* Thanks to Michel Hermier for the solution.

diff --git a/src/gfpm.c b/src/gfpm.c
index 8aead53..a3af06f 100644
--- a/src/gfpm.c
+++ b/src/gfpm.c
@@ -49,7 +49,7 @@ main (int argc, char *argv[])

path = g_strdup_printf ("%s%s", PREFIX, UI_FILE);

-       if (!(xml=glade_xml_new(path, NULL, "UTF-8")))
+       if (!(xml=glade_xml_new(path, NULL, NULL)))
{
gfpm_error (_("Interface initialization Failed"), _("Failed to initialize 
interface"));
return 1;
_______________________________________________
Frugalware-git mailing list
[email protected]
http://frugalware.org/mailman/listinfo/frugalware-git

Reply via email to