Opened 17 years ago

Closed 17 years ago

#5700 closed (wontfix)

make-messages.py truncate long "Language-Team:"

Reported by: Guilherme M. Gondim (semente) <semente@…> Owned by: nobody
Component: Internationalization Version: dev
Severity: Keywords: make-messages.py
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

If I have the follow line:

"Language-Team: Português do Brasil <django-l10n-portuguese@…>\n"

After I run make-messages.py -l pt_BR, the line is truncate to:

"Language-Team: Português do Brasil <django-l10n-portuguese@googlegroups."
"com>\n"

Change History (3)

comment:1 by Guilherme M. Gondim (semente) <semente@…>, 17 years ago

Sorry, the break line did not appear. The line is truncate to:

"Language-Team: Português do Brasil <django-l10n-portuguese@googlegroups." 
"com>\n"

comment:2 by Malcolm Tredinnick, 17 years ago

Component: UncategorizedInternationalization

comment:3 by Malcolm Tredinnick, 17 years ago

Resolution: wontfix
Status: newclosed

That's done by msguniq. It's actually useful to have extra-long lines split into multiple lines, so I don't want to universally apply the --no-wrap option when calling msguniq.

Unfortunately, the solution for you is to pick a shorter string there.

Note: See TracTickets for help on using tickets.
Back to Top