[Mailman-i18n] another question
Barry A. Warsaw
barry@zope.com
Mon, 1 Oct 2001 17:47:19 -0400
>>>>> "SP" == Simone Piunno <pioppo@ferrara.linux.it> writes:
SP> Now, I suppose %(plu)s is for the english plural "s", but
SP> italian has nothing similar... I understand that removing the
SP> variable reference breaks the program... so what can I do?
Yes, this is bogus. I'm rewriting that section of code to be:
if num_concealed == 1:
concealed = _('<em>(1 private member not shown)</em>')
elif num_concealed > 1:
concealed = _(
'<em>(%(num_concealed)d private members not shown)</em>')
else:
concealed = ''
so you'll have two separate entries to translate.
-Barry