summaryrefslogtreecommitdiffhomepage
path: root/build/mkbasepot.sh
blob: ce41e30ceec19ddef8bded5ec8772b6c5de862a2 (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 modules/luci-base/po/templates/base.pot ... "

./build/i18n-scan.pl \
	modules/luci-base/ modules/luci-mod-admin-full/ \
	modules/luci-mod-network modules/luci-mod-status modules/luci-mod-system/ \
	protocols/ themes/ \
> modules/luci-base/po/templates/base.pot

echo "done"