summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Geddes <vgeddes@src.gnome.org>2007-07-18 22:06:27 +0000
committerVincent Geddes <vgeddes@src.gnome.org>2007-07-18 22:06:27 +0000
commite6a88a9a1d3b8735f79c38235c6c9a2652b136ea (patch)
tree78e8df2e1ee5560d1ff8ca2ea1172da690ab9ac1
parent55038cd224b0130e1dfdc479a58ff30dd29c537b (diff)
downloadglade-e6a88a9a1d3b8735f79c38235c6c9a2652b136ea.tar.gz
Add About dialog credits for artists and documenters.
* src/glade-window.c: Add About dialog credits for artists and documenters. svn path=/trunk/; revision=1494
-rw-r--r--ChangeLog2
-rw-r--r--src/glade-window.c12
2 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5081485e..e9b0a97b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -23,6 +23,8 @@
* src/glade-window.c: Rename "Help" menu item to "Contents" (as per convention).
+ * src/glade-window.c: Add About dialog credits for artists and documenters.
+
2007-07-17 Juan Pablo Ugarte <juanpablougarte@gmail.com>
* gladeui/glade-widget-adaptor.c: translate action name in gwa_action_update_from_node()
diff --git a/src/glade-window.c b/src/glade-window.c
index da423dcb..a6c5accb 100644
--- a/src/glade-window.c
+++ b/src/glade-window.c
@@ -2037,6 +2037,16 @@ about_cb (GtkAction *action, GladeWindow *window)
"Juan Pablo Ugarte <juanpablougarte@gmail.com>",
"Vincent Geddes <vincent.geddes@gmail.com>",
NULL };
+
+ static const gchar * const artists[] =
+ { "Vincent Geddes <vgeddes@gnome.org>",
+ "Andreas Nilsson <andreas@andreasn.se>",
+ NULL };
+
+ static const gchar * const documenters[] =
+ { "GNOME Documentation team <gnome-doc-list@gnome.org>",
+ "Sun GNOME Documentation team <gdocteam@sun.com>",
+ NULL };
static const gchar license[] =
N_("Glade is free software; you can redistribute it and/or modify "
@@ -2063,6 +2073,8 @@ about_cb (GtkAction *action, GladeWindow *window)
"name", g_get_application_name (),
"logo-icon-name", "glade-3",
"authors", authors,
+ "artists", artists,
+ "documenters", documenters,
"translator-credits", _("translator-credits"),
"comments", _("A user interface designer for GTK+ and GNOME."),
"license", _(license),