# HG changeset patch # User Elliott Sales de Andrade # Date 1329975311 0 # Node ID 8b2c2178a4cabe352133dc2628ad6daff65976fd # Parent d7098543533a50b5444aa7c598537a9f550ea165 Update HTML in the Developer Information dialog. diff -r d7098543533a -r 8b2c2178a4ca pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Thu Feb 23 05:28:50 2012 +0000 +++ b/pidgin/gtkdialogs.c Thu Feb 23 05:35:11 2012 +0000 @@ -329,13 +329,13 @@ { for (; list->name != NULL; list++) { if (list->email != NULL) { - g_string_append_printf(str, " %s%s%s%s
", + g_string_append_printf(str, "
  • %s%s%s%s
  • ", list->email, _(list->name), list->role ? " (" : "", list->role ? _(list->role) : "", list->role ? ")" : ""); } else { - g_string_append_printf(str, " %s%s%s%s
    ", + g_string_append_printf(str, "
  • %s%s%s%s
  • ", _(list->name), list->role ? " (" : "", list->role ? _(list->role) : "", @@ -737,27 +737,28 @@ str = g_string_sized_new(4096); /* Current Developers */ - g_string_append_printf(str, "%s:
    ", + g_string_append_printf(str, "

    %s

    "); /* Crazy Patch Writers */ - g_string_append_printf(str, "%s:
    ", + g_string_append_printf(str, "

    %s

    "); /* Retired Developers */ - g_string_append_printf(str, "%s:
    ", + g_string_append_printf(str, "

    %s

    "); /* Retired Crazy Patch Writers */ - g_string_append_printf(str, "%s:
    ", + g_string_append_printf(str, "

    %s

    "); tmp = g_strdup_printf(_("%s Developer Information"), PIDGIN_NAME); developer_info = pidgin_build_help_dialog(tmp, "developer_info", str);