2011-01-13 21:48:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
[ -d ./build ] || {
|
|
|
|
echo "Please execute as ./build/mkbasepot.sh" >&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2015-01-08 15:40:09 +00:00
|
|
|
echo -n "Updating modules/luci-base/po/templates/base.pot ... "
|
2011-01-13 21:48:38 +00:00
|
|
|
|
|
|
|
./build/i18n-scan.pl \
|
2024-01-03 13:14:06 +00:00
|
|
|
modules/luci-base modules/luci-compat modules/luci-lua-runtime \
|
|
|
|
modules/luci-mod-network modules/luci-mod-status modules/luci-mod-system \
|
|
|
|
protocols themes \
|
2015-01-08 15:40:09 +00:00
|
|
|
> modules/luci-base/po/templates/base.pot
|
2011-01-13 21:48:38 +00:00
|
|
|
|
|
|
|
echo "done"
|