aboutsummaryrefslogtreecommitdiff
path: root/update-po.sh
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-10-12 07:41:41 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-10-12 07:42:19 +0200
commitb0c1b8be4a698d5e5ce2f86c6b721768745ec39b (patch)
tree80311de90f440699033847868134d3193e27d511 /update-po.sh
parent59279c846743bb3018fe19f576cee89a45e55ae6 (diff)
downloadayatana-indicator-sound-b0c1b8be4a698d5e5ce2f86c6b721768745ec39b.tar.gz
ayatana-indicator-sound-b0c1b8be4a698d5e5ce2f86c6b721768745ec39b.tar.bz2
ayatana-indicator-sound-b0c1b8be4a698d5e5ce2f86c6b721768745ec39b.zip
update-po(|t).sh: Add gettext update scripts.
Diffstat (limited to 'update-po.sh')
-rwxr-xr-xupdate-po.sh15
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