2011-01-13 21:48:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
[ -d ./build ] || {
|
|
|
|
echo "Please execute as ./build/mkbasepot.sh" >&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
echo -n "Updating po/templates/base.pot ... "
|
|
|
|
|
|
|
|
./build/i18n-scan.pl \
|
2011-10-27 00:46:29 +00:00
|
|
|
libs/core/ libs/web/ protocols/ \
|
2011-01-13 21:48:38 +00:00
|
|
|
modules/admin-core/ modules/admin-full/ \
|
|
|
|
themes/base/ themes/openwrt/ \
|
|
|
|
> po/templates/base.pot
|
|
|
|
|
|
|
|
echo "done"
|