diff options
author | EuAndreh <eu@euandre.org> | 2021-07-16 11:11:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-07-16 11:11:50 -0300 |
commit | ae9b9b32aea1370478dc6d3daf7b769029d41bde (patch) | |
tree | 1eb96f85fd5f448e1a728b7f706304ed34b79723 | |
parent | .gitignore: Remove redundant /messages.mo (diff) | |
download | git-permalink-ae9b9b32aea1370478dc6d3daf7b769029d41bde.tar.gz git-permalink-ae9b9b32aea1370478dc6d3daf7b769029d41bde.tar.xz |
aux/workflow/l10n.sh: Add --wrapwidth 999 to po2md
-rwxr-xr-x | aux/workflow/l10n.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/workflow/l10n.sh b/aux/workflow/l10n.sh index cbdae7f..66e452a 100755 --- a/aux/workflow/l10n.sh +++ b/aux/workflow/l10n.sh @@ -41,7 +41,7 @@ for from_f in "$@"; do *.en.md) touch "$pofile" md2po --include-codeblocks --quiet --save --po-filepath "$pofile" < "$from_f" - po2md --pofiles "$pofile" --quiet --save "$to_f" < "$from_f" + po2md --pofiles "$pofile" --quiet --save "$to_f" --wrapwidth 999 < "$from_f" ;; *) echo "Unsupported file format: $from_f" >&2 |