https://xfce.org/download/changelogs/4.12: The "ä" in "Jani Välimaa" appears incorrect twice on the webpage. I will let other person decide the corret character.
In www.xfce.org/lib/translators.php: 'Gatis Kalniņš <> <Gatis Kalniņš' => '>', Suggest correction to: 'Gatis Kalniņš' => '', Or ask "Gatis Kalniņš" is person want an e-mail on there. 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.
diff --git a/lib/translators.php b/lib/translators.php index 5c312b6..caefdff 100644 --- a/lib/translators.php +++ b/lib/translators.php @@ -272,7 +272,7 @@ $translators = array ( 'Sung Jin Gang' => 'ujuc'.ATSIGN.'ujuc'.DOTSIGN.'kr', ), 'Latvian [lv]' => array ( - 'Gatis Kalniņš <> <Gatis Kalniņš' => '>', + 'Gatis Kalniņš' => '', 'Rihards Prieditis' => 'rprieditis'.ATSIGN.'gmail'.DOTSIGN.'com', ), 'Lithuanian [lt]' => array ( diff --git a/pages/about/credits.php b/pages/about/credits.php index 0be73a8..c72cfd7 100644 --- a/pages/about/credits.php +++ b/pages/about/credits.php @@ -30,7 +30,10 @@ function print_translator_credits() $last = end ($people); foreach ($people as $person => $mail) { - echo $person.' <'.mungify_mail($mail).'>'; + echo $person; + + if (!empty($mail)) + echo ' <'.mungify_mail($mail).'>'; if ($mail != $last) echo "<br />\n"; diff --git a/pages/download/changelogs/4.8.php b/pages/download/changelogs/4.8.php deleted file mode 100644 index 04360a7..0000000
-- GitLab Migration Automatic Message -- This bug has been migrated to xfce.org's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.xfce.org/www/www.xfce.org/-/issues/2. Please create an account or use an existing account on one of our supported OAuth providers. If you want to fork to submit patches and merge requests please continue reading here: https://docs.xfce.org/contribute/dev/git/start#gitlab_forks_and_merge_requests Also feel free to reach out to us on the mailing list https://mail.xfce.org/mailman/listinfo/xfce4-dev