Code

fix about dialog a bit
authorishmal <ishmal@users.sourceforge.net>
Wed, 11 Apr 2007 14:54:06 +0000 (14:54 +0000)
committerishmal <ishmal@users.sourceforge.net>
Wed, 11 Apr 2007 14:54:06 +0000 (14:54 +0000)
src/jabber_whiteboard/pedrogui.cpp

index 81866d8ce6a5532c0a2c5f0481e43b0ee59171d8..b101047cb006266d2a6f19d4302eb3cb531a3a86 100644 (file)
@@ -24,6 +24,7 @@
 #include "jabber_whiteboard/pedrogui.h"
 #include "jabber_whiteboard/session-manager.h"
 
+#include <glibmm/i18n.h>
 
 #include <stdarg.h>
 
@@ -2621,11 +2622,13 @@ void PedroGui::sendFileCallback()
 void PedroGui::aboutCallback()
 {
     Gtk::AboutDialog dlg;
+    dlg.set_name("Inkboard");
     std::vector<Glib::ustring>authors;
-    authors.push_back("Bob Jamison");
+    authors.push_back("David Yip <yipdw@rose-hulman.edu>");
+    authors.push_back("Dale Harvey <harveyd@gmail.com>");
     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();