From b683ce2789d95b2e9f221e75adc30efd91cfb901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 24 Jan 2015 11:03:06 +0100 Subject: Imported Upstream version 0.5.7 --- src/gui/aboutWindow.vala | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/gui/aboutWindow.vala') diff --git a/src/gui/aboutWindow.vala b/src/gui/aboutWindow.vala index c6b7453..39258cb 100644 --- a/src/gui/aboutWindow.vala +++ b/src/gui/aboutWindow.vala @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2011 by Simon Schneegans This program is free software: you can redistribute it and/or modify it @@ -12,25 +12,25 @@ 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, see . +this program. If not, see . */ namespace GnomePie { -///////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////// /// A simple about dialog. ///////////////////////////////////////////////////////////////////////// public class AboutWindow: Gtk.AboutDialog { - + ///////////////////////////////////////////////////////////////////// /// C'tor, creates a new about dialog. The entries are sorted alpha- /// betically. ///////////////////////////////////////////////////////////////////// - + public AboutWindow () { string[] devs = { - "Simon Schneegans ", + "Simon Schneegans ", "Francesco Piccinno " }; string[] artists = { @@ -48,29 +48,29 @@ public class AboutWindow: Gtk.AboutDialog { "Ting Zhou (ZH-CN)", "Martin Dinov (BG)" }; - + // sort translators GLib.List translator_list = new GLib.List(); foreach (var translator in translators) translator_list.append(translator); - + translator_list.sort((a, b) => { return a.ascii_casecmp(b); }); - + string translator_string = ""; foreach (var translator in translator_list) translator_string += translator + "\n"; - + GLib.Object ( artists : artists, authors : devs, translator_credits : translator_string, - copyright : "Copyright (C) 2011-2012 Simon Schneegans ", + copyright : "Copyright (C) 2011-2015 Simon Schneegans ", program_name: "Gnome-Pie", logo_icon_name: "gnome-pie", - website: "http://www.simonschneegans.de/?page_id=12", - website_label: "www.gnome-pie.simonschneegans.de", + website: "http://simmesimme.github.io/gnome-pie.html", + website_label: "Homepage", version: Deamon.version ); } -- cgit v1.2.3