GNU bug report logs -
#35790
[PATCH] scripts: lint: Handle warnings with a record type.
Previous Next
Reported by: Christopher Baines <mail <at> cbaines.net>
Date: Sat, 18 May 2019 09:43:02 UTC
Severity: normal
Tags: patch
Done: Christopher Baines <mail <at> cbaines.net>
Bug is archived. No further changes may be made.
Full log
Message #17 received at 35790 <at> debbugs.gnu.org (full text, mbox):
Hello,
Christopher Baines <mail <at> cbaines.net> skribis:
> Ludovic Courtès <ludo <at> gnu.org> writes:
[...]
>>> +(define* (make-warning package message
>>> + #:key field location)
>>> + (make-lint-warning
>>> + package
>>> + message
>>
>> In practice MESSAGE is already translated. I think it would be more
>> flexible if it were not; ‘lint-warning-message’ would always return the
>> English message, and it’d be up to the user to call ‘gettext’ on it,
>> like we do for package descriptions.
>>
>> To achieve this, you’d need a little trick so that ‘xgettext’ can still
>> extract the messages, like:
>>
>>
>> (define-syntax-rule make-warning
>> (syntax-rule (G_)
>> ((_ package (G_ message) rest ...)
>> (%make-warning package message rest ...))))
>>
>> where ‘%make-warning’ is the procedure you define above.
>>
>> Then you need an explicit call to ‘G_’ at the point where messages are
>> displayed.
>>
>> Does that make sense?
>
> Yes, but I'm unsure it'll work for all the messages.
>
> Some of them it translates a format string first, then uses that format
> string, and that becomes the message, e.g.
>
> (format #f (G_ "invalid description: ~s") description)
>
> Given that you'd be trying to get the translation for "invalid
> description: guile" for example, I'm not sure you can defer the
> translation without also defering customising the message, if that makes
> sense?
Good point!
A possibility would be to pass ‘make-warning’ a ‘format’ list instead of
a single string:
(make-warning package (list (G_ "~a is bad") 'something) …)
That’d solve the problem but it’d have to be packaged nicely to avoid
having too much boilerplate.
WDYT?
Thanks,
Ludo’.
This bug report was last modified 6 years and 30 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.