49 lines
1.2 KiB
Diff
49 lines
1.2 KiB
Diff
diff -ru eb-4.3/m4/gettext.m4 eb-4.3.new/m4/gettext.m4
|
|
--- eb-4.3/m4/gettext.m4 2006-06-28 09:20:01.000000000 +0200
|
|
+++ eb-4.3.new/m4/gettext.m4 2007-02-06 13:04:25.000000000 +0100
|
|
@@ -37,7 +37,7 @@
|
|
AC_CHECK_HEADERS([locale.h nl_types.h])
|
|
AC_CHECK_FUNCS([setlocale])
|
|
|
|
- AM_LC_MESSAGES
|
|
+ gt_LC_MESSAGES
|
|
|
|
dnl *
|
|
dnl * --enable-nls option
|
|
@@ -138,7 +138,7 @@
|
|
#ifdef HAVE_SETLOCALE
|
|
setlocale(LC_ALL, "");
|
|
#endif
|
|
- bindtextdomain("gttest", ".locale");
|
|
+ bindtextdomain("gttest", "locale");
|
|
textdomain("gttest");
|
|
gettext("foo");
|
|
return 0;
|
|
@@ -174,7 +174,7 @@
|
|
#ifdef HAVE_SETLOCALE
|
|
setlocale(LC_ALL, "");
|
|
#endif
|
|
- bindtextdomain("gttest", ".locale");
|
|
+ bindtextdomain("gttest", "locale");
|
|
textdomain("gttest");
|
|
gettext("foo");
|
|
return 0;
|
|
@@ -211,7 +211,7 @@
|
|
#ifdef HAVE_SETLOCALE
|
|
setlocale(LC_ALL, "");
|
|
#endif
|
|
- bindtextdomain("gttest", ".locale");
|
|
+ bindtextdomain("gttest", "locale");
|
|
textdomain("gttest");
|
|
gettext("foo");
|
|
return 0;
|
|
@@ -248,7 +248,7 @@
|
|
#ifdef HAVE_SETLOCALE
|
|
setlocale(LC_ALL, "");
|
|
#endif
|
|
- bindtextdomain("gttest", ".locale");
|
|
+ bindtextdomain("gttest", "locale");
|
|
textdomain("gttest");
|
|
gettext("foo");
|
|
return 0;
|