[gnome-clocks] Credit all contributors



commit 3ab3749066b26171b24408f266fc8ecc08e14b7d
Author: Paolo Borelli <pborelli gnome org>
Date:   Fri Aug 17 11:41:35 2012 +0200

    Credit all contributors

 gnomeclocks/__init__.py |   17 +++++++++++++++++
 gnomeclocks/app.py      |    4 ++--
 2 files changed, 19 insertions(+), 2 deletions(-)
---
diff --git a/gnomeclocks/__init__.py b/gnomeclocks/__init__.py
index d953478..adfb18f 100644
--- a/gnomeclocks/__init__.py
+++ b/gnomeclocks/__init__.py
@@ -1,3 +1,5 @@
+# -.- coding: utf-8 -.-
+
 # Copyright (c) 2011-2012 Collabora, Ltd.
 #
 # Gnome Clocks is free software; you can redistribute it and/or modify
@@ -17,3 +19,18 @@
 # Author: Seif Lotfy <seif lotfy collabora co uk>
 
 __version__ = "0.1.0"
+
+# Credit every contributor, in alphabetical order
+AUTHORS = [
+    "Alex Anthony",
+    "Paolo Borelli",
+    "Allan Day",
+    "Piotr DrÄg",
+    "Emily Gonyer",
+    "MaÃl Lavault",
+    "Seif Lotfy",
+    "William Jon McCann",
+    "Eslam Mostafa",
+    "Bastien Nocera",
+    "Jakub Steiner"
+]
diff --git a/gnomeclocks/app.py b/gnomeclocks/app.py
index cdb3048..ebed937 100644
--- a/gnomeclocks/app.py
+++ b/gnomeclocks/app.py
@@ -23,7 +23,7 @@ from gi.repository import Gtk, Gdk, GObject, Gio
 from clocks import World, Alarm, Timer, Stopwatch
 from utils import Dirs
 
-from gnomeclocks import __version__
+from gnomeclocks import __version__, AUTHORS
 
 class Window(Gtk.ApplicationWindow):
     def __init__(self, app):
@@ -99,7 +99,7 @@ class Window(Gtk.ApplicationWindow):
         about.set_version(__version__)
         about.set_copyright("(c) Collabora Ltd\n(c) Emily Gonyer\n(c) Eslam Mostafa")
         about.set_comments(_("Clocks is a clock application for the GNOME Desktop"))
-        about.set_authors(["Seif Lotfy, Emily Gonyer, Eslam Mostafa"])
+        about.set_authors(AUTHORS)
         about.set_translator_credits(_("translator-credits"))
         about.connect("response", lambda w, r: about.destroy())
         about.set_wrap_license("true")



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]