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
This commit is contained in:
Geert Janssens 2012-01-22 21:26:02 +00:00
parent e91e669858
commit 4627ce546c

View File

@ -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)