[five-or-more/vala-port] update about dialog
- From: Thomas Hindoe Paaboel Andersen <thomashpa src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [five-or-more/vala-port] update about dialog
- Date: Sun, 11 Nov 2012 21:10:15 +0000 (UTC)
commit e6fd02e5ab5fc440f362eea7e00bd37189c5e5d6
Author: Thomas Hindoe Paaboel Andersen <phomes gmail com>
Date: Sun Nov 11 22:10:09 2012 +0100
update about dialog
TODO | 2 --
src/application.vala | 16 ++++++++--------
2 files changed, 8 insertions(+), 10 deletions(-)
---
diff --git a/TODO b/TODO
index 5d82124..10880cb 100644
--- a/TODO
+++ b/TODO
@@ -10,8 +10,6 @@ The cli version should be in raw mode
Are the window sizes stored on shutdown?
-Add documenters to the about dialog
-
Should the translations files be cleaned up after the split?
Implement the line-detection code
diff --git a/src/application.vala b/src/application.vala
index 8da708a..22a4a83 100644
--- a/src/application.vala
+++ b/src/application.vala
@@ -20,9 +20,6 @@ namespace FiveOrMore
{ "about", about_cb },
{ "quit", quit_cb }
};
-
- private const string[] authors = { "Thomas Andersen <phomes gmail com>", "Robert Szokovacs <szo appaloosacorp hu>", "Szabolcs B\xc3\xa1n <shooby gnome hu>" };
- //private const string[] documenters = { "Tiffany Antopolski", "Lanka Rathnayaka" };
public FiveOrMoreApp ()
{
@@ -133,19 +130,22 @@ namespace FiveOrMore
private void about_cb ()
{
+ const string authors[] = { "Robert Szokovacs (original author)", "Szabolcs B\xc3\xa1n (original author)", "Thomas Andersen (port to vala)", null };
+ const string documenters[] = { "Tiffany Antopolski", "Lanka Rathnayaka", null };
+
Gtk.show_about_dialog (window,
"program-name", _("Five or More"),
"logo-icon-name", "five-or-more",
"version", Config.VERSION,
- "comments", _("GNOME port of the once-popular Color Lines game.\n\nFive or More is a part of GNOME Games."),
+ "comments", _("GNOME port of the once-popular Color Lines game"),
"copyright", "Copyright \xc2\xa9 1997-2012 Free Software Foundation, Inc.",
- "license-type", Gtk.License.GPL_3_0,
+ //"license-type", Gtk.License.GPL_3_0,
"wrap-license", false,
"authors", authors,
- //FIXME: "documenters", documenters,
+ "documenters", documenters,
"translator-credits", _("translator-credits"),
- "website", "http://www.gnome.org/projects/gnome-games/",
- "website-label", _("GNOME Games web site"),
+ "website", "http://live.gnome.org/Five%20or%20more",
+ "website-label", _("Five or More web site"),
null);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]