summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2007-04-11 14:54:06 +0000
committerishmal <ishmal@users.sourceforge.net>2007-04-11 14:54:06 +0000
commitf77ca1954cbb12d5259f5f25a8b490d64b907040 (patch)
treeabe365b27640bcd2b07e96db3f5573301784c0e4 /src
parentConverted the rectangle toolbar to use stock GTK+ (diff)
downloadinkscape-f77ca1954cbb12d5259f5f25a8b490d64b907040.tar.gz
inkscape-f77ca1954cbb12d5259f5f25a8b490d64b907040.zip
fix about dialog a bit
(bzr r2860)
Diffstat (limited to 'src')
-rw-r--r--src/jabber_whiteboard/pedrogui.cpp9
1 files changed, 6 insertions, 3 deletions
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 <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();