# HG changeset patch # User Elliott Sales de Andrade # Date 1329973036 0 # Node ID b0ebc1938c2d0812c0bf0d8d3248bf572008ff30 # Parent e946a9998052c267a789bd8822e788e385c2ee2e Use better HTML in the About dialog. Since WebKit is rendering this now, we can use a few more descriptive tags. diff -r e946a9998052 -r b0ebc1938c2d pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Thu Feb 23 04:41:29 2012 +0000 +++ b/pidgin/gtkdialogs.c Thu Feb 23 04:57:16 2012 +0000 @@ -485,37 +485,42 @@ str = g_string_sized_new(4096); g_string_append_printf(str, - "
%s %s
(libpurple %s)" - "
%s

", PIDGIN_NAME, DISPLAY_VERSION, + "

%s %s

" + "(libpurple %s)
%s
", + PIDGIN_NAME, DISPLAY_VERSION, purple_core_get_version(), REVISION); g_string_append_printf(str, - _("%s is a messaging client based on libpurple which is capable of " + _("

%s is a messaging client based on libpurple which is capable of " "connecting to multiple messaging services at once. %s is written " "in C using GTK+. %s is released, and may be modified and " "redistributed, under the terms of the GPL version 2 (or later). " "A copy of the GPL is distributed with %s. %s is copyrighted by " "its contributors, a list of whom is also distributed with %s. " - "There is no warranty for %s.

"), PIDGIN_NAME, PIDGIN_NAME, + "There is no warranty for %s.

"), PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME); g_string_append_printf(str, - _("Helpful Resources
\tWebsite
\tFrequently Asked " - "Questions
\tIRC Channel: #pidgin on irc.freenode.net
" - "\tXMPP MUC: devel@conference.pidgin.im

"), PURPLE_WEBSITE, + _("

Helpful Resources

" + ""), + PURPLE_WEBSITE, "http://developer.pidgin.im/wiki/FAQ"); g_string_append_printf(str, - _("Help from other Pidgin users is " - "available by e-mailing support@pidgin.im
" - "This is a public mailing list! " + _("

Help from other Pidgin users is available " + "by e-mailing support@pidgin.im.
" + "This is a public mailing list! " "(archive)
" "We can't help with third-party protocols or plugins!
" - "This list's primary language is English. You are " - "welcome to post in another language, but the responses may " - "be less helpful.
")); + "This list's primary language is English. You " + "are welcome to post in another language, but the responses may " + "be less helpful.

")); tmp = g_strdup_printf(_("About %s"), PIDGIN_NAME); about = pidgin_build_help_dialog(tmp, "about", str);