summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4ef6b89)
raw | patch | inline | side by side (parent: 4ef6b89)
author | ishmal <ishmal@users.sourceforge.net> | |
Wed, 11 Apr 2007 14:54:06 +0000 (14:54 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Wed, 11 Apr 2007 14:54:06 +0000 (14:54 +0000) |
src/jabber_whiteboard/pedrogui.cpp | patch | blob | history |
index 81866d8ce6a5532c0a2c5f0481e43b0ee59171d8..b101047cb006266d2a6f19d4302eb3cb531a3a86 100644 (file)
#include "jabber_whiteboard/pedrogui.h"
#include "jabber_whiteboard/session-manager.h"
+#include <glibmm/i18n.h>
#include <stdarg.h>
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();