diff options
author | Carsten Haitzler <raster@rasterman.com> | 2005-04-11 20:25:52 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2005-04-11 20:25:52 +0000 |
commit | 272ecdcb9d2d57fd94e48e64f62a4ea660adfaad (patch) | |
tree | 232443d0f40cc4d2cf6a6d92518d436ef9cd22d6 /autogen.sh | |
parent | 6f0b2143e520804bdb44f6d36eba04b59dbab2a6 (diff) | |
download | enlightenment-272ecdcb9d2d57fd94e48e64f62a4ea660adfaad.tar.gz |
e17 now CAN be translated. i have done a partial japanese translation for
amusement value (it works). we can add .po's for anything else we like :)
SVN revision: 14143
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index ea0a3321e1..4e9360b962 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,7 +7,21 @@ echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \ && echo "Running autoheader..."; autoheader \ && echo "Running autoconf..."; autoconf \ && echo "Running libtoolize..."; ( libtoolize --automake || glibtoolize --automake ) \ -&& echo "Running automake..."; automake --add-missing --copy --gnu +&& echo "Running automake..."; automake --add-missing --copy --gnu \ +&& echo "Generating gettext enlightenment.pot template"; \ +xgettext \ +-s \ +-n \ +-C \ +-d enlightenment \ +-p po \ +--copyright-holder="Enlightenment development team" \ +--foreign-user \ +--msgid-bugs-address="enlightenment-devel@lists.sourceforge.net" \ +-k -k_ -kd_ \ +--from-code=UTF-8 \ +-o enlightenment.pot \ +`find . -name "*.[ch]" -print` ### If you want this, uncomment it. ./configure "$@" |