Index: common/version.c =================================================================== RCS file: /home/freeciv/CVS/freeciv/common/version.c,v retrieving revision 1.1 diff -u -r1.1 version.c --- version.c 2000/01/26 14:39:59 1.1 +++ version.c 2000/08/11 18:33:06 @@ -46,14 +46,16 @@ #if IS_BETA_VERSION static char msgbuf[128]; my_snprintf (msgbuf, sizeof (msgbuf), - _("THIS IS A BETA VERSION\n" + _("THIS IS A BETA VERSION!\n" "Freeciv %s will be released in\n" - "%s, at %s"), + "%s, at %s"), /* No full stop here since it would be + immediately following a URL, which + would only cause confusion. */ NEXT_STABLE_VERSION, _(NEXT_RELEASE_MONTH), WEBSITE_URL); return msgbuf; #else - return month[0]; + return NULL; #endif }