we don't want fuzzy matching

This commit is contained in:
HB9HIL
2024-06-20 00:31:37 +02:00
parent f5e3c88a75
commit 76fe73c298
16 changed files with 16 additions and 16 deletions

View File

@@ -62,7 +62,7 @@ head -n 5 "$POT_FILE" > POT_HEADER
# Now we can merge the POT file (PO template) into each found PO file
for po in $(find . -name "*.po"); do
msgmerge --no-wrap --update -vv --backup=none --previous "$po" $POT_FILE;
msgmerge --no-wrap --update -vv --backup=none --no-fuzzy-matching "$po" $POT_FILE;
# Replace the first five lines of the PO file with the POT file header
sed -i '1,5d' "$po"
cat POT_HEADER "$po" > temp.po && mv temp.po "$po"