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 \
|
2014-06-13 09:40:40 +00:00
|
|
|
modules/base/ modules/admin-full/ \
|
|
|
|
protocols/ themes/openwrt/ \
|
2011-01-13 21:48:38 +00:00
|
|
|
> po/templates/base.pot
|
|
|
|
|
|
|
|
echo "done"
|