fix: disable line wrapping for PO files
This is a relic from old days where text had to be formatted <80 chars so terminals can read them. We have massive screens now.
This commit is contained in:
parent
851a3bcf59
commit
1e83b2e848
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ def write_catalog(app: str, catalog: Catalog, locale: str | None = None) -> Path
|
|||
po_path.parent.mkdir(parents=True)
|
||||
|
||||
with open(po_path, "wb") as f:
|
||||
write_po(f, catalog, sort_output=True, ignore_obsolete=True)
|
||||
write_po(f, catalog, sort_output=True, ignore_obsolete=True, width=None)
|
||||
|
||||
return po_path
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue