diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-09-08 21:57:01 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-09-08 21:57:01 +0200 |
commit | 2e979b473b9df4dabc04fb066cd7d2e3b2642a77 (patch) | |
tree | e94b08162d4645432e04919d390fa748eec4cf82 | |
parent | bb0f985d6cd3728db99f46db159524ca1188718a (diff) | |
download | ayatana-indicator-datetime-2e979b473b9df4dabc04fb066cd7d2e3b2642a77.tar.gz ayatana-indicator-datetime-2e979b473b9df4dabc04fb066cd7d2e3b2642a77.tar.bz2 ayatana-indicator-datetime-2e979b473b9df4dabc04fb066cd7d2e3b2642a77.zip |
update-pot.sh: Implement a hack to successfully catch T_([...]) functions, as well.
-rwxr-xr-x | update-pot.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/update-pot.sh b/update-pot.sh index 43a8d06..7df78cf 100755 --- a/update-pot.sh +++ b/update-pot.sh @@ -16,8 +16,17 @@ GETTEXT_DOMAIN=$(cat CMakeLists.txt | grep 'set.*(.*GETTEXT_PACKAGE' | sed -r -e 's/.*\"([^"]+)\"\)/\1/') +# Rename function calls 'T_([...])' to 'T _([...])' +# This hack is needed to also process T_() function calls correctly with intltool-update +# (in time formatter code). +cd src/ && for file in *.cpp *.c; do sed -e "s/ T_/ T _/g" -i $file; done && cd - 1>/dev/null + +# Run the intltool-update... cd po/ && intltool-update --gettext-package ${GETTEXT_DOMAIN} --pot && cd - 1>/dev/null +# And undo the renamings again. +cd src/ && for file in *.cpp *.c; do sed -e "s/ T _/ T_/g" -i $file; done && cd - 1>/dev/null + sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ -e 's/\.ini\.in\.h:/.ini.in:/g' \ -e 's/\.xml\.h:/.xml:/g' \ |