comparison pidgin/gtkdialogs.c @ 26817:3912f55a1633

propagate from branch 'im.pidgin.pidgin' (head fbb4fe5da444943eecc76bdcd6c8ba967790b6c8) to branch 'im.pidgin.cpw.darkrain42.xmpp.bosh' (head 601bc627c9430320848361f0ed81c6c4c6ee53e0)
author Paul Aurich <paul@darkrain42.org>
date Tue, 28 Apr 2009 18:43:57 +0000
parents 89f7e9924204
children 869455317715
comparison
equal deleted inserted replaced
26743:de9816c970fe 26817:3912f55a1633
71 }; 71 };
72 72
73 /* Order: Alphabetical by Last Name */ 73 /* Order: Alphabetical by Last Name */
74 static const struct developer developers[] = { 74 static const struct developer developers[] = {
75 {"Daniel 'datallah' Atallah", NULL, NULL}, 75 {"Daniel 'datallah' Atallah", NULL, NULL},
76 {"Paul 'darkrain42' Aurich", NULL, NULL },
76 {"John 'rekkanoryo' Bailey", N_("bug master"), "rekkanoryo@pidgin.im"}, 77 {"John 'rekkanoryo' Bailey", N_("bug master"), "rekkanoryo@pidgin.im"},
77 {"Ethan 'Paco-Paco' Blanton", NULL, NULL}, 78 {"Ethan 'Paco-Paco' Blanton", NULL, NULL},
78 {"Hylke Bons", N_("artist"), "h.bons@student.rug.nl"}, 79 {"Hylke Bons", N_("artist"), "h.bons@student.rug.nl"},
79 {"Thomas Butter", NULL, NULL}, 80 {"Thomas Butter", NULL, NULL},
80 /* feel free to not translate this */ 81 /* feel free to not translate this */
88 {"Richard 'wabz' Nelson", NULL, NULL}, 89 {"Richard 'wabz' Nelson", NULL, NULL},
89 {"Christopher 'siege' O'Brien", NULL, "taliesein@users.sf.net"}, 90 {"Christopher 'siege' O'Brien", NULL, "taliesein@users.sf.net"},
90 {"Bartosz Oler", NULL, NULL}, 91 {"Bartosz Oler", NULL, NULL},
91 {"Etan 'deryni' Reisner", NULL, NULL}, 92 {"Etan 'deryni' Reisner", NULL, NULL},
92 {"Tim 'marv' Ringenbach", NULL, NULL}, 93 {"Tim 'marv' Ringenbach", NULL, NULL},
94 {"Michael 'Maiku' Ruprecht", N_("voice and video"), NULL},
93 {"Elliott 'QuLogic' Sales de Andrade", NULL, NULL}, 95 {"Elliott 'QuLogic' Sales de Andrade", NULL, NULL},
94 {"Luke 'LSchiere' Schierer", N_("support"), "lschiere@users.sf.net"}, 96 {"Luke 'LSchiere' Schierer", N_("support"), "lschiere@users.sf.net"},
95 {"Evan Schoenberg", NULL, NULL}, 97 {"Evan Schoenberg", NULL, NULL},
96 {"Kevin 'SimGuy' Stange", N_("webmaster"), NULL}, 98 {"Kevin 'SimGuy' Stange", N_("webmaster"), NULL},
97 {"Will 'resiak' Thompson", NULL, NULL}, 99 {"Will 'resiak' Thompson", NULL, NULL},
99 {NULL, NULL, NULL} 101 {NULL, NULL, NULL}
100 }; 102 };
101 103
102 /* Order: Alphabetical by Last Name */ 104 /* Order: Alphabetical by Last Name */
103 static const struct developer patch_writers[] = { 105 static const struct developer patch_writers[] = {
104 {"Paul 'darkrain42' Aurich", NULL, NULL },
105 {"Marcus 'malu' Lundblad", NULL, NULL}, 106 {"Marcus 'malu' Lundblad", NULL, NULL},
106 {"Dennis 'EvilDennisR' Ristuccia", N_("Senior Contributor/QA"), NULL}, 107 {"Dennis 'EvilDennisR' Ristuccia", N_("Senior Contributor/QA"), NULL},
107 {"Peter 'Fmoo' Ruibal", NULL, NULL}, 108 {"Peter 'Fmoo' Ruibal", NULL, NULL},
108 {"Gabriel 'Nix' Schulhof", NULL, NULL}, 109 {"Gabriel 'Nix' Schulhof", NULL, NULL},
109 {"Jorge 'Masca' VillaseƱor", NULL, NULL}, 110 {"Jorge 'Masca' VillaseƱor", NULL, NULL},
425 #if 0 /* Don't versionize the logo when the logo has the version in it */ 426 #if 0 /* Don't versionize the logo when the logo has the version in it */
426 pidgin_logo_versionize(&pixbuf, logo); 427 pidgin_logo_versionize(&pixbuf, logo);
427 #endif 428 #endif
428 gtk_widget_destroy(logo); 429 gtk_widget_destroy(logo);
429 logo = gtk_image_new_from_pixbuf(pixbuf); 430 logo = gtk_image_new_from_pixbuf(pixbuf);
430 gdk_pixbuf_unref(pixbuf); 431 g_object_unref(G_OBJECT(pixbuf));
431 /* Insert the logo */ 432 /* Insert the logo */
432 obj = gtk_widget_get_accessible(logo); 433 obj = gtk_widget_get_accessible(logo);
433 tmp = g_strconcat(PIDGIN_NAME, " " DISPLAY_VERSION, NULL); 434 tmp = g_strconcat(PIDGIN_NAME, " " DISPLAY_VERSION, NULL);
434 atk_object_set_description(obj, tmp); 435 atk_object_set_description(obj, tmp);
435 g_free(tmp); 436 g_free(tmp);