[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: master updated (1.5.2-20090328-227-g0dd9b27)



The branch, master has been updated
       via  0dd9b27c559a4056312c0ad6275ba5c31d1aee46 (commit)
      from  52f809520c670690cb73b00b4207feb6860b073d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 gschem/src/gschem.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


=================
 Commit Messages
=================

commit 0dd9b27c559a4056312c0ad6275ba5c31d1aee46
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Commit: Ales Hvezda <ahvezda@xxxxxxxx>

    Fixed bug where none of the translated languages were working correctly.
    
    The meaning and value of the PACKAGE #define has changed in the new build
    system and we don't need to use it in certain places (like when calling
    bindtextdomain or textdomain).
    
    This bug was reported by Carlos Nieves (Thanks!)

:100644 100644 210f64c... 452ab4a... M	gschem/src/gschem.c

=========
 Changes
=========

commit 0dd9b27c559a4056312c0ad6275ba5c31d1aee46
Author: Ales Hvezda <ahvezda@xxxxxxxx>
Commit: Ales Hvezda <ahvezda@xxxxxxxx>

    Fixed bug where none of the translated languages were working correctly.
    
    The meaning and value of the PACKAGE #define has changed in the new build
    system and we don't need to use it in certain places (like when calling
    bindtextdomain or textdomain).
    
    This bug was reported by Carlos Nieves (Thanks!)

diff --git a/gschem/src/gschem.c b/gschem/src/gschem.c
index 210f64c..452ab4a 100644
--- a/gschem/src/gschem.c
+++ b/gschem/src/gschem.c
@@ -346,9 +346,9 @@ int main (int argc, char *argv[])
 #if ENABLE_NLS
   setlocale(LC_ALL, "");
   setlocale(LC_NUMERIC, "POSIX");
-  bindtextdomain(PACKAGE, LOCALEDIR);
-  textdomain(PACKAGE);
-  bind_textdomain_codeset(PACKAGE, "UTF-8");
+  bindtextdomain("geda-gschem", LOCALEDIR);
+  textdomain("geda-gschem");
+  bind_textdomain_codeset("geda-gschem", "UTF-8");
 #endif
 
   /* disable the deprecated warnings in guile 1.6.3 */




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs