Quote:
Originally Posted by Masiello
How to fix it with the word "Messaggi" if is plural, if not is "Messaggio"
Below is the snapshot
|
Hmm, that bit wasn't really designed with translations in mind, but I think you could do it by changing
Code:
$plural = 's';
if ($postcount['unread'] == 1) $plural = '';
to
Code:
$plural = '';
if ($postcount['unread'] == 1) $plural = 'o';
and putting Messaggi{2} in the template.