Skip to content

Commit

Permalink
Make msgcat wrap lines consistently across systems
Browse files Browse the repository at this point in the history
  • Loading branch information
mattias-p committed Dec 12, 2024
1 parent 319919c commit 5084532
Show file tree
Hide file tree
Showing 7 changed files with 1,128 additions and 1,266 deletions.
2 changes: 1 addition & 1 deletion share/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ all: $(MOFILES) modules.txt
tidy-po:
@tmpdir="`mktemp -d tidy-po.XXXXXXXX`" ;\
trap 'rm -rf "$$tmpdir"' EXIT ;\
for f in $(POFILES) ; do msgcat $$f -o $$tmpdir/$$f && mv -f $$tmpdir/$$f $$f ; done
for f in $(POFILES) ; do LC_ALL=C.UTF-8 msgcat --width=80 $$f -o $$tmpdir/$$f && mv -f $$tmpdir/$$f $$f ; done

update-po: extract-pot
@for f in $(POFILES) ; do msgmerge --update --backup=none --quiet --no-location $(MSGMERGE_OPTS) $$f $(POTFILE) ; done
Expand Down
368 changes: 172 additions & 196 deletions share/da.po

Large diffs are not rendered by default.

388 changes: 184 additions & 204 deletions share/es.po

Large diffs are not rendered by default.

351 changes: 163 additions & 188 deletions share/fi.po

Large diffs are not rendered by default.

560 changes: 265 additions & 295 deletions share/fr.po

Large diffs are not rendered by default.

354 changes: 166 additions & 188 deletions share/nb.po

Large diffs are not rendered by default.

371 changes: 177 additions & 194 deletions share/sv.po

Large diffs are not rendered by default.

0 comments on commit 5084532

Please sign in to comment.