[Xfce4-commits] <libxfce4ui:master> Add xfce4-about from xfce-utils package.

Nick Schermer noreply at xfce.org
Wed Sep 21 18:34:06 CEST 2011


Updating branch refs/heads/master
         to 28868acca8df5765b031c701de123640a6d9290f (commit)
       from 9919c91f18356ed0e5f6bd3141dd1f191d374f2d (commit)

commit 28868acca8df5765b031c701de123640a6d9290f
Author: Nick Schermer <nick at xfce.org>
Date:   Sat Jul 9 16:32:29 2011 +0200

    Add xfce4-about from xfce-utils package.

 Makefile.am                          |    2 +
 configure.ac.in                      |    5 +-
 icons/48x48/Makefile.am              |    5 +
 icons/48x48/xfce4-logo.png           |  Bin 0 -> 4060 bytes
 icons/Makefile.am                    |   19 +
 xfce4-about/Makefile.am              |   58 ++++
 xfce4-about/contributors.h           |  148 ++++++++
 xfce4-about/main.c                   |  538 +++++++++++++++++++++++++++++
 xfce4-about/translators.h            |  613 ++++++++++++++++++++++++++++++++++
 xfce4-about/xfce4-about-dialog.glade |  577 ++++++++++++++++++++++++++++++++
 xfce4-about/xfce4-about.desktop.in   |   11 +
 11 files changed, 1975 insertions(+), 1 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 1caea78..81b29ff 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,7 +3,9 @@
 SUBDIRS = \
 	libxfce4ui \
 	libxfce4kbd-private \
+	xfce4-about \
 	glade \
+	icons \
 	docs \
 	po
 
diff --git a/configure.ac.in b/configure.ac.in
index a7b3fbc..e8b69e0 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -9,7 +9,7 @@ dnl ***************************
 m4_define([libxfce4ui_verinfo], [0:0:0])
 m4_define([libxfce4ui_version_api], [1])
 m4_define([libxfce4ui_version_major], [4])
-m4_define([libxfce4ui_version_minor], [8])
+m4_define([libxfce4ui_version_minor], [9])
 m4_define([libxfce4ui_version_micro], [0])
 m4_define([libxfce4ui_version_nano], []) dnl leave this empty to have no nano version
 m4_define([libxfce4ui_version_build], [@REVISION@])
@@ -271,12 +271,15 @@ glade/Makefile
 glade/icons/Makefile
 glade/icons/16x16/Makefile
 glade/icons/22x22/Makefile
+icons/Makefile
+icons/48x48/Makefile
 libxfce4kbd-private/libxfce4kbd-private-2.pc
 libxfce4kbd-private/Makefile
 libxfce4ui.spec
 libxfce4ui/libxfce4ui-1.pc
 libxfce4ui/libxfce4ui-config.h
 libxfce4ui/Makefile
+xfce4-about/Makefile
 po/Makefile.in
 ])
 
diff --git a/icons/48x48/Makefile.am b/icons/48x48/Makefile.am
new file mode 100644
index 0000000..c812066
--- /dev/null
+++ b/icons/48x48/Makefile.am
@@ -0,0 +1,5 @@
+iconsdir = $(datadir)/icons/hicolor/48x48/apps
+icons_DATA =								\
+	xfce4-logo.png
+
+EXTRA_DIST = $(icons_DATA)
diff --git a/icons/48x48/xfce4-logo.png b/icons/48x48/xfce4-logo.png
new file mode 100644
index 0000000..c3a02ef
Binary files /dev/null and b/icons/48x48/xfce4-logo.png differ
diff --git a/icons/Makefile.am b/icons/Makefile.am
new file mode 100644
index 0000000..ca0cb45
--- /dev/null
+++ b/icons/Makefile.am
@@ -0,0 +1,19 @@
+# $Id$
+
+SUBDIRS =								\
+	48x48
+
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+
+install-data-hook:
+	@-if test -z "$(DESTDIR)"; then					\
+                echo "Updating Gtk icon cache.";			\
+                $(gtk_update_icon_cache);				\
+        else								\
+                echo "*** Icon cache not updated. Remember to run:";	\
+		echo "***";						\
+                echo "***   $(gtk_update_icon_cache)";			\
+		echo "***";						\
+        fi
+
+# vi:set ts=8 sw=8 noet ai nocindent:
diff --git a/xfce4-about/Makefile.am b/xfce4-about/Makefile.am
new file mode 100644
index 0000000..bf35601
--- /dev/null
+++ b/xfce4-about/Makefile.am
@@ -0,0 +1,58 @@
+
+INCLUDES = \
+	-I$(top_srcdir) \
+	-DG_LOG_DOMAIN=\"xfce4-about\" \
+	-DDATADIR=\"$(datadir)/xfce4\" \
+	-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
+	$(PLATFORM_CPPFLAGS)
+
+bin_PROGRAMS = \
+	xfce4-about
+
+xfce4_about_built_sources = \
+	about-dialog-ui.h
+
+xfce4_about_SOURCES = \
+	$(xfce4_about_built_sources) \
+	contributors.h \
+	translators.h \
+	main.c
+
+xfce4_about_CFLAGS = \
+	$(LIBXFCE4UTIL_CFLAGS) \
+	$(GTK_CFLAGS) \
+	$(PLATFORM_CFLAGS)
+
+xfce4_about_LDADD = \
+	$(top_builddir)/libxfce4ui/libxfce4ui-$(LIBXFCE4UI_VERSION_API).la \
+	$(LIBXFCE4UTIL_LIBS) \
+	$(GTK_LIBS)
+
+xfce4_about_DEPENDENCIES = \
+	$(top_builddir)/libxfce4ui/libxfce4ui-$(LIBXFCE4UI_VERSION_API).la
+
+desktopdir = $(datadir)/applications
+desktop_in_files = xfce4-about.desktop.in
+desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
+ at INTLTOOL_DESKTOP_RULE@
+
+if MAINTAINER_MODE
+
+about-dialog-ui.h: $(srcdir)/xfce4-about-dialog.glade Makefile
+	$(AM_V_GEN) exo-csource --static --strip-comments --strip-content --name=xfce_about_dialog_ui $< >$@
+
+DISTCLEANFILES = \
+	$(xfce4_about_built_sources)
+
+BUILT_SOURCES = \
+	$(xfce4_about_built_sources)
+
+endif
+
+EXTRA_DIST = 								\
+	$(desktop_in_files)						\
+	xfce4-about-dialog.glade
+
+DISTCLEANFILES = 							\
+	$(desktop_DATA)
+
diff --git a/xfce4-about/contributors.h b/xfce4-about/contributors.h
new file mode 100644
index 0000000..0dd022b
--- /dev/null
+++ b/xfce4-about/contributors.h
@@ -0,0 +1,148 @@
+/*
+ * Copyright (C) 2010 Xfce Development Team
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include <gtk/gtk.h>
+#include <libxfce4util/libxfce4util.h>
+
+typedef struct
+{
+  const gchar *name;
+  const gchar *email;
+}
+ContributorInfo;
+
+typedef struct
+{
+  const gchar           *name;
+  const ContributorInfo *contributors;
+}
+ContributorGroup;
+
+/*
+static const ContributorInfo xfce_contributors_lead[] =
+{
+  { "Olivier Fourdan", "fourdan at xfce.org" },
+  { NULL, NULL }
+};
+*/
+
+static const ContributorInfo xfce_contributors_core[] =
+{
+  { "Brian J. Tarricone", "kelnos at xfce.org" },
+  { "Jannis Pohlmann", "jannis at xfce.org" },
+  { "Jérôme Guelfucci", "jeromeg at xfce.org" },
+  { "Nick Schermer", "nick at xfce.org" },
+  { "Olivier Fourdan", "fourdan at xfce.org" },
+  { "Stephan Arts", "stephan at xfce.org" },
+  { NULL, NULL }
+};
+
+static const ContributorInfo xfce_contributors_active[] =
+{
+  { "Ali Abdallah", "aliov at xfce.org" },
+  { "Benedikt Meurer", "benny at xfce.org" },
+  { "David Mohr", "squisher at xfce.org" },
+  { "Enrico Tröger", "enrico.troeger at uvena.de" },
+  { "Jasper Huijsmans", "jasper at xfce.org" },
+  { "Jean-François Wauthy", "pollux at xfce.org" },
+  { "Landry Breuil", "landry at openbsd.org" },
+  { "Lionel Le Folgoc", "mrpouit at gmail.com" },
+  { "Mike Massonnet", "mmassonnet at gmail.com" },
+  { "Yves-Alexis Perez", "corsac at debian.org" },
+  { NULL, NULL }
+};
+
+static const ContributorInfo xfce_contributors_server[] =
+{
+  { "Auke Kok", "sofar at foo-projects.org" },
+  { "Brian J. Tarricone", "kelnos at xfce.org" },
+  { "Jannis Pohlmann", "jannis at xfce.org" },
+  { "Jean-François Wauthy", "pollux at xfce.org" },
+  { "Nick Schermer", "nick at xfce.org" },
+  { "Samuel Verstraete", "elangelo at xfce.org" },
+  { NULL, NULL }
+};
+
+static const ContributorInfo xfce_contributors_goodies_supervision[] =
+{
+  { "Jannis Pohlmann", "jannis at xfce.org" },
+  { NULL, NULL }
+};
+
+static const ContributorInfo xfce_contributors_translators_supervision[] =
+{
+  { "Maximilian Schleiss", "maximilian at xfce.org" },
+  { "Mike Massonnet", "mmassonnet at gmail.com" },
+  { NULL, NULL }
+};
+
+static const ContributorInfo xfce_contributors_previous[] =
+{
+  { "Bernhard Walle", "bernhard.walle at gmx.de" },
+  { "Biju Chacko", "botsie at xfce.org" },
+  { "Craig Betts", "craig.betts at dfrc.nasa.gov" },
+  { "Daichi Kawahata", "daichi at xfce.org" },
+  { "Danny Milosavljevic", "dannym at xfce.org" },
+  { "Darren Salt", "linux at youmustbejoking.demon.co.uk" },
+  { "Edscott Wilson García", "edscott at xfce.org" },
+  { "Eduard Roccatello", "eduard at xfce.org" },
+  { "Ejvend Nielsen", "prophet at sphere-x.net" },
+  { "Erik Touve", "etouve at earthlink.net" },
+  { "Erik Harrison", "erikharrison at xfce.org" },
+  { "François Le Clainche", "fleclainche at wanadoo.fr" },
+  { "Jens Guballa", "j.guballa at t-online.de" },
+  { "Jens Luedicke", "jens at irs-net.com" },
+  { "Joakim Andreasson", "joakim.andreasson at gmx.net" },
+  { "Karsten Luetkewitz", "phrep at plskthx.org" },
+  { "Martin Loschwitz", "madkiss at debian.org" },
+  { "Michael Mosier", "michael at spyonit.com" },
+  { "Mickaël Graf", "korbinus at xfce.org" },
+  { "Pau Rul·lan Ferragut", "paurullan at bulma.net" },
+  { "Thomas Leonard", "tal00r at ecs.soton.ac.uk" },
+  { "Tobias Henle", "tobias at page23.de" },
+  { "Xavier Maillard", "zedek at fxgsproject.org" },
+  { NULL, NULL }
+};
+
+static const ContributorGroup xfce_contributors[] =
+{
+  /*{ N_("Project Lead"),
+    xfce_contributors_lead
+  },*/
+  { N_("Core developers"),
+    xfce_contributors_core
+  },
+  { N_("Active contributors"),
+    xfce_contributors_active
+  },
+  { N_("Servers maintained by"),
+    xfce_contributors_server
+  },
+  { N_("Goodies supervision"),
+    xfce_contributors_goodies_supervision
+  },
+  { N_("Translations supervision"),
+    xfce_contributors_translators_supervision
+  },
+  { N_("Translators"),
+    NULL /* data from translators.h will be used here */
+  },
+  { N_("Previous contributors"),
+    xfce_contributors_previous
+  }
+};
diff --git a/xfce4-about/main.c b/xfce4-about/main.c
new file mode 100644
index 0000000..6a4a9a2
--- /dev/null
+++ b/xfce4-about/main.c
@@ -0,0 +1,538 @@
+/*
+ * Copyright (C) 2010 Xfce Development Team
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
+#include <gtk/gtk.h>
+#include <libxfce4util/libxfce4util.h>
+#include <libxfce4ui/libxfce4ui.h>
+
+#include "contributors.h"
+#include "translators.h"
+#include "about-dialog-ui.h"
+
+#define MARGIN 20
+
+
+
+typedef struct
+{
+  const gchar *name;
+  const gchar *display_name;
+  const gchar *description;
+}
+AboutModules;
+
+
+
+static gboolean     opt_version = FALSE;
+static GOptionEntry opt_entries[] =
+{
+  { "version", 'V', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &opt_version, N_("Version information"), NULL },
+  { NULL }
+};
+
+
+
+static void
+xfce_about_about (GtkTextBuffer *buffer)
+{
+  guint                i;
+  AboutModules        *info;
+  GtkTextTag          *bold;
+  GtkTextTag          *indent;
+  GtkTextIter          end;
+  gchar               *str;
+  static AboutModules  xfce_about_info[] =
+    {
+      { "xfwm4",
+        N_("Window Manager"),
+        N_("Handles the placement of windows on the screen.")
+      },
+      { "xfce4-panel",
+        N_("Panel"),
+        N_("Program launchers, window buttons, applications menu, "
+           "workspace switcher and more.")
+      },
+      { "xfdesktop",
+        N_("Desktop Manager"),
+        N_("Sets the background color or image with optional application menu "
+           "or icons for minimized applications or launchers, devices and folders.")
+      },
+      { "thunar",
+        N_("File Manager "),
+        N_("A modern file manager for the Unix/Linux desktop, aiming to "
+           "be easy-to-use and fast.")
+      },
+      { "xfce4-session",
+        N_("Session Manager"),
+        N_("Restores your session on startup and allows you to shutdown "
+           "the computer from Xfce.")
+      },
+      { "xfce4-settings",
+        N_("Setting System"),
+        N_("Configuration system to control various aspects of the desktop "
+           "like appearance, display, keyboard and mouse settings.")
+      },
+      { "xfce4-appfinder",
+        N_("Application Finder"),
+        N_("Shows the applications installed on your system in categories, "
+           "so you can quickly find and launch them.")
+      },
+      { "xfce-utils",
+        N_("Utilities and Scripts"),
+        N_("Startup scripts, run dialog and about dialog.")
+      },
+      { "xfconf",
+        N_("Settings Daemon"),
+        N_("D-Bus-based configuration storage system.")
+      }
+    };
+
+  g_return_if_fail (GTK_IS_TEXT_BUFFER (buffer));
+
+  gtk_text_buffer_insert_at_cursor (buffer,
+      _("Xfce is a collection of programs that together provide a "
+        "full-featured desktop environment. The following programs "
+        "are part of the Xfce core:"), -1);
+  gtk_text_buffer_get_end_iter (buffer, &end);
+
+  bold = gtk_text_buffer_create_tag (buffer, "bold",
+                                     "weight", PANGO_WEIGHT_BOLD, NULL);
+
+  indent = gtk_text_buffer_create_tag (buffer, "indent",
+                                       "left-margin", MARGIN, NULL);
+
+  for (i = 0; i < G_N_ELEMENTS (xfce_about_info); i++)
+    {
+      info = xfce_about_info + i;
+
+      str = g_strdup_printf ("\n\n%s (%s)\n", _(info->display_name), info->name);
+      gtk_text_buffer_insert_with_tags (buffer, &end, str, -1, bold, NULL);
+      g_free (str);
+
+      gtk_text_buffer_insert_with_tags (buffer, &end, _(info->description), -1, indent, NULL);
+    }
+
+  gtk_text_buffer_insert (buffer, &end, "\n\n", -1);
+  gtk_text_buffer_insert (buffer, &end,
+      _("Xfce is also a development platform providing several libraries, "
+        "that help programmers create applications that fit in well "
+        "with the desktop environment."), -1);
+
+  gtk_text_buffer_insert (buffer, &end, "\n\n", -1);
+  gtk_text_buffer_insert (buffer, &end,
+      _("Xfce components are licensed under free or open source "
+        "licences; GPL or BSDL for applications and LGPL or BSDL for "
+        "libraries. Look at the documentation, the source code or the "
+        "Xfce website (http://www.xfce.org) for more information."), -1);
+
+  gtk_text_buffer_insert (buffer, &end, "\n\n", -1);
+  gtk_text_buffer_insert (buffer, &end,
+      _("Thank you for your interest in Xfce."), -1);
+
+  gtk_text_buffer_insert (buffer, &end, "\n\n\t- ", -1);
+  gtk_text_buffer_insert (buffer, &end,
+      _("The Xfce Development Team"), -1);
+
+  gtk_text_buffer_insert (buffer, &end, "\n", -1);
+}
+
+
+
+static void
+xfce_about_credits_translators (GtkTextBuffer *buffer,
+                                GtkTextIter   *end,
+                                GtkTextTag    *indent,
+                                GtkTextTag    *email)
+{
+  guint                 i;
+  GtkTextTag           *italic;
+  const TranslatorInfo *member;
+  const TranslatorTeam *team;
+  gchar                *str;
+  gboolean              has_member;
+  GtkTextTag           *coordinator;
+
+  coordinator = gtk_text_buffer_create_tag (buffer, "italic",
+                                            "style", PANGO_STYLE_ITALIC, NULL);
+
+  for (i = 0; i < G_N_ELEMENTS (xfce_translators); i++)
+    {
+      team = xfce_translators + i;
+
+      str = g_strdup_printf ("%s [%s]: ", team->name, team->code);
+      gtk_text_buffer_insert_with_tags (buffer, end, str, -1, indent, NULL);
+      g_free (str);
+
+      has_member = FALSE;
+
+      for (member = team->members; member->name != NULL; member++)
+        {
+          if (has_member)
+            gtk_text_buffer_insert (buffer, end, ", ", -1);
+
+          italic = member->is_coordinator ? coordinator : NULL;
+
+          gtk_text_buffer_insert_with_tags (buffer, end, member->name, -1, italic, NULL);
+          gtk_text_buffer_insert_with_tags (buffer, end, " <", -1, italic, NULL);
+          gtk_text_buffer_insert_with_tags (buffer, end, member->email, -1, email, italic, NULL);
+          gtk_text_buffer_insert_with_tags (buffer, end, ">", -1, italic, NULL);
+
+          has_member = TRUE;
+        }
+
+      gtk_text_buffer_insert (buffer, end, "\n", -1);
+    }
+}
+
+
+
+static void
+xfce_about_credits (GtkTextBuffer *buffer)
+{
+  guint                   i;
+  GtkTextTag             *email;
+  GtkTextTag             *title;
+  GtkTextTag             *indent;
+  GtkTextIter             end;
+  const ContributorGroup *group;
+  const ContributorInfo  *user;
+
+  g_return_if_fail (GTK_IS_TEXT_BUFFER (buffer));
+
+  email = gtk_text_buffer_create_tag (buffer, "email",
+                                      "foreground", "blue",
+                                      "underline", PANGO_UNDERLINE_SINGLE, NULL);
+
+  title = gtk_text_buffer_create_tag (buffer, "title",
+                                      "scale", 1.1,
+                                      "weight", PANGO_WEIGHT_BOLD, NULL);
+
+  indent = gtk_text_buffer_create_tag (buffer, "indent",
+                                       "left-margin", MARGIN,
+                                       "indent", -MARGIN, NULL);
+
+  gtk_text_buffer_get_end_iter (buffer, &end);
+
+  for (i = 0; i < G_N_ELEMENTS (xfce_contributors); i++)
+    {
+      group = xfce_contributors + i;
+
+      gtk_text_buffer_insert_with_tags (buffer, &end, _(group->name), -1, title, NULL);
+      gtk_text_buffer_insert (buffer, &end, "\n", -1);
+
+      if (group->contributors != NULL)
+        {
+          for (user = group->contributors; user->name != NULL; user++)
+            {
+              gtk_text_buffer_insert_with_tags (buffer, &end, user->name, -1, indent, NULL);
+              gtk_text_buffer_insert (buffer, &end, " <", -1);
+              gtk_text_buffer_insert_with_tags (buffer, &end, user->email, -1, email, NULL);
+              gtk_text_buffer_insert (buffer, &end, ">\n", -1);
+            }
+        }
+      else
+        {
+          /* add the translators */
+          xfce_about_credits_translators (buffer, &end, indent, email);
+        }
+
+      gtk_text_buffer_insert (buffer, &end, "\n", -1);
+    }
+
+  gtk_text_buffer_insert (buffer, &end,
+      _("If you know of anyone missing from this list; don't hesitate and "
+        "file a bug on <http://bugzilla.xfce.org> ."), -1);
+  gtk_text_buffer_insert (buffer, &end, "\n\n", -1);
+  gtk_text_buffer_insert_with_tags (buffer, &end,
+      _("Thanks to all who helped making this software available!"), -1, title, NULL);
+
+  gtk_text_buffer_insert (buffer, &end, "\n", -1);
+}
+
+
+
+static void
+xfce_about_copyright (GtkTextBuffer *buffer)
+{
+  GtkTextIter end;
+
+  g_return_if_fail (GTK_IS_TEXT_BUFFER (buffer));
+
+  gtk_text_buffer_get_end_iter (buffer, &end);
+
+  gtk_text_buffer_insert (buffer, &end,
+      _("Xfce 4 is copyright Olivier Fourdan (fourdan at xfce.org). The different "
+        "components are copyrighted by their respective authors."), -1);
+
+  gtk_text_buffer_insert (buffer, &end, "\n\n", -1);
+  gtk_text_buffer_insert (buffer, &end,
+      _("The libxfce4ui, libxfcegui4, libxfce4util, thunar-vfs and exo packages are "
+        "distributed under the terms of the GNU Library General Public License as "
+        "published by the Free Software Foundation; either version 2 of the License, or "
+        "(at your option) any later version."), -1);
+
+  gtk_text_buffer_insert (buffer, &end, "\n\n", -1);
+  gtk_text_buffer_insert (buffer, &end,
+      _("The packages thunar, xfce4-appfinder, xfce4-panel, xfce4-session, "
+        "xfce4-settings, xfce-utils, xfconf, xfdesktop and xfwm4 are "
+        "distributed under the terms of the GNU General Public License as "
+        "published by the Free Software Foundation; either version 2 of the "
+        "License, or (at your option) any later version."), -1);
+
+  gtk_text_buffer_insert (buffer, &end, "\n", -1);
+}
+
+
+
+#ifdef VENDOR_INFO
+static void
+xfce_about_vendor (GtkBuilder *builder)
+{
+  gchar   *contents;
+  gchar   *filename;
+  GObject *object;
+  gsize    length;
+
+  g_return_if_fail (GTK_IS_BUILDER (builder));
+
+  filename = g_build_filename (DATADIR, VENDOR_INFO, NULL);
+  if (g_file_get_contents (filename, &contents, &length, NULL))
+    {
+      if (g_utf8_validate(contents, length, NULL))
+        {
+          object = gtk_builder_get_object (builder, "vendor-buffer");
+          gtk_text_buffer_set_text (GTK_TEXT_BUFFER (object), contents, length);
+
+          object = gtk_builder_get_object (builder, "vendor-label");
+          gtk_label_set_text (GTK_LABEL (object), VENDOR_INFO);
+
+          object = gtk_builder_get_object (builder, "vendor-tab");
+          gtk_widget_show (GTK_WIDGET (object));
+        }
+      else
+        {
+          g_critical ("\"%s\" is not UTF-8 valid", filename);
+        }
+
+      g_free (contents);
+    }
+
+  g_free (filename);
+}
+#endif
+
+
+
+static void
+xfce_about_license (GtkBuilder *builder,
+                    GObject    *buffer)
+{
+  GObject         *dialog;
+  GObject         *object;
+  static gboolean  initial = TRUE;
+
+  g_return_if_fail (GTK_IS_BUILDER (builder));
+  g_return_if_fail (GTK_IS_TEXT_BUFFER (buffer));
+
+  object = gtk_builder_get_object (builder, "license-textview");
+  gtk_text_view_set_buffer (GTK_TEXT_VIEW (object), GTK_TEXT_BUFFER (buffer));
+
+  dialog = gtk_builder_get_object (builder, "license-dialog");
+  if (initial)
+    {
+      g_signal_connect (G_OBJECT (dialog), "delete-event",
+           G_CALLBACK (gtk_widget_hide_on_delete), NULL);
+
+      object = gtk_builder_get_object (builder, "license-close-button");
+      g_signal_connect_swapped (G_OBJECT (object), "clicked",
+          G_CALLBACK (gtk_widget_hide), dialog);
+
+      object = gtk_builder_get_object (builder, "window");
+      gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (object));
+
+      initial = FALSE;
+    }
+
+  gtk_widget_show (GTK_WIDGET (dialog));
+}
+
+
+
+static void
+xfce_about_license_gpl (GtkBuilder *builder)
+{
+  xfce_about_license (builder,
+      gtk_builder_get_object (builder, "gpl-buffer"));
+}
+
+
+
+static void
+xfce_about_license_lgpl (GtkBuilder *builder)
+{
+  xfce_about_license (builder,
+      gtk_builder_get_object (builder, "lgpl-buffer"));
+}
+
+
+
+static void
+xfce_about_license_bsd (GtkBuilder *builder)
+{
+  xfce_about_license (builder,
+      gtk_builder_get_object (builder, "bsd-buffer"));
+}
+
+
+
+static void
+xfce_about_help (GtkWidget *button)
+{
+  GError    *error = NULL;
+  GdkScreen *screen;
+
+  g_return_if_fail (GTK_IS_BUTTON (button));
+
+  screen = gtk_widget_get_screen (button);
+  if (!gdk_spawn_command_line_on_screen (screen, "xfhelp4", &error))
+    {
+      g_critical ("Failed to spawn xfhelp4: %s", error->message);
+      g_error_free (error);
+    }
+}
+
+
+
+gint
+main (gint    argc,
+      gchar **argv)
+{
+  GtkBuilder *builder;
+  GError     *error = NULL;
+  GObject    *dialog;
+  GObject    *object;
+  gchar      *version;
+
+  xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
+
+  if (G_UNLIKELY (!gtk_init_with_args (&argc, &argv, NULL, opt_entries, PACKAGE, &error)))
+    {
+      if (G_LIKELY (error != NULL))
+        {
+          g_print ("%s: %s.\n", G_LOG_DOMAIN, error->message);
+          g_print (_("Type '%s --help' for usage information."), G_LOG_DOMAIN);
+          g_print ("\n");
+
+          g_error_free (error);
+        }
+      else
+        g_error (_("Unable to initialize GTK+."));
+
+      return EXIT_FAILURE;
+    }
+
+  if (G_UNLIKELY (opt_version))
+    {
+      g_print ("%s %s (Xfce %s)\n\n", G_LOG_DOMAIN, PACKAGE_VERSION, xfce_version_string ());
+      g_print ("%s\n", "Copyright (c) 2008-2011");
+      g_print ("\t%s\n\n", _("The Xfce development team. All rights reserved."));
+      g_print (_("Please report bugs to <%s>."), PACKAGE_BUGREPORT);
+      g_print ("\n");
+      /* I18N: date/time the translators list was updated */
+      g_print (_("Translators list from %s."), TRANSLATORS_H_STAMP);
+      g_print ("\n");
+
+      return EXIT_SUCCESS;
+    }
+
+  builder = gtk_builder_new ();
+  if (!gtk_builder_add_from_string (builder, xfce_about_dialog_ui,
+                                    xfce_about_dialog_ui_length, &error))
+    {
+      xfce_dialog_show_error (NULL, error, _("Failed to load interface"));
+      g_error_free (error);
+      g_object_unref (G_OBJECT (builder));
+
+      return EXIT_FAILURE;
+    }
+
+  dialog = gtk_builder_get_object (builder, "window");
+  g_signal_connect_swapped (G_OBJECT (dialog), "delete-event",
+      G_CALLBACK (gtk_main_quit), NULL);
+
+#ifdef VENDOR_INFO
+  /* I18N: first %s will be replaced by the version, second by
+   * the name of the distribution (--with-vendor-info=NAME) */
+  version = g_strdup_printf (_("Version %s, distributed by %s"),
+                             xfce_version_string (), VENDOR_INFO);
+#else
+  /* I18N: %s will be replaced by the Xfce version number */
+  version = g_strdup_printf (_("Version %s"), xfce_version_string ());
+#endif
+  xfce_titled_dialog_set_subtitle (XFCE_TITLED_DIALOG (dialog), version);
+  g_free (version);
+
+  object = gtk_builder_get_object (builder, "about-buffer");
+  xfce_about_about (GTK_TEXT_BUFFER (object));
+
+  object = gtk_builder_get_object (builder, "credits-buffer");
+  xfce_about_credits (GTK_TEXT_BUFFER (object));
+
+  object = gtk_builder_get_object (builder, "copyright-buffer");
+  xfce_about_copyright (GTK_TEXT_BUFFER (object));
+
+#ifdef VENDOR_INFO
+  xfce_about_vendor (builder);
+#endif
+
+  object = gtk_builder_get_object (builder, "gpl-button");
+  g_signal_connect_swapped (G_OBJECT (object), "clicked",
+      G_CALLBACK (xfce_about_license_gpl), builder);
+
+  object = gtk_builder_get_object (builder, "lgpl-button");
+  g_signal_connect_swapped (G_OBJECT (object), "clicked",
+      G_CALLBACK (xfce_about_license_lgpl), builder);
+
+  object = gtk_builder_get_object (builder, "bsd-button");
+  g_signal_connect_swapped (G_OBJECT (object), "clicked",
+      G_CALLBACK (xfce_about_license_bsd), builder);
+
+  object = gtk_builder_get_object (builder, "help-button");
+  g_signal_connect (G_OBJECT (object), "clicked",
+      G_CALLBACK (xfce_about_help), NULL);
+
+  object = gtk_builder_get_object (builder, "close-button");
+  g_signal_connect_swapped (G_OBJECT (object), "clicked",
+      G_CALLBACK (gtk_main_quit), NULL);
+
+  gtk_widget_show (GTK_WIDGET (dialog));
+
+  gtk_main ();
+
+  g_object_unref (G_OBJECT (builder));
+
+  return EXIT_SUCCESS;
+}
diff --git a/xfce4-about/translators.h b/xfce4-about/translators.h
new file mode 100644
index 0000000..3bd8ab9
--- /dev/null
+++ b/xfce4-about/translators.h
@@ -0,0 +1,613 @@
+/*
+ * Copyright (C) 2010 Xfce Development Team
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+/*
+ * THIS FILE IS AUTOMATICALLY GENERATED BY http://translations.xfce.org
+ * DO NOT EDIT IT MANUALLY!
+ */
+
+#include <gtk/gtk.h>
+#include <libxfce4util/libxfce4util.h>
+
+#define TRANSLATORS_H_STAMP "2011-06-12 00:00:14"
+#define ATSIGN "@"
+#define DOTSIGN "."
+
+typedef struct
+{
+  const gchar *name;
+  const gchar *email;
+  guint        is_coordinator : 1;
+}
+TranslatorInfo;
+
+typedef struct
+{
+  const gchar          *name;
+  const gchar          *code;
+  const TranslatorInfo *members;
+}
+TranslatorTeam;
+
+static const TranslatorInfo xfce_translators_am[] =
+{
+  { "Tegegne Tefera", "tefera" ATSIGN "mekuria" DOTSIGN "com", TRUE },
+  { "Fantaw Tesema", "fantaw" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ar[] =
+{
+  { "كريم أولاد الشلحة", "herr" DOTSIGN "linux88" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Yassine Bouhadi", "yassine" DOTSIGN "skiloo" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Hasen il Judy", "hasan" DOTSIGN "aljudy" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ast[] =
+{
+  { "Iñigo Varela", "malditoastur" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_be[] =
+{
+  { "Andrei Zakharevich", "andrej" ATSIGN "zahar" DOTSIGN "ws", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_bg[] =
+{
+  { "Valentin Tunev", "hdbuster" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Hristo Bozhkov", "biernywidz" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_bn[] =
+{
+  { "Jamil Ahmed", "itsjamil" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_bn_IN[] =
+{
+  { "Runa Bhattacharjee", "runabh" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Sankarshan Mukhopadhyay", "sankarshan" ATSIGN "randomink" DOTSIGN "org", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ca[] =
+{
+  { "Carles Muñoz Gorriz", "carlesmu" ATSIGN "internautas" DOTSIGN "org", TRUE },
+  { "Harald Servat", "redcrash" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_cs[] =
+{
+  { "Michal Várady", "miko" DOTSIGN "vaji" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Miro Hrončok", "miro" ATSIGN "hroncok" DOTSIGN "cz", FALSE },
+  { "David Štancl", "dstancl" ATSIGN "dstancl" DOTSIGN "cz", FALSE },
+  { "Jakub Špirk", "spirk" DOTSIGN "jakub" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_da[] =
+{
+  { "Per Kongstad", "p_kongstad" ATSIGN "op" DOTSIGN "pl", TRUE },
+  { "Morten Juhl-Johansen Zölde-Fejér", "mjjzf" ATSIGN "syntaktisk" DOTSIGN "dk", FALSE },
+  { "tbesand", "thomas" DOTSIGN "besand" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_de[] =
+{
+  { "Christoph Wickert", "christoph" DOTSIGN "wickert" ATSIGN "googlemail" DOTSIGN "com", TRUE },
+  { "Uwe Krause", "derhorst" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Mark Trompell", "mark" ATSIGN "foresightlinux" DOTSIGN "org", FALSE },
+  { "Matthias Mailänder", "matthias" ATSIGN "mailaender" DOTSIGN "name", FALSE },
+  { "Michael Spahn", "any0n3" ATSIGN "fedoraproject" DOTSIGN "org", FALSE },
+  { "Christian Weiske", "cweiske" ATSIGN "cweiske" DOTSIGN "de", FALSE },
+  { "Johannes Lips", "johannes" DOTSIGN "lips" ATSIGN "googlemail" DOTSIGN "com", FALSE },
+  { "Hubert Hesse", "hub" ATSIGN "hubertscorner" DOTSIGN "de", FALSE },
+  { "Paul Seyfert", "pseyfert" ATSIGN "mathphys" DOTSIGN "fsk" DOTSIGN "uni-heidelberg" DOTSIGN "de", FALSE },
+  { "Knuth Gurkasch", "knuth" ATSIGN "sinn3r" DOTSIGN "org", FALSE },
+  { "Fabian Nowak", "timystery" ATSIGN "arcor" DOTSIGN "de", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_el[] =
+{
+  { "Evaggelos Balaskas", "ebalaskas" ATSIGN "ebalaskas" DOTSIGN "gr", TRUE },
+  { "Stavros Giannouris", "stavrosg" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Ioannis Daliakopoulos", "yannis" ATSIGN "farm" DOTSIGN "gr", FALSE },
+  { "forfolias", "forfolias" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "gapan", "vlahavas" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "jemadux", "kleagkou" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Mario Andonoudiou", "supermodmusic" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Spiros Georgaras", "sng" ATSIGN "hellug" DOTSIGN "gr", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_en_GB[] =
+{
+  { "Jeff Bailes", "thepizzaking" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_eo[] =
+{
+  { "Michael Moroni", "michael" DOTSIGN "moroni" ATSIGN "mailoo" DOTSIGN "org", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_es[] =
+{
+  { "Abel Martín", "abel" DOTSIGN "martin" DOTSIGN "ruiz" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Javier Sánchez Reinosa", "donoban" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Ignacio Velasco", "elega" ATSIGN "elega" DOTSIGN "com" DOTSIGN "ar", FALSE },
+  { "Gonzalo Lagos", "xalo" DOTSIGN "em" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_es_AR[] =
+{
+  { "Diego Augusto Molina", "diegoaugustomolina" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_eu[] =
+{
+  { "Piarres Beobide", "pi" ATSIGN "beobide" DOTSIGN "net", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_fa[] =
+{
+  { "Ehsan Akhlaghi", "esnka" ATSIGN "yahoo" DOTSIGN "com", FALSE },
+  { "Mehdi Esmaeelpour", "ariarat" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_fi[] =
+{
+  { "Jari Rahkonen", "jari" DOTSIGN "rahkonen" ATSIGN "pp1" DOTSIGN "inet" DOTSIGN "fi", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_fr[] =
+{
+  { "Mike Massonnet", "mmassonnet" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Steve Dodier", "sidnioulz" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Durand-Favreau Arnaud", "biginoz" ATSIGN "free" DOTSIGN "fr", FALSE },
+  { "magicrhesus", "magicrhesus" ATSIGN "ouranos" DOTSIGN "be", FALSE },
+  { "Maximilian Schleiss", "maximilian" ATSIGN "xfce" DOTSIGN "org", FALSE },
+  { "marc doutreloux", "mdoutreloux" ATSIGN "yahoo" DOTSIGN "fr", FALSE },
+  { "douart patrick", "patrick" DOTSIGN "2" ATSIGN "laposte" DOTSIGN "net", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_gl[] =
+{
+  { "Leandro Regueiro", "leandro" DOTSIGN "regueiro" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_he[] =
+{
+  { "Yaron Shahrabani", "sh" DOTSIGN "yaron" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Hezy Amiel", "open" ATSIGN "hezyamiel" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_hr[] =
+{
+  { "Petar Koretić", "petar" DOTSIGN "koretic" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Ivica Kolić", "ikoli" ATSIGN "yahoo" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_hu[] =
+{
+  { "Gabor Kelemen", "kelemeng" ATSIGN "gnome" DOTSIGN "hu", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_hy[] =
+{
+  { "sssilver", "sssilver" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_id[] =
+{
+  { "Andhika Padmawan", "andhika" DOTSIGN "padmawan" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Ardjuna", "ard_h_r" ATSIGN "yahoo" DOTSIGN "com", FALSE },
+  { "zaenal1234", "zaenal1234" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_is[] =
+{
+  { "sveinki", "sveinki" ATSIGN "nett" DOTSIGN "is", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_it[] =
+{
+  { "gianluca foddis", "gianluca" DOTSIGN "foddis" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Giuseppe D'Andrea", "cryptstudent" ATSIGN "yahoo" DOTSIGN "com", FALSE },
+  { "Leonardo Totaro", "elleti" DOTSIGN "brainvision" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Cristian Marchi", "cri" DOTSIGN "penta" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Cristian Cozzolino", "cristiancozzolino" ATSIGN "libero" DOTSIGN "it", FALSE },
+  { "maluc", "incjsp" ATSIGN "yahoo" DOTSIGN "it", FALSE },
+  { "Riccardo Magini", "rcrmgn" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Sergio Spinatelli", "eseasonsapp" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ja[] =
+{
+  { "Masato Hashimoto", "hashimo" ATSIGN "xfce" DOTSIGN "org", TRUE },
+  { "Nobuhiro Iwamatsu", "iwamatsu" ATSIGN "nigauri" DOTSIGN "org", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_kk[] =
+{
+  { "Bauzhan Muftakhidinov", "baurthefirst" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_kn[] =
+{
+  { "shankar", "prasad" DOTSIGN "mvs" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Vasudev Kamath", "kamathvasudev" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ko[] =
+{
+  { "Boram Kim", "boramism" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "ByungHyun Choi", "byunghyun" DOTSIGN "choi" ATSIGN "live" DOTSIGN "com", FALSE },
+  { "Sung Jin Gang", "ujuc" ATSIGN "ujuc" DOTSIGN "kr", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_lt[] =
+{
+  { "Ričardas Vasiulis", "ricardas" DOTSIGN "v" ATSIGN "inbox" DOTSIGN "lt", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_lv[] =
+{
+  { "Rihards Prieditis", "rprieditis" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_nb[] =
+{
+  { "Terje Uriansrud", "terje" ATSIGN "uriansrud" DOTSIGN "net", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_nl[] =
+{
+  { "Nick Schermer", "nick" ATSIGN "xfce" DOTSIGN "org", TRUE },
+  { "Pjotr Anon", "pliniusminor" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Vincent Tunru", "projects" ATSIGN "vinnl" DOTSIGN "nl", FALSE },
+  { "padv", "pascal" DOTSIGN "devuyst" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Timo Verbeek", "timoverbeek10" ATSIGN "hotmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_nn[] =
+{
+  { "Eskild Hustvedt", "user" ATSIGN "zerodogg" DOTSIGN "org", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_pa[] =
+{
+  { "A S Alam", "apreet" DOTSIGN "alam" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_pl[] =
+{
+  { "Piotr Sokół", "psokol" ATSIGN "jabster" DOTSIGN "pl", TRUE },
+  { "Ireneusz Gierlach", "irek" DOTSIGN "gierlach" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "jacek2v", "jacek2v" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Jeremy Nicolas", "jerekpl" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Tomasz Chudyk", "chudyk" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_pt[] =
+{
+  { "Nuno Miguel", "nunis" ATSIGN "netcabo" DOTSIGN "pt", TRUE },
+  { "Bruno Ramos", "brunoramos" DOTSIGN "lu" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Joel Patrão", "joel" DOTSIGN "patrao" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Sergio Marques", "smarquespt" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_pt_BR[] =
+{
+  { "Henrique P" DOTSIGN " Machado", "zehrique" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Jonas agx", "jonas" DOTSIGN "agx" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Joelso Andrade", "kosmofilo" ATSIGN "ymail" DOTSIGN "com", FALSE },
+  { "Michel Boaventura", "michel" DOTSIGN "boaventura" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Sérgio Cipolla", "secipolla" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "tschertel", "tschertel" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Vladimir Melo", "vladimirmelo" DOTSIGN "psi" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Michael Martins", "michaelfm21" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ro[] =
+{
+  { "Mișu Moldovan", "dumol" ATSIGN "xfce" DOTSIGN "org", TRUE },
+  { "Andrei Popescu", "andreimpopescu" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Sergiu Mihai", "sergiu" DOTSIGN "mihai" ATSIGN "devlibre" DOTSIGN "net", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ru[] =
+{
+  { "Dmitrij Smirnov", "other" ATSIGN "igus" DOTSIGN "lv", TRUE },
+  { "0leg", "s" ATSIGN "0leg" DOTSIGN "me", FALSE },
+  { "Alexander Yashkin", "alex" DOTSIGN "aspirine" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Claque", "cpt-alatriste" ATSIGN "ya" DOTSIGN "ru", FALSE },
+  { "Sergey Davidoff", "shnatsel" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Styopa Semenukha", "semenukha" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Aleksandr Ponomarenko", "davian818" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Ivan Nikolaev", "voidexp" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Anton Batenev", "antonbatenev" ATSIGN "yandex" DOTSIGN "ru", FALSE },
+  { "Alexandr Boltris", "ua2fgb" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Artem Zolochevskiy", "artem" DOTSIGN "zolochevskiy" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Evgeniy Kosov", "eugene" ATSIGN "kosov" DOTSIGN "net", FALSE },
+  { "gnulinux", "nazarov-1990" ATSIGN "bk" DOTSIGN "ru", FALSE },
+  { "Vlad Vasilev", "lortwer" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Alexander Matveyev", "a" DOTSIGN "s" DOTSIGN "matveyev" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Denis Koryavov", "dkoryavov" ATSIGN "yandex" DOTSIGN "ru", FALSE },
+  { "Andres Kovtunos", "kovtunos" ATSIGN "yandex" DOTSIGN "ru", FALSE },
+  { "Dmitriy Kudryashov", "overmailed" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Sergey Abramkin", "sergey" ATSIGN "abramk" DOTSIGN "in", FALSE },
+  { "Leonid Eremin", "pan" DOTSIGN "sandurlay" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "ton", "tonawuda" ATSIGN "inbox" DOTSIGN "ru", FALSE },
+  { "Victor Homyakov", "homyakov" ATSIGN "isida" DOTSIGN "by", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_si[] =
+{
+  { "Danishka Navin", "danishka" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Anandawardhana", "anandawardhana" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Akila Wajirasena", "akila" DOTSIGN "wajirasena" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Kalpa Pathum Welivitigoda", "callkalpa" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Prabath Galagamage", "gprabath" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "kasundigital", "kasunindika" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "kpgtharaka", "kpgtharaka" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "rashan", "rashan" DOTSIGN "uoc" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_sk[] =
+{
+  { "Robert Hartl", "hartl" DOTSIGN "robert" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Peter Bubelíny", "p" DOTSIGN "bubeliny" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Michal Löffler", "lofflermichalloffler" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "ecube", "machava" DOTSIGN "b" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Tomáš Vadina", "kyberdev" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_sl[] =
+{
+  { "Alan Pepelko", "alan" DOTSIGN "pepelko" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_sq[] =
+{
+  { "Besnik Bleta", "besnik" ATSIGN "programeshqip" DOTSIGN "org", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_sr[] =
+{
+  { "Milan Stojakov", "koleramilan" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "mpopovic", "gpopac" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Nikola Milosavljevic", "minikola" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_sr_latin[] =
+{
+  { "mpopovic", "gpopac" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Uros Lukic", "uroslukic" ATSIGN "hotmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_sv[] =
+{
+  { "Daniel Nylander", "po" ATSIGN "danielnylander" DOTSIGN "se", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ta[] =
+{
+  { "Mohan R", "mohan43u" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_te[] =
+{
+  { "Praveen Illa", "mail2ipn" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_tl[] =
+{
+  { "Manuel Oliva", "oliva" DOTSIGN "manuel" ATSIGN "ymail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_tr[] =
+{
+  { "Gökmen Görgen", "gkmngrgn" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "gokmen", "gokmen" ATSIGN "alageek" DOTSIGN "com", TRUE },
+  { "Avatar", "coskuno_99" ATSIGN "yahoo" DOTSIGN "com", FALSE },
+  { "Ertuğrul HAZAR", "ertugrulhazar" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Hafzullah", "hafzullah" DOTSIGN "is" ATSIGN "windowslive" DOTSIGN "com", FALSE },
+  { "Murat PINAR", "wargasm" ATSIGN "archlinux" DOTSIGN "us", FALSE },
+  { "Akın Ömeroğlu", "akin" ATSIGN "pardus" DOTSIGN "org" DOTSIGN "tr", FALSE },
+  { "alpertekinalp", "alper" DOTSIGN "tekinalp" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Aydan Taşdemir", "aydantasdemir" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Ayhan YALÇINSOY", "ayhanyalcinsoy" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Erçin EKER", "ercineker" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Eren Türkay", "erenturkay" ATSIGN "xfce" DOTSIGN "org", FALSE },
+  { "Gökhan Kılınç", "kilincgokhan" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Ilker DAGLI", "ilker" ATSIGN "ilkerdagli" DOTSIGN "info", FALSE },
+  { "kozdincer", "kaanozdincer" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "marici", "cadthecoder" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "martinamca", "martinamca" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "mesutcank", "mesutcank" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "necdetyucel", "necdetyucel" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Osman Karagöz", "osmank3" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Ozan Türkyılmaz", "ozan" DOTSIGN "turkyilmaz" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Özgür Kuru", "ozgur" ATSIGN "ozgurkuru" DOTSIGN "net", FALSE },
+  { "Samed Beyribey", "beyribey" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Senol Korkmaz", "mail" ATSIGN "senolkorkmaz" DOTSIGN "info", FALSE },
+  { "Server Acim", "serveracim" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Utku Aydın", "utkuaydin" ATSIGN "archlinux" DOTSIGN "org" DOTSIGN "tr", FALSE },
+  { "vlyalcin", "naklovnak" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ug[] =
+{
+  { "Gheyret Kenji", "gheyret" ATSIGN "yahoo" DOTSIGN "com", TRUE },
+  { "Abduqadir Abliz", "sahran" ATSIGN "live" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_uk[] =
+{
+  { "Dmitry Nikitin", "luckas_fb" ATSIGN "mail" DOTSIGN "ru", TRUE },
+  { "Yarema aka Knedlyk", "yupadmin" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Maxim Dziumanenko", "dziumanenko" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Andriy Matkovsky", "sidius" DOTSIGN "ua" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_ur[] =
+{
+  { "Irfan Ashraf", "visualrange" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_vi[] =
+{
+  { "Vinh Nguyen", "kureikain" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_zh_CN[] =
+{
+  { "Chipong Luo", "chipong_l" ATSIGN "yahoo" DOTSIGN "com", TRUE },
+  { "Hunt Xu", "mhuntxu" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "玉堂 白鹤", "yjwork" DOTSIGN "xfce" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { "Qianqian Fang", "fangqq" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Hao Cui", "cuihao" DOTSIGN "leo" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "Ganghua Leng", "hiweed" ATSIGN "gmail" DOTSIGN "com", FALSE },
+  { "xsoul", "", FALSE },
+  { NULL, NULL }
+};
+
+static const TranslatorInfo xfce_translators_zh_TW[] =
+{
+  { "Cheng-Chia Tseng", "pswo10680" ATSIGN "gmail" DOTSIGN "com", TRUE },
+  { NULL, NULL }
+};
+
+static const TranslatorTeam xfce_translators[] =
+{
+  { "Amharic", "am", xfce_translators_am },
+  { "Arabic", "ar", xfce_translators_ar },
+  { "Asturian", "ast", xfce_translators_ast },
+  { "Belarusian", "be", xfce_translators_be },
+  { "Bulgarian", "bg", xfce_translators_bg },
+  { "Bengali", "bn", xfce_translators_bn },
+  { "Bengali (India)", "bn_IN", xfce_translators_bn_IN },
+  { "Catalan (Valencian)", "ca", xfce_translators_ca },
+  { "Czech", "cs", xfce_translators_cs },
+  { "Danish", "da", xfce_translators_da },
+  { "German", "de", xfce_translators_de },
+  { "Greek", "el", xfce_translators_el },
+  { "English (United Kingdom)", "en_GB", xfce_translators_en_GB },
+  { "Esperanto", "eo", xfce_translators_eo },
+  { "Spanish (Castilian)", "es", xfce_translators_es },
+  { "Spanish (Argentinian)", "es_AR", xfce_translators_es_AR },
+  { "Basque", "eu", xfce_translators_eu },
+  { "Persian", "fa", xfce_translators_fa },
+  { "Finnish", "fi", xfce_translators_fi },
+  { "French", "fr", xfce_translators_fr },
+  { "Galician", "gl", xfce_translators_gl },
+  { "Hebrew", "he", xfce_translators_he },
+  { "Croatian", "hr", xfce_translators_hr },
+  { "Hungarian", "hu", xfce_translators_hu },
+  { "Armenian", "hy", xfce_translators_hy },
+  { "Indonesian", "id", xfce_translators_id },
+  { "Icelandic", "is", xfce_translators_is },
+  { "Italian", "it", xfce_translators_it },
+  { "Japanese", "ja", xfce_translators_ja },
+  { "Kazakh", "kk", xfce_translators_kk },
+  { "Kannada", "kn", xfce_translators_kn },
+  { "Korean", "ko", xfce_translators_ko },
+  { "Lithuanian", "lt", xfce_translators_lt },
+  { "Latvian", "lv", xfce_translators_lv },
+  { "Norwegian Bokmal", "nb", xfce_translators_nb },
+  { "Dutch (Flemish)", "nl", xfce_translators_nl },
+  { "Norwegian Nynorsk", "nn", xfce_translators_nn },
+  { "Panjabi (Punjabi)", "pa", xfce_translators_pa },
+  { "Polish", "pl", xfce_translators_pl },
+  { "Portuguese", "pt", xfce_translators_pt },
+  { "Portuguese (Brazilian)", "pt_BR", xfce_translators_pt_BR },
+  { "Romanian", "ro", xfce_translators_ro },
+  { "Russian", "ru", xfce_translators_ru },
+  { "Sinhala", "si", xfce_translators_si },
+  { "Slovak", "sk", xfce_translators_sk },
+  { "Slovenian", "sl", xfce_translators_sl },
+  { "Albanian", "sq", xfce_translators_sq },
+  { "Serbian", "sr", xfce_translators_sr },
+  { "Serbian (Latin)", "sr at latin", xfce_translators_sr_latin },
+  { "Swedish", "sv", xfce_translators_sv },
+  { "Tamil", "ta", xfce_translators_ta },
+  { "Telugu", "te", xfce_translators_te },
+  { "Tagalog", "tl", xfce_translators_tl },
+  { "Turkish", "tr", xfce_translators_tr },
+  { "Uyghur", "ug", xfce_translators_ug },
+  { "Ukrainian", "uk", xfce_translators_uk },
+  { "Urdu", "ur", xfce_translators_ur },
+  { "Vietnamese", "vi", xfce_translators_vi },
+  { "Chinese (China)", "zh_CN", xfce_translators_zh_CN },
+  { "Chinese (Taiwan)", "zh_TW", xfce_translators_zh_TW },
+};
diff --git a/xfce4-about/xfce4-about-dialog.glade b/xfce4-about/xfce4-about-dialog.glade
new file mode 100644
index 0000000..150b705
--- /dev/null
+++ b/xfce4-about/xfce4-about-dialog.glade
@@ -0,0 +1,577 @@
+<?xml version="1.0"?>
+<interface>
+  <requires lib="gtk+" version="2.16"/>
+  <!-- interface-requires libxfce4ui 4.5 -->
+  <!-- interface-naming-policy project-wide -->
+  <object class="XfceTitledDialog" id="window">
+    <property name="title" translatable="yes">About the Xfce Desktop Environment</property>
+    <property name="default_width">500</property>
+    <property name="default_height">400</property>
+    <property name="icon_name">xfce4-logo</property>
+    <property name="type_hint">normal</property>
+    <child internal-child="vbox">
+      <object class="GtkVBox" id="dialog-vbox1">
+        <property name="visible">True</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">2</property>
+        <child>
+          <object class="GtkNotebook" id="notebook">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="border_width">6</property>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="border_width">6</property>
+                <property name="hscrollbar_policy">automatic</property>
+                <property name="vscrollbar_policy">automatic</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="about-textview">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="editable">False</property>
+                    <property name="wrap_mode">word</property>
+                    <property name="left_margin">3</property>
+                    <property name="right_margin">3</property>
+                    <property name="cursor_visible">False</property>
+                    <property name="buffer">about-buffer</property>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child type="tab">
+              <object class="GtkLabel" id="label1">
+                <property name="visible">True</property>
+                <property name="label" translatable="yes">About</property>
+              </object>
+              <packing>
+                <property name="tab_fill">False</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow2">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="border_width">6</property>
+                <property name="hscrollbar_policy">automatic</property>
+                <property name="vscrollbar_policy">automatic</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="credits-textview">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="editable">False</property>
+                    <property name="wrap_mode">word</property>
+                    <property name="left_margin">3</property>
+                    <property name="right_margin">3</property>
+                    <property name="cursor_visible">False</property>
+                    <property name="buffer">credits-buffer</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child type="tab">
+              <object class="GtkLabel" id="label2">
+                <property name="visible">True</property>
+                <property name="label" translatable="yes">Credits</property>
+              </object>
+              <packing>
+                <property name="position">1</property>
+                <property name="tab_fill">False</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="vendor-tab">
+                <property name="can_focus">True</property>
+                <property name="border_width">6</property>
+                <property name="hscrollbar_policy">automatic</property>
+                <property name="vscrollbar_policy">automatic</property>
+                <property name="shadow_type">etched-in</property>
+                <child>
+                  <object class="GtkTextView" id="vendor-textview">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="editable">False</property>
+                    <property name="wrap_mode">word</property>
+                    <property name="left_margin">3</property>
+                    <property name="right_margin">3</property>
+                    <property name="cursor_visible">False</property>
+                    <property name="buffer">vendor-buffer</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child type="tab">
+              <object class="GtkLabel" id="vendor-label">
+                <property name="visible">True</property>
+                <property name="label">Vendor</property>
+              </object>
+              <packing>
+                <property name="position">2</property>
+                <property name="tab_fill">False</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkVBox" id="vbox1">
+                <property name="visible">True</property>
+                <property name="border_width">6</property>
+                <property name="orientation">vertical</property>
+                <property name="spacing">6</property>
+                <child>
+                  <object class="GtkScrolledWindow" id="scrolledwindow3">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="hscrollbar_policy">automatic</property>
+                    <property name="vscrollbar_policy">automatic</property>
+                    <property name="shadow_type">etched-in</property>
+                    <child>
+                      <object class="GtkTextView" id="copyright-textview">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="editable">False</property>
+                        <property name="wrap_mode">word</property>
+                        <property name="left_margin">3</property>
+                        <property name="right_margin">3</property>
+                        <property name="cursor_visible">False</property>
+                        <property name="buffer">copyright-buffer</property>
+                      </object>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="position">0</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkHButtonBox" id="hbuttonbox1">
+                    <property name="visible">True</property>
+                    <property name="spacing">6</property>
+                    <property name="layout_style">start</property>
+                    <child>
+                      <object class="GtkButton" id="gpl-button">
+                        <property name="label" translatable="yes">GPL</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="receives_default">True</property>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">False</property>
+                        <property name="position">0</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButton" id="lgpl-button">
+                        <property name="label" translatable="yes">LGPL</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="receives_default">True</property>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">False</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButton" id="bsd-button">
+                        <property name="label" translatable="yes">BSD</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="receives_default">True</property>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">False</property>
+                        <property name="position">2</property>
+                      </packing>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="expand">False</property>
+                    <property name="position">1</property>
+                  </packing>
+                </child>
+              </object>
+              <packing>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child type="tab">
+              <object class="GtkLabel" id="label3">
+                <property name="visible">True</property>
+                <property name="label" translatable="yes">Copyright</property>
+              </object>
+              <packing>
+                <property name="position">3</property>
+                <property name="tab_fill">False</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child internal-child="action_area">
+          <object class="GtkHButtonBox" id="dialog-action_area1">
+            <property name="visible">True</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="help-button">
+                <property name="label">gtk-help</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+                <property name="secondary">True</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="close-button">
+                <property name="label">gtk-close</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="pack_type">end</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+    <action-widgets>
+      <action-widget response="0">help-button</action-widget>
+      <action-widget response="0">close-button</action-widget>
+    </action-widgets>
+  </object>
+  <object class="GtkDialog" id="license-dialog">
+    <property name="border_width">5</property>
+    <property name="title" translatable="yes">License</property>
+    <property name="modal">True</property>
+    <property name="default_width">500</property>
+    <property name="default_height">300</property>
+    <property name="type_hint">normal</property>
+    <child internal-child="vbox">
+      <object class="GtkVBox" id="dialog-vbox2">
+        <property name="visible">True</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">2</property>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow4">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="border_width">6</property>
+            <property name="hscrollbar_policy">automatic</property>
+            <property name="vscrollbar_policy">automatic</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <object class="GtkTextView" id="license-textview">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="editable">False</property>
+                <property name="wrap_mode">word</property>
+                <property name="justification">center</property>
+                <property name="left_margin">3</property>
+                <property name="right_margin">3</property>
+                <property name="cursor_visible">False</property>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child internal-child="action_area">
+          <object class="GtkHButtonBox" id="dialog-action_area2">
+            <property name="visible">True</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="license-close-button">
+                <property name="label">gtk-close</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="pack_type">end</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+    <action-widgets>
+      <action-widget response="0">license-close-button</action-widget>
+    </action-widgets>
+  </object>
+  <object class="GtkTextBuffer" id="about-buffer"/>
+  <object class="GtkTextBuffer" id="credits-buffer"/>
+  <object class="GtkTextBuffer" id="copyright-buffer"/>
+  <object class="GtkTextBuffer" id="gpl-buffer">
+    <property name="text">GNU GENERAL PUBLIC LICENSE
+
+Version 2, June 1991
+
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.  
+51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+
+Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
+
+Preamble
+
+The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.
+
+When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
+
+To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.
+
+For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
+
+We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.
+
+Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.
+
+Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.
+
+The precise terms and conditions for copying, distribution and modification follow.
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.
+
+1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.
+
+2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. 
+    b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. 
+    c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) 
+
+These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
+
+3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, 
+    b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, 
+    c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) 
+
+The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.
+
+If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.
+
+4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
+
+5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.
+
+6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.
+
+7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.
+
+This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.
+
+8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.
+
+9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.
+
+10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.
+
+NO WARRANTY
+
+11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. </property>
+  </object>
+  <object class="GtkTextBuffer" id="lgpl-buffer">
+    <property name="text">GNU LIBRARY GENERAL PUBLIC LICENSE
+
+Version 2, June 1991
+
+Copyright (C) 1991 Free Software Foundation, Inc.
+51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
+
+Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
+
+[This is the first released version of the library GPL. It is numbered 2 because it goes with version 2 of the ordinary GPL.]
+
+Preamble
+
+The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.
+
+This license, the Library General Public License, applies to some specially designated Free Software Foundation software, and to any other libraries whose authors decide to use it. You can use it for your libraries, too.
+
+When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
+
+To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library, or if you modify it.
+
+For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it. And you must show them these terms so they know their rights.
+
+Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the library.
+
+Also, for each distributor's protection, we want to make certain that everyone understands that there is no warranty for this free library. If the library is modified by someone else and passed on, we want its recipients to know that what they have is not the original version, so that any problems introduced by others will not reflect on the original authors' reputations.
+
+Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that companies distributing free software will individually obtain patent licenses, thus in effect transforming the program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.
+
+Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which was designed for utility programs. This license, the GNU Library General Public License, applies to certain designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and don't assume that anything in it is the same as in the ordinary license.
+
+The reason we have a separate public license for some libraries is that they blur the distinction we usually make between modifying or adding to a program and simply using it. Linking a program with a library, without changing the library, is in some sense simply using the library, and is analogous to running a utility program or application program. However, in a textual and legal sense, the linked executable is a combined work, a derivative of the original library, and the ordinary General Public License treats it as such.
+
+Because of this blurred distinction, using the ordinary General Public License for libraries did not effectively promote software sharing, because most developers did not use the libraries. We concluded that weaker conditions might promote sharing better.
+
+However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit from the free status of the libraries themselves. This Library General Public License is intended to permit developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) The hope is that this will lead to faster development of free libraries.
+
+The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, while the latter only works together with the library.
+
+Note that it is possible for a library to be covered by the ordinary General Public License rather than by this special one.
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0. This License Agreement applies to any software library which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Library General Public License (also called "this License"). Each licensee is addressed as "you".
+
+A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables.
+
+The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".)
+
+"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library.
+
+Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does.
+
+1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library.
+
+You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.
+
+2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
+
+    * a) The modified work must itself be a software library.
+    * b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change.
+    * c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License.
+    * d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful.
+
+      (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
+
+3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices.
+
+Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy.
+
+This option is useful when you wish to copy part of the code of the Library into a program that is not a library.
+
+4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange.
+
+If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code.
+
+5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License.
+
+However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables.
+
+When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law.
+
+If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.)
+
+Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself.
+
+6. As an exception to the Sections above, you may also compile or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.
+
+You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things:
+
+    * a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.)
+    * b) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution.
+    * c) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place.
+    * d) Verify that the user has already received a copy of these materials or that you have already sent this user a copy.
+
+For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.
+
+It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute.
+
+7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things:
+
+    * a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above.
+    * b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.
+
+8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
+
+9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it.
+
+10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.
+
+11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.
+
+This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.
+
+12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.
+
+13. The Free Software Foundation may publish revised and/or new versions of the Library General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation.
+
+14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.
+
+NO WARRANTY
+
+15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</property>
+  </object>
+  <object class="GtkTextBuffer" id="bsd-buffer">
+    <property name="text">Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the organization nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</property>
+  </object>
+  <object class="GtkTextBuffer" id="vendor-buffer"/>
+</interface>
diff --git a/xfce4-about/xfce4-about.desktop.in b/xfce4-about/xfce4-about.desktop.in
new file mode 100644
index 0000000..9b17b07
--- /dev/null
+++ b/xfce4-about/xfce4-about.desktop.in
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Exec=xfce4-about
+Icon=help-about
+StartupNotify=false
+Terminal=false
+Categories=Utility;X-XFCE;X-Xfce-Toplevel;
+OnlyShowIn=XFCE;
+_Name=About Xfce
+_Comment=Information about the Xfce Desktop Environment


More information about the Xfce4-commits mailing list