diff --git a/scripts/gettext-merge.sh b/scripts/gettext-merge.sh index 13ccb2991..36c817350 100755 --- a/scripts/gettext-merge.sh +++ b/scripts/gettext-merge.sh @@ -4,6 +4,6 @@ echo "Merging backend translations..." for file in ./assets/locales/**/*.po; do msgmerge --previous --no-fuzzy-matching --update "${file}" ./assets/locales/messages.pot; done echo "Merging frontend translations..." -for file in ./frontend/src/locales/*.po; do msgmerge --previous --no-fuzzy-matching --update "${file}" ./frontend/src/locales/translations.pot; done +for file in ./frontend/src/locales/*.po; do msgmerge --previous --no-fuzzy-matching --no-wrap --update "${file}" ./frontend/src/locales/translations.pot; done echo "Done." \ No newline at end of file