aboutsummaryrefslogtreecommitdiff
path: root/src/ka-tools.c
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-09-26 22:21:04 +0200
committerGuido Günther <agx@sigxcpu.org>2011-09-26 22:21:04 +0200
commitaeda5d1ae9171f5059d44065796984f390832c6a (patch)
treeadb5fbda13da5ce1d6175468cb9f847c570a123c /src/ka-tools.c
parentDocument changes and release 3.0.1-1 (diff)
parentNew upstream version 3.2.0 (diff)
downloadkrb5-auth-dialog-aeda5d1ae9171f5059d44065796984f390832c6a.tar.gz
krb5-auth-dialog-aeda5d1ae9171f5059d44065796984f390832c6a.tar.bz2
krb5-auth-dialog-aeda5d1ae9171f5059d44065796984f390832c6a.zip
Merge commit 'upstream/3.2.0'
Diffstat (limited to 'src/ka-tools.c')
-rw-r--r--src/ka-tools.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ka-tools.c b/src/ka-tools.c
index 260d101..227324a 100644
--- a/src/ka-tools.c
+++ b/src/ka-tools.c
@@ -55,3 +55,31 @@ ka_show_help (GdkScreen* screen, const char* chapter, GtkWindow* window)
}
g_free (url);
}
+
+
+void
+ka_show_about ()
+{
+ const gchar *authors[] = {
+ "Christopher Aillon <caillon@redhat.com>",
+ "Jonathan Blandford <jrb@redhat.com>",
+ "Colin Walters <walters@verbum.org>",
+ "Guido Günther <agx@sigxcpu.org>",
+ NULL
+ };
+
+ gtk_show_about_dialog (NULL,
+ "authors", authors,
+ "version", VERSION,
+ "logo-icon-name", "krb-valid-ticket",
+ "copyright",
+ "Copyright (C) 2004,2005,2006 Red Hat, Inc.,\n"
+ "2008-2011 Guido Günther",
+ "website-label", PACKAGE " website",
+ "website",
+ "https://honk.sigxcpu.org/piki/projects/krb5-auth-dialog/",
+ "license", "GNU General Public License Version 2",
+ /* Translators: add the translators of your language here */
+ "translator-credits", _("translator-credits"),
+ NULL);
+}
bgstack15