aboutsummaryrefslogtreecommitdiff
path: root/update-po.sh
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-11-29 13:24:56 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-11-29 13:24:56 +0100
commit97e034641b635723ad34207c9f00242a53869545 (patch)
treecf32fd1fee92d4ed3cf7180b28f2d29c0d756319 /update-po.sh
parent9cf2e6ce94a3e6268b8df6669346500485996ac2 (diff)
downloadayatana-indicator-sound-97e034641b635723ad34207c9f00242a53869545.tar.gz
ayatana-indicator-sound-97e034641b635723ad34207c9f00242a53869545.tar.bz2
ayatana-indicator-sound-97e034641b635723ad34207c9f00242a53869545.zip
update-po.sh: Preserve .pot file when updating *.po files.
Diffstat (limited to 'update-po.sh')
-rwxr-xr-xupdate-po.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/update-po.sh b/update-po.sh
index 7fb959a..dff6f3a 100755
--- a/update-po.sh
+++ b/update-po.sh
@@ -18,6 +18,8 @@ set -x
GETTEXT_DOMAIN=$(cat CMakeLists.txt | grep 'set.*(.*GETTEXT_PACKAGE' | sed -r -e 's/.*\"([^"]+)\"\)/\1/')
+cp po/${GETTEXT_DOMAIN}.pot po/${GETTEXT_DOMAIN}.pot~
+
cd po/
cat LINGUAS | while read lingua; do
if [ ! -e ${lingua}.po ]; then
@@ -34,3 +36,5 @@ cat LINGUAS | while read lingua; do
done
cd - 1>/dev/null
+
+mv po/${GETTEXT_DOMAIN}.pot~ po/${GETTEXT_DOMAIN}.pot