Add widget config from community profile to meshwizard
[project/luci.git] / build / i18n-init.sh
index 72199bb38bb1577a376a818cf9b4ece29c4e200b..9a206bb2a769d38213975571a65facea9237dd42 100755 (executable)
@@ -1,10 +1,23 @@
 #!/bin/sh
 
+PATTERN=$1
+SCM=
+
+[ -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 file in $(cd po/templates; echo *.pot); do
-               if [ ! -f "po/$lang/${file%.pot}.po" ]; then
+       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"
-                       svn add "po/$lang/${file%.pot}.po"
+                       $SCM add "po/$lang/${file%.pot}.po"
                fi
        done
 done