diff options
Diffstat (limited to 'update-po.sh')
-rwxr-xr-x | update-po.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/update-po.sh b/update-po.sh new file mode 100755 index 0000000..15e9d53 --- /dev/null +++ b/update-po.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +set -x + +GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') + +cd po/ +cat LINGUAS | while read lingua; do touch ${lingua}.po; intltool-update --gettext-package ${GETTEXT_DOMAIN} $(basename ${lingua}); done +cd - 1>/dev/null |