diff options
author | Dan Winship <danw@src.gnome.org> | 2003-01-08 05:04:50 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-01-08 05:04:50 +0800 |
commit | 5c410ab1420beaf492fead41eed01210242d60b2 (patch) | |
tree | 7e6f73fb2d0adc0e7a56a2323663b53262a5b583 | |
parent | daf62987952ae1bf0cf583ef0693c337b627ad11 (diff) | |
download | gsoc2013-evolution-5c410ab1420beaf492fead41eed01210242d60b2.tar.gz gsoc2013-evolution-5c410ab1420beaf492fead41eed01210242d60b2.tar.zst gsoc2013-evolution-5c410ab1420beaf492fead41eed01210242d60b2.zip |
add po
* Makefile.am (SUBDIRS): add po
* configure.in: Move ALL_LINGUAS definition to before
AM_GLIB_GNU_GETTEXT, or else no linguas for you!
svn path=/trunk/; revision=19267
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | configure.in | 22 |
3 files changed, 19 insertions, 15 deletions
@@ -1,3 +1,10 @@ +2003-01-07 Dan Winship <danw@ximian.com> + + * Makefile.am (SUBDIRS): add po + + * configure.in: Move ALL_LINGUAS definition to before + AM_GLIB_GNU_GETTEXT, or else no linguas for you! + 2003-01-06 Dan Winship <danw@ximian.com> * configure.in (AC_INIT): Use "Evolution", not "evolution", since @@ -36,7 +43,7 @@ 2002-11-20 Ettore Perazzoli <ettore@ximian.com> - * configure.in: AC_OUTPUT(my-evoluton/Makefile). + * configure.in: AC_OUTPUT(my-evolution/Makefile). 2002-11-20 Ettore Perazzoli <ettore@ximian.com> diff --git a/Makefile.am b/Makefile.am index f059374d8d..7f67e0fb72 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,7 +41,8 @@ SUBDIRS = \ ui \ default_user \ views \ - wombat + wombat \ + po # omf-install diff --git a/configure.in b/configure.in index 5b97f62508..97902c8bc3 100644 --- a/configure.in +++ b/configure.in @@ -41,8 +41,17 @@ AC_SUBST(HAVE_JW) dnl I18N stuff AC_PROG_INTLTOOL + +ALL_LINGUAS="am az bg ca cs da de el en_AU en_GB es et eu fi fr ga gl hu it ja ko lt lv nl nn no pl pt pt_BR ro ru sk sl sv tr uk vi zh_CN zh_TW" AM_GLIB_GNU_GETTEXT +GETTEXT_PACKAGE=evolution-1.4 +AC_SUBST(GETTEXT_PACKAGE) +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE") + +localedir='$(prefix)/$(DATADIRNAME)/locale' +AC_SUBST(localedir) + dnl Initialize libtool AM_PROG_LIBTOOL @@ -63,19 +72,6 @@ AC_MSG_RESULT(int) AC_DEFINE(socklen_t,int)])]) dnl -dnl Gettext -dnl - -ALL_LINGUAS="am az bg ca cs da de el en_AU en_GB es et eu fi fr ga gl hu it ja ko lt lv nl nn no pl pt pt_BR ro ru sk sl sv tr uk vi zh_CN zh_TW" - -GETTEXT_PACKAGE=evolution-1.4 -AC_SUBST(GETTEXT_PACKAGE) -AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE") - -localedir='$(prefix)/$(DATADIRNAME)/locale' -AC_SUBST(localedir) - -dnl dnl Purify support dnl EVO_PURIFY_SUPPORT |