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.' &lt;'.mungify_mail($mail).'&gt;';

      if ($mail != $last)
        echo "<br />\n";
    }

To:

    foreach ($people as $person => $mail)
    {
      echo $person;

      if (!empty($mail))
        echo ' &lt;'.mungify_mail($mail).'&gt;';

      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

Reply via email to