diff -r 26a5e6ae4cd0 -r 6749d48e48c0 pidgin/gtkdialogs.c
--- a/pidgin/gtkdialogs.c Mon Jan 22 15:58:50 2007 +0000
+++ b/pidgin/gtkdialogs.c Tue Jan 23 01:09:06 2007 +0000
@@ -61,6 +61,11 @@
char *email;
};
+struct artist {
+ char *name;
+ char *email;
+};
+
/* Order: Lead Developer, then Alphabetical by Last Name */
static struct developer developers[] = {
{"Sean Egan", N_("lead developer"), "sean.egan@gmail.com"},
@@ -222,6 +227,11 @@
{NULL, NULL, NULL, NULL}
};
+static struct artist artists[] = {
+ {"Hylke Bons", "h.bons@student.rug.nl"},
+ {NULL, NULL}
+};
+
void
gaim_gtkdialogs_destroy_all()
{
@@ -399,6 +409,21 @@
}
g_string_append(str, "
");
+ /* Artists */
+ g_string_append_printf(str, "%s:
",
+ _("Artists"));
+ for (i = 0; artists[i].name != NULL; i++) {
+ if (artists[i].email != NULL) {
+ g_string_append_printf(str, " %s <%s>
",
+ artists[i].name,
+ artists[i].email, artists[i].email);
+ } else {
+ g_string_append_printf(str, " %s
",
+ artists[i].name);
+ }
+ }
+ g_string_append(str, "
");
+
/* Current Translators */
g_string_append_printf(str, "%s:
",
_("Current Translators"));