diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-11-29 13:14:07 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-11-29 13:16:57 +0100 |
commit | 8df2d9cc4cc35d8ecb0737bb55219aaa813810f7 (patch) | |
tree | 2ed37a7332522ed5346d84d04dc066619a4740e4 | |
parent | b611b31db0cd0e21ac2c3bc8b0b294868bcca159 (diff) | |
download | ayatana-indicator-session-8df2d9cc4cc35d8ecb0737bb55219aaa813810f7.tar.gz ayatana-indicator-session-8df2d9cc4cc35d8ecb0737bb55219aaa813810f7.tar.bz2 ayatana-indicator-session-8df2d9cc4cc35d8ecb0737bb55219aaa813810f7.zip |
update-po.sh: Preserve .pot file when updating *.po files.
-rwxr-xr-x | update-po.sh | 4 |
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 |