comparison src/gtkdialogs.c @ 10372:618a330c0260

[gaim-migrate @ 11595] (17:31:55) SimGuy: LSchiere2: because the person that redid it didn't think to move the CPWs since they only have one field (17:32:05) SimGuy: the others are all multiple pieces of data (17:32:07) LSchiere2: its confusing and inconsistent now (17:48:00) SimGuy: LSchiere2: http://kevin.simguy.net:8888/patches/gaim-cpw-structify.diff (17:48:03) SimGuy: that should apply to both (17:48:16) SimGuy: the patch to util.c just fixes a spelling error in a comment I fixed like 6 weeks ago (17:48:59) SimGuy: er, both being HEAD and oldstatus committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 14 Dec 2004 22:50:54 +0000
parents fb8e82fa32af
children 151fcda069bc
comparison
equal deleted inserted replaced
10371:fb8e82fa32af 10372:618a330c0260
72 {"Ethan 'Paco-Paco' Blanton", N_("developer"), NULL}, 72 {"Ethan 'Paco-Paco' Blanton", N_("developer"), NULL},
73 {"Etan 'deryni' Reisner", N_("developer"), NULL}, 73 {"Etan 'deryni' Reisner", N_("developer"), NULL},
74 {"Tim 'marv' Ringenbach", N_("developer"), NULL}, 74 {"Tim 'marv' Ringenbach", N_("developer"), NULL},
75 {"Luke 'LSchiere' Schierer", N_("support"), "lschiere@users.sf.net"}, 75 {"Luke 'LSchiere' Schierer", N_("support"), "lschiere@users.sf.net"},
76 {"Stu 'nosnilmot' Tomlinson", N_("developer"), NULL}, 76 {"Stu 'nosnilmot' Tomlinson", N_("developer"), NULL},
77 {NULL, NULL, NULL}
78 };
79
80 static struct developer patch_writers[] = {
81 {"Daniel 'datallah' Atallah", NULL, NULL},
82 {"Ka-Hing 'javabsp' Cheung", NULL, NULL},
83 {"Felipe 'shx' Contreras", NULL, NULL},
84 {"Decklin Foster", NULL, NULL},
85 {"Gary 'grim' Kramlich", NULL, NULL},
86 {"Robert 'Robot101' McQueen", NULL, NULL},
87 {"Benjamin Miller", NULL, NULL},
88 {"Kevin 'SimGuy' Stange", NULL, NULL},
77 {NULL, NULL, NULL} 89 {NULL, NULL, NULL}
78 }; 90 };
79 91
80 static struct developer retired_developers[] = { 92 static struct developer retired_developers[] = {
81 {"Adam Fritzler", N_("former libfaim maintainer"), NULL}, 93 {"Adam Fritzler", N_("former libfaim maintainer"), NULL},
234 g_string_append(str, "<BR/>"); 246 g_string_append(str, "<BR/>");
235 247
236 /* Crazy Patch Writers */ 248 /* Crazy Patch Writers */
237 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>", 249 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>",
238 _("Crazy Patch Writers")); 250 _("Crazy Patch Writers"));
239 g_string_append(str, 251 for (i = 0; patch_writers[i].name != NULL; i++) {
240 " Daniel 'datallah' Atallah<BR>" 252 if (patch_writers[i].email != NULL) {
241 " Ka-Hing 'javabsp' Cheung<BR>" 253 g_string_append_printf(str, " %s &lt;<a href=\"mailto:%s\">%s</a>&gt;<br/>",
242 " Felipe 'shx' Contreras<BR>" 254 patch_writers[i].name,
243 " Decklin Foster<BR>" 255 patch_writers[i].email, patch_writers[i].email);
244 " Gary 'grim' Kramlich<BR>" 256 } else {
245 " Robert 'Robot101' McQueen<BR>" 257 g_string_append_printf(str, " %s<br/>",
246 " Benjamin Miller<BR>" 258 patch_writers[i].name);
247 " Kevin 'SimGuy' Stange<BR>" 259 }
248 "<BR>"); 260 }
261 g_string_append(str, "<BR/>");
249 262
250 /* Retired Developers */ 263 /* Retired Developers */
251 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>", 264 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>",
252 _("Retired Developers")); 265 _("Retired Developers"));
253 for (i = 0; retired_developers[i].name != NULL; i++) { 266 for (i = 0; retired_developers[i].name != NULL; i++) {