16 lines
299 B
Bash
Executable file
16 lines
299 B
Bash
Executable file
#!/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 \
|
|
libs/core/ libs/web/ \
|
|
modules/admin-core/ modules/admin-full/ \
|
|
themes/base/ themes/openwrt/ \
|
|
> po/templates/base.pot
|
|
|
|
echo "done"
|