takagi Sat Apr 21 12:07:02 2007 UTC
Modified files:
/smarty/docs configure.in Makefile.in
Log:
added the configuration for Japanese translation.
http://cvs.php.net/viewvc.cgi/smarty/docs/configure.in?r1=1.14&r2=1.15&diff_format=u
Index: smarty/docs/configure.in
diff -u smarty/docs/configure.in:1.14 smarty/docs/configure.in:1.15
--- smarty/docs/configure.in:1.14 Thu Apr 7 16:24:35 2005
+++ smarty/docs/configure.in Sat Apr 21 12:07:02 2007
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.14 2005/04/07 16:24:35 nlopess Exp $
+dnl $Id: configure.in,v 1.15 2007/04/21 12:07:02 takagi Exp $
dnl autoconf initialisation
AC_INIT()
@@ -331,6 +331,13 @@
BUILD_DATE=`date '+%d-%m-%Y'`
fi
+
+ case $withval in
+ ja)
+ BUILD_DATE=`date '+%Y/%m/%d'`
+ ;;
+ *)
+ esac
],[
LANG=en
AC_MSG_RESULT([en (default)])
@@ -341,11 +348,15 @@
case "$LANG" in
ru) ENCODING="windows-1251"
FOP="$FOP -c fop/ru.cfg";;
+ ja) ENCODING="utf-8";;
*) ENCODING="ISO-8859-1";;
esac
+SP_OPTIONS="SP_ENCODING=XML SP_CHARSET_FIXED=YES"
+
AC_SUBST(ENCODING)
AC_SUBST(FOP)
+AC_SUBST(SP_OPTIONS)
dnl }}}
http://cvs.php.net/viewvc.cgi/smarty/docs/Makefile.in?r1=1.14&r2=1.15&diff_format=u
Index: smarty/docs/Makefile.in
diff -u smarty/docs/Makefile.in:1.14 smarty/docs/Makefile.in:1.15
--- smarty/docs/Makefile.in:1.14 Thu Feb 10 16:45:18 2005
+++ smarty/docs/Makefile.in Sat Apr 21 12:07:02 2007
@@ -14,7 +14,7 @@
#
#
-# $Id: Makefile.in,v 1.14 2005/02/10 16:45:18 nlopess Exp $
+# $Id: Makefile.in,v 1.15 2007/04/21 12:07:02 takagi Exp $
#
all: html
@@ -23,8 +23,8 @@
PHP=@PHP@
LANG=@LANG@
-NSGMLS=@NSGMLS@
-JADE=@JADE@ -D . -wno-idref
+NSGMLS=@SP_OPTIONS@ @NSGMLS@
+JADE=@SP_OPTIONS@ @JADE@ -D . -wno-idref
XMLLINT=@XMLLINT@
FOP=@FOP@
XMLDCL=./dtds/dbxml-4.1.2/phpdocxml.dcl
--
Smarty CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|