[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-420-gdba898993

git at osgeo.org git at osgeo.org
Mon Jan 31 06:25:50 PST 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  dba8989936816731bfbcbbe25be36d89e5c18eaf (commit)
      from  fd02e22a4171665e9d04ceb88b0d0410170db851 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit dba8989936816731bfbcbbe25be36d89e5c18eaf
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Jan 31 15:23:13 2022 +0100

    Do not use fuzzy matching when updating translation files
    
    Fuzzy matching can easily results in broken XML

diff --git a/doc/Makefile.in b/doc/Makefile.in
index ccc860df4..b7e093553 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -209,7 +209,7 @@ update-po: $(XML_INPUTS_POT)
       mkdir -p po/$$lang; \
       po=po/$$lang/`basename $$pot .pot`.po; \
       if test -f $$po; then \
-        $(MSGMERGE) --update $$po $$pot; \
+        $(MSGMERGE) --no-fuzzy-matching --update $$po $$pot; \
       else \
         $(MSGINIT) -i $$pot -o $$po -l $$lang --no-translator; \
       fi; \

-----------------------------------------------------------------------

Summary of changes:
 doc/Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list