build/i18n-init.sh: add git support
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
This commit is contained in:
parent
ec79d9318d
commit
0231c25655
1 changed files with 11 additions and 2 deletions
|
@ -1,14 +1,23 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
PATTERN=$1
|
PATTERN=$1
|
||||||
|
SCM=
|
||||||
|
|
||||||
[ -z "$PATTERN" ] && PATTERN='*.pot'
|
[ -d .svn ] && SCM="svn"
|
||||||
|
[ -d .git ] && SCM="git"
|
||||||
|
|
||||||
|
[ -z "$SCM" ] && {
|
||||||
|
echo "Unsupported SCM tool" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
[ -z "$PATTERN" ] && PATTERN="*.pot"
|
||||||
|
|
||||||
for lang in $(cd po; echo ?? ??_??); do
|
for lang in $(cd po; echo ?? ??_??); do
|
||||||
for file in $(cd po/templates; echo $PATTERN); do
|
for file in $(cd po/templates; echo $PATTERN); do
|
||||||
if [ -f po/templates/$file -a ! -f "po/$lang/${file%.pot}.po" ]; then
|
if [ -f po/templates/$file -a ! -f "po/$lang/${file%.pot}.po" ]; then
|
||||||
msginit --no-translator -l "$lang" -i "po/templates/$file" -o "po/$lang/${file%.pot}.po"
|
msginit --no-translator -l "$lang" -i "po/templates/$file" -o "po/$lang/${file%.pot}.po"
|
||||||
svn add "po/$lang/${file%.pot}.po"
|
$SCM add "po/$lang/${file%.pot}.po"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue