diff options
author | Alessandro Ghedini <al3xbio@gmail.com> | 2012-11-03 16:15:11 +0100 |
---|---|---|
committer | Alessandro Ghedini <al3xbio@gmail.com> | 2012-11-03 16:15:11 +0100 |
commit | 1f6f24308e96040962794c5a9ffd81597b5e072a (patch) | |
tree | 7d719e21bf759d20ace53bcac13325048aa21a8c /src/gui/newsWindow.vala | |
parent | 87a5b11d7598fc1e5239e11972c5e03a38bbb672 (diff) |
Imported Upstream version 0.5.4upstream/0.5.4
Diffstat (limited to 'src/gui/newsWindow.vala')
-rw-r--r-- | src/gui/newsWindow.vala | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/src/gui/newsWindow.vala b/src/gui/newsWindow.vala index 9212fa6..75de60e 100644 --- a/src/gui/newsWindow.vala +++ b/src/gui/newsWindow.vala @@ -23,7 +23,7 @@ namespace GnomePie { public class NewsWindow: Gtk.Dialog { - public static const int news_count = 1; + public static const int news_count = 2; ///////////////////////////////////////////////////////////////////// /// @@ -42,27 +42,7 @@ public class NewsWindow: Gtk.Dialog { var news = new Gtk.Label(""); news.wrap = true; news.set_width_chars(75); - news.set_markup("<b>Gnome-Pie needs your help!</b>\n\n" + - - "Hey, this is Simon, developer of Gnome-Pie. I’m going to " + - "write my Bachelor thesis on pie menus! In order to improve " + - "Gnome-Pie to the limits, I need some information on how " + - "you use Gnome-Pie.\n\n" + - - "<b>So please help improving this software by sending the " + - "file 'gnome-pie.stats' located in <a href='file:" + - Paths.config_directory + "'>" + Paths.config_directory + - "</a> by email to <a href='mailto:pie-stats@simonschneegans.de?subject=statistics'>" + - "pie-stats@simonschneegans.de</a>!</b>\n\n" + - - "There is no personal information in this file. Only " + - "information on your usage frequency, how fast you use " + - "Gnome-Pie and how many Pies with how many Slices you " + - "have configured. If you have any questions regarding " + - "this topic please send an email to " + - "<a href='mailto:code@simonschneegans.de'>code@simonschneegans.de</a>!\n\n" + - - "Thank you so much! It’s going to be exciting!"); + news.set_markup("<b>Thank you!</b>\n\n"); box.pack_start(news, false, false); |