# HG changeset patch # User Gary Kramlich # Date 1185754137 0 # Node ID 8d3e6226e186449258f605063e7ece96b7857797 # Parent c2466041c77b21a12b4289a5326f69019ae39b04 Patch from John Bailey to bring the about window back to the present... diff -r c2466041c77b -r 8d3e6226e186 pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Sun Jul 29 21:45:24 2007 +0000 +++ b/pidgin/gtkdialogs.c Mon Jul 30 00:08:57 2007 +0000 @@ -75,7 +75,6 @@ {"Ka-Hing Cheung", N_("developer"), NULL}, {"Sadrul Habib Chowdhury", N_("developer"), NULL}, {"Mark 'KingAnt' Doliner", N_("developer"), NULL}, - {"Christian 'ChipX86' Hammond", N_("developer & webmaster"), NULL}, {"Casey Harkins", N_("developer"), NULL}, {"Gary 'grim' Kramlich", N_("developer"), NULL}, {"Richard 'rlaager' Laager", N_("developer"), NULL}, @@ -95,11 +94,7 @@ /* Order: Alphabetical by Last Name */ static struct developer patch_writers[] = { {"John 'rekkanoryo' Bailey", NULL, NULL}, - {"Felipe 'shx' Contreras", NULL, NULL}, - {"Decklin Foster", NULL, NULL}, {"Peter 'Bleeter' Lawler", NULL, NULL}, - {"Robert 'Robot101' McQueen", NULL, NULL}, - {"Benjamin Miller", NULL, NULL}, {"Kevin 'SimGuy' Stange", NULL, NULL}, {NULL, NULL, NULL} }; @@ -110,6 +105,7 @@ {"Jim Duchek", N_("maintainer"), "jim@linuxpimps.com"}, {"Rob Flynn", N_("maintainer"), NULL}, {"Adam Fritzler", N_("libfaim maintainer"), NULL}, + {"Christian 'ChipX86' Hammond", N_("developer & webmaster"), NULL}, /* If "lazy bum" translates literally into a serious insult, use something else or omit it. */ {"Syd Logan", N_("hacker and designated driver [lazy bum]"), NULL}, {"Jim Seymour", N_("XMPP developer"), NULL}, @@ -118,6 +114,15 @@ {NULL, NULL, NULL} }; +/* Order: Alphabetical by Last Name */ +static struct developer retired_patch_writers[] = { + {"Felipe 'shx' Contreras", NULL, NULL}, + {"Decklin Foster", NULL, NULL}, + {"Robert 'Robot101' McQueen", NULL, NULL}, + {"Benjamin Miller", NULL, NULL}, + {NULL, NULL, NULL} +}; + /* Order: Code, then Alphabetical by Last Name */ static struct translator current_translators[] = { {N_("Afrikaans"), "af", "Friedel Wolff", "friedel@translate.org.za"}, @@ -432,6 +437,21 @@ } g_string_append(str, "
"); + /* Retired Crazy Patch Writers */ + g_string_append_printf(str, "%s:
", + _("Retired Crazy Patch Writers")); + for (i = 0; retired_patch_writers[i].name != NULL; i++) { + if (retired_patch_writers[i].email != NULL) { + g_string_append_printf(str, " %s <%s>
", + retired_patch_writers[i].name, + retired_patch_writers[i].email, patch_writers[i].email); + } else { + g_string_append_printf(str, " %s
", + retired_patch_writers[i].name); + } + } + g_string_append(str, "
"); + /* Artists */ g_string_append_printf(str, "%s:
", _("Artists"));