diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-10-12 07:47:18 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-10-12 07:47:18 +0200 |
commit | e98017b08bc1931ae0feb3a04bf534a1c546eaeb (patch) | |
tree | 85080b503e6e98166b5fb08d78839ac7d27b290f | |
parent | 52cfe6e31c6e86cd4229c486593c95aa96c040e4 (diff) | |
download | ayatana-indicator-printers-e98017b08bc1931ae0feb3a04bf534a1c546eaeb.tar.gz ayatana-indicator-printers-e98017b08bc1931ae0feb3a04bf534a1c546eaeb.tar.bz2 ayatana-indicator-printers-e98017b08bc1931ae0feb3a04bf534a1c546eaeb.zip |
update-po(|t).sh: Add gettext update scripts.
-rwxr-xr-x | update-po.sh | 15 | ||||
-rwxr-xr-x | update-pot.sh | 5 |
2 files changed, 20 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 diff --git a/update-pot.sh b/update-pot.sh new file mode 100755 index 0000000..7c1db94 --- /dev/null +++ b/update-pot.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') + +cd po/ && intltool-update --gettext-package ${GETTEXT_DOMAIN} --pot |