From: ishmal Date: Wed, 11 Apr 2007 14:54:06 +0000 (+0000) Subject: fix about dialog a bit X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c84ab4bef60196493c606ceaf2c7e86aa55d1f22;p=inkscape.git fix about dialog a bit --- diff --git a/src/jabber_whiteboard/pedrogui.cpp b/src/jabber_whiteboard/pedrogui.cpp index 81866d8ce..b101047cb 100644 --- a/src/jabber_whiteboard/pedrogui.cpp +++ b/src/jabber_whiteboard/pedrogui.cpp @@ -24,6 +24,7 @@ #include "jabber_whiteboard/pedrogui.h" #include "jabber_whiteboard/session-manager.h" +#include #include @@ -2621,11 +2622,13 @@ void PedroGui::sendFileCallback() void PedroGui::aboutCallback() { Gtk::AboutDialog dlg; + dlg.set_name("Inkboard"); std::vectorauthors; - authors.push_back("Bob Jamison"); + authors.push_back("David Yip "); + authors.push_back("Dale Harvey "); dlg.set_authors(authors); - DOMString comments = "A simple XMPP gui client "; - comments.append("Based on the Pedro XMPP client"); + DOMString comments = _("Shared SVG whiteboard tool."); + comments.append(_("Based on the Pedro XMPP client")); dlg.set_comments(comments); dlg.set_version("1.0"); dlg.run();