Author: jtn
Date: Mon Jun  9 10:57:10 2014
New Revision: 25111

URL: http://svn.gna.org/viewcvs/freeciv?rev=25111&view=rev
Log:
Document initial population of cities built by units.

See gna bug #22152.

Modified:
    branches/S2_4/client/helpdata.c

Modified: branches/S2_4/client/helpdata.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_4/client/helpdata.c?rev=25111&r1=25110&r2=25111&view=diff
==============================================================================
--- branches/S2_4/client/helpdata.c     (original)
+++ branches/S2_4/client/helpdata.c     Mon Jun  9 10:57:10 2014
@@ -1996,7 +1996,11 @@
              " production cost.\n"));
   }
   if (utype_has_flag(utype, F_CITIES)) {
-    CATLSTR(buf, bufsz, _("* Can build new cities.\n"));
+    cat_snprintf(buf, bufsz,
+                 PL_("* Can build new cities (initial population %d).\n",
+                     "* Can build new cities (initial population %d).\n",
+                     utype->city_size),
+                 utype->city_size);
   }
   if (utype_has_flag(utype, F_ADD_TO_CITY)) {
     cat_snprintf(buf, bufsz,


_______________________________________________
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits

Reply via email to