From c9a4c8658e1cf689e8565d664677dfd7f56f023d Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Wed, 29 Nov 2017 13:24:22 +0100 Subject: update-po.sh: Preserve .pot file when updating *.po files. --- update-po.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'update-po.sh') diff --git a/update-po.sh b/update-po.sh index d1f375d..dff6f3a 100755 --- a/update-po.sh +++ b/update-po.sh @@ -16,12 +16,14 @@ set -x # You should have received a copy of the GNU General Public License # along with this program. If not, see -GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') +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 - msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po + msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po else intltool-update --gettext-package ${GETTEXT_DOMAIN} $(basename ${lingua}) fi @@ -34,3 +36,5 @@ cat LINGUAS | while read lingua; do done cd - 1>/dev/null + +mv po/${GETTEXT_DOMAIN}.pot~ po/${GETTEXT_DOMAIN}.pot -- cgit v1.2.3