diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-10-12 07:44:25 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-10-12 07:45:22 +0200 |
commit | f41bb7dca7578034d1988654e6fc0abfa9e61624 (patch) | |
tree | b3f03ecda492c0c43b0a24c79512a94077c539de | |
parent | 8a1c505899c18b2f265f0ae938093cb6a425fa57 (diff) | |
download | ayatana-indicator-datetime-f41bb7dca7578034d1988654e6fc0abfa9e61624.tar.gz ayatana-indicator-datetime-f41bb7dca7578034d1988654e6fc0abfa9e61624.tar.bz2 ayatana-indicator-datetime-f41bb7dca7578034d1988654e6fc0abfa9e61624.zip |
update-po(|t).sh: Add gettext update scripts.
-rwxr-xr-x | update-po.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/update-po.sh b/update-po.sh new file mode 100755 index 0000000..e87c96b --- /dev/null +++ b/update-po.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +set -x + +GETTEXT_DOMAIN=$(cat CMakeLists.txt | grep 'set.*(.*GETTEXT_PACKAGE' | sed -r -e 's/.*\"([^"]+)\"\)/\1/') + +cd po/ +cat LINGUAS | while read lingua; do + if [ ! -e ${lingua}.po ]; then + msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po + else + intltool-update --gettext-package ${GETTEXT_DOMAIN} $(basename ${lingua}) + fi +done +cd - 1>/dev/null |