Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavy Defaud <davy.defaud@free.fr>2019-06-20 13:27:02 +0300
committerDavy Defaud <davy.defaud@free.fr>2019-06-20 13:27:02 +0300
commite739afe714184416639a1af76e5cc65d1a533d93 (patch)
tree81986a45f08f06e4e5fb0afcf95ece0e0e5f3a6b /scripts
parentff2457cd01802fa50c00f635f63644b9e7892e6f (diff)
Remove msgmerge -N option to enable fuzzy strings
When msgmerge is executed, it’s keeping the translations of original strings that have been modified and mark them as fuzzy, so that translators know that their translated strings have to be checked. -N option disable this behavior and remove the translated strings whose original strings have been modified. This is not what is generally expected… See https://gitlab.com/Remmina/Remmina/merge_requests/1855#note_183435452
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-translations.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-translations.sh b/scripts/update-translations.sh
index c237139f6..114f760a4 100755
--- a/scripts/update-translations.sh
+++ b/scripts/update-translations.sh
@@ -161,7 +161,7 @@ fi
mv remmina.temp.pot remmina.pot
for i in *.po; do
- msgmerge -N --backup=off --update "$i" remmina.pot
+ msgmerge --backup=off --update "$i" remmina.pot
done
for i in "$REMMINATOP"/po/*.po ; do