Found this in www.xfce.org/lib/translators.php:
'Gatis Kalniņš <> <Gatis Kalniņš' => '>',
Suggest correction to:
'Gatis Kalniņš' => '',
An empty value still gives "<>" on the webpage so i suggest changing in
file www.xfce.org/pages/about/credits.php:
foreach ($people as $person => $mail)
{
echo $person.' <'.mungify_mail($mail).'>';
if ($mail != $last)
echo "<br />\n";
}
To:
foreach ($people as $person => $mail)
{
echo $person;
if (!empty($mail))
echo ' <'.mungify_mail($mail).'>';
if ($mail != $last)
echo "<br />\n";
}
Maybe functions print_credits and print_translator_credits should go
into one function instead of two as they seem to do almost the same.
_______________________________________________
Xfce-i18n mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce-i18n