modify i18n-add-language.sh so it can: - be run from any path - bootstrap any (or all) po folder(s) with existing language(s) - (partially) update luci.mk with new languages deprecate build/i18n-init.sh Signed-off-by: Paul Donald <newtwen@gmail.com>
28 lines
732 B
Bash
Executable file
28 lines
732 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PATTERN=$1
|
|
SCM=
|
|
|
|
echo $0 "initialises po/ i18n catalogues in empty language sub-folders."
|
|
echo $0 "is deprecated and may be removed in the future."
|
|
echo "Hint: run i18n-add-language.sh instead."
|
|
|
|
[ -d .svn ] && SCM="svn"
|
|
git=$( command -v git 2>/dev/null )
|
|
[ "$git" ] && "$git" status >/dev/null && SCM="git"
|
|
|
|
[ -z "$SCM" ] && {
|
|
echo "Unsupported SCM tool" >&2
|
|
exit 1
|
|
}
|
|
|
|
[ -z "$PATTERN" ] && PATTERN="*.pot"
|
|
|
|
for lang in $(cd po; echo ?? ??_??); do
|
|
for file in $(cd po/templates; echo $PATTERN); do
|
|
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"
|
|
$SCM add "po/$lang/${file%.pot}.po"
|
|
fi
|
|
done
|
|
done
|