aboutsummaryrefslogtreecommitdiff
path: root/update-po.sh
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-10-12 07:47:06 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-10-12 07:47:06 +0200
commit4689954b45c954ae7232f01e7f66558429194df1 (patch)
tree74e5e37b5b80751731cc775c6a1eb888bb36d685 /update-po.sh
parent4cbd06f291e5fc2d2c3769c31317d3af55869790 (diff)
downloadayatana-indicator-messages-4689954b45c954ae7232f01e7f66558429194df1.tar.gz
ayatana-indicator-messages-4689954b45c954ae7232f01e7f66558429194df1.tar.bz2
ayatana-indicator-messages-4689954b45c954ae7232f01e7f66558429194df1.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..6a5dcaf
--- /dev/null
+++ b/update-po.sh
@@ -0,0 +1,15 @@
+#!/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
+ 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