Update of /cvsroot/phpwiki/phpwiki/locale
In directory usw-pr-cvs1:/tmp/cvs-serv3443/locale
Modified Files:
Makefile
Log Message:
New functions __printf, __sprintf, __vsprintf. These are localized
versions of printf, et. al. They differ from PHP's built-in printf
functions in that:
1. The pass the format string through gettext().
2. They support argument reordering ("%2$s").
Index: Makefile
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/locale/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** Makefile 2001/12/17 23:03:42 1.4
--- Makefile 2001/12/19 05:05:14 1.5
***************
*** 23,27 ****
po/phpwiki.pot : ${PHP_SRC}
! xgettext -L C++ -k_ -o $@ $^
po/%.po : po/phpwiki.pot
--- 23,27 ----
po/phpwiki.pot : ${PHP_SRC}
! xgettext -L C++ -k_ -k__printf -k__sprintf -k__vsprintf -o $@ $^
po/%.po : po/phpwiki.pot
|