comparison pidgin/gtkdialogs.c @ 25084:e97fc1577a0f

Some tweaks to the About dialog: * Add reference to support@pidgin.im to hopefully reduce direct-to-developer e-mail from users for issues that really belong on support@pidgin.im * Add the XMPP MUC * Mark the FAQ line as translatable. I don't remember why I didn't do this originally, but suspect it may have been due to a string freeze. * Fix indentation on a line
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sat, 14 Feb 2009 07:56:20 +0000
parents e3183dab880a
children 6c3c8e2c5f4f 9fcff08ce726
comparison
equal deleted inserted replaced
25083:fa5987472e00 25084:e97fc1577a0f
455 "%s is copyrighted by its contributors. See the 'COPYRIGHT' " 455 "%s is copyrighted by its contributors. See the 'COPYRIGHT' "
456 "file for the complete list of contributors. We provide no " 456 "file for the complete list of contributors. We provide no "
457 "warranty for this program.<BR><BR>"), PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME); 457 "warranty for this program.<BR><BR>"), PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME);
458 458
459 g_string_append(str, "<FONT SIZE=\"4\">URL:</FONT> <A HREF=\"" 459 g_string_append(str, "<FONT SIZE=\"4\">URL:</FONT> <A HREF=\""
460 PURPLE_WEBSITE "\">" PURPLE_WEBSITE "</A><BR/><BR/>"); 460 PURPLE_WEBSITE "\">" PURPLE_WEBSITE "</A><BR/><BR/>");
461 g_string_append(str, "<FONT SIZE=\"4\">FAQ:</FONT> <A HREF=\"" 461 g_string_append_printf(str, _("<FONT SIZE=\"4\">FAQ:</FONT> <A HREF=\""
462 "http://developer.pidgin.im/wiki/FAQ\">" 462 "http://developer.pidgin.im/wiki/FAQ\">"
463 "http://developer.pidgin.im/wiki/FAQ</A><BR/><BR/>"); 463 "http://developer.pidgin.im/wiki/FAQ</A><BR/><BR/>"));
464 g_string_append_printf(str, _("<FONT SIZE=\"4\">IRC:</FONT> " 464 g_string_append_printf(str, _("<FONT SIZE=\"4\">Help via e-mail:</FONT>"
465 "#pidgin on irc.freenode.net<BR><BR>")); 465 " <A HREF=\"mailto:support@pidgin.im\">support@pidgin.im</A>"
466 "<BR/><BR/>"));
467 g_string_append_printf(str, _("<FONT SIZE=\"4\">IRC Channel:</FONT> "
468 "#pidgin on irc.freenode.net<BR><BR>"));
469 g_string_append_printf(str, _("<FONT SIZE=\"4\">XMPP MUC:</FONT> "
470 "devel@conference.pidgin.im<BR><BR>"));
466 471
467 /* Current Developers */ 472 /* Current Developers */
468 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>", 473 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>",
469 _("Current Developers")); 474 _("Current Developers"));
470 add_developers(str, developers); 475 add_developers(str, developers);