summaryrefslogtreecommitdiff
path: root/src/gui/aboutWindow.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/aboutWindow.vala')
-rw-r--r--src/gui/aboutWindow.vala26
1 files changed, 13 insertions, 13 deletions
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 <http://www.gnu.org/licenses/>.
+this program. If not, see <http://www.gnu.org/licenses/>.
*/
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 <code@simonschneegans.de>",
+ "Simon Schneegans <code@simonschneegans.de>",
"Francesco Piccinno <stack.box@gmail.com>"
};
string[] artists = {
@@ -48,29 +48,29 @@ public class AboutWindow: Gtk.AboutDialog {
"Ting Zhou <tzhou@haverford.edu> (ZH-CN)",
"Martin Dinov <martindinov@yahoo.com> (BG)"
};
-
+
// sort translators
GLib.List<string> translator_list = new GLib.List<string>();
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 <code@simonschneegans.de>",
+ copyright : "Copyright (C) 2011-2015 Simon Schneegans <code@simonschneegans.de>",
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
);
}