diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-06-19 14:13:13 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-06-19 14:13:31 +0200 |
commit | 48a7216f99457ece6e4958016260652063358acf (patch) | |
tree | d15552671733f3df91687b8a8fd6548960d6de45 /tools/translations/Makefile | |
parent | 425962a3aa1fa6068d38e7bbde2baaa501039975 (diff) |
i18n: Update and merge translation templates
Also switched the wrapping length to 79 chars instead of 80,
which seems to be what Weblate uses by default (as well as Poedit).
Diffstat (limited to 'tools/translations/Makefile')
-rw-r--r-- | tools/translations/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/translations/Makefile b/tools/translations/Makefile index 8f336694e8..bea20e877d 100644 --- a/tools/translations/Makefile +++ b/tools/translations/Makefile @@ -12,7 +12,7 @@ update: merge: @for po in $(POFILES); do \ echo -e "\nMerging $$po..."; \ - msgmerge -w 80 -C $$po $$po $(TEMPLATE) > "$$po".new; \ + msgmerge -w 79 -C $$po $$po $(TEMPLATE) > "$$po".new; \ mv -f "$$po".new $$po; \ done |