diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-11-29 12:44:39 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-11-29 12:44:39 +0100 |
commit | 8c807bdb5cf8afab598064622a07d49e0cde665f (patch) | |
tree | 0e7b38d7cb0ad7cdcdf54960a931ef8ffd2ea486 | |
parent | 934756c4f4a95aaf2c41efd87a9e549963c84e63 (diff) | |
download | ayatana-indicator-printers-8c807bdb5cf8afab598064622a07d49e0cde665f.tar.gz ayatana-indicator-printers-8c807bdb5cf8afab598064622a07d49e0cde665f.tar.bz2 ayatana-indicator-printers-8c807bdb5cf8afab598064622a07d49e0cde665f.zip |
update-po.sh: Fix filenames of .ini(.in) and .xml(.in) files in po files.
-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 11c5e2a..d1f375d 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 |