diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-11-29 12:45:21 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-11-29 12:45:21 +0100 |
commit | 3719f79614c5639b562a67ba4ff2f6c1857cb183 (patch) | |
tree | 2ad960af65ee8f46db3ae074addf6c0209fe259a /update-po.sh | |
parent | 125fb8de882a76b278d365a10d95a8c9f2f3a7a6 (diff) | |
download | ayatana-indicator-sound-3719f79614c5639b562a67ba4ff2f6c1857cb183.tar.gz ayatana-indicator-sound-3719f79614c5639b562a67ba4ff2f6c1857cb183.tar.bz2 ayatana-indicator-sound-3719f79614c5639b562a67ba4ff2f6c1857cb183.zip |
update-po.sh: Fix filenames of .ini(.in) and .xml(.in) files in po files.
Diffstat (limited to 'update-po.sh')
-rwxr-xr-x | update-po.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/update-po.sh b/update-po.sh index 81a9dc5..7fb959a 100755 --- a/update-po.sh +++ b/update-po.sh @@ -25,5 +25,12 @@ cat LINGUAS | while read lingua; do else intltool-update --gettext-package ${GETTEXT_DOMAIN} $(basename ${lingua}) fi + + sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ + -e 's/\.ini\.in\.h:/.ini.in:/g' \ + -e 's/\.xml\.h:/.xml:/g' \ + -e 's/\.ini\.h:/.ini:/g' \ + -i ${lingua}.po + done cd - 1>/dev/null |