blob: 48e85cad68ddf35593d3a731551f912081e0d70c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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"
|