From 4627ce546cd1142a5bd56ee4655195d54cb90cb9 Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Sun, 22 Jan 2012 21:26:02 +0000 Subject: [PATCH] Remove the stable version numbers from the Development warning version. Instead, a pointer to the GnuCash website is added for those who are actually looking for a stable release. This follows an in my opinion good suggestion from Colin Law on the mailing list. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21877 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/bin/gnucash-bin.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/bin/gnucash-bin.c b/src/bin/gnucash-bin.c index 8e637efb0e..cc5364e3c6 100644 --- a/src/bin/gnucash-bin.c +++ b/src/bin/gnucash-bin.c @@ -86,12 +86,11 @@ gnc_print_unstable_message(void) { if (!is_development_version) return; - g_print("\n\n%s%s%s%s%s%s\n%s%s%s\n\n", - _("This is a development version. It may or may not work.\n"), - _("Report bugs and other problems to gnucash-devel@gnucash.org.\n"), - _("You can also lookup and file bug reports at http://bugzilla.gnome.org\n"), - _("The last stable version was "), PACKAGE_NAME, " 2.4.7", - _("The next stable version will be "), PACKAGE_NAME, " 2.6"); + g_print("\n\n%s\n%s\n%s\n%s\n", + _("This is a development version. It may or may not work."), + _("Report bugs and other problems to gnucash-devel@gnucash.org"), + _("You can also lookup and file bug reports at http://bugzilla.gnome.org"), + _("To find the last stable version, please refer to http://www.gnucash.org")); } static gchar *environment_expand(gchar *param)