Author: cazfi
Date: Tue Sep 13 06:58:35 2016
New Revision: 33788

URL: http://svn.gna.org/viewcvs/freeciv?rev=33788&view=rev
Log:
Fixed client to list trade route direction correctly.

See bug #25048

Modified:
    trunk/client/citydlg_common.c

Modified: trunk/client/citydlg_common.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/citydlg_common.c?rev=33788&r1=33787&r2=33788&view=diff
==============================================================================
--- trunk/client/citydlg_common.c       (original)
+++ trunk/client/citydlg_common.c       Tue Sep 13 06:58:35 2016
@@ -479,14 +479,14 @@
                      name);
         break;
       case RDIR_FROM:
-        cat_snprintf(buf, bufsz, _("%+4d : Trading %s from %s\n"),
+        cat_snprintf(buf, bufsz, _("%+4d : Trading %s to %s\n"),
                      proute->value
                      * (100 + get_city_bonus(pcity, EFT_TRADEROUTE_PCT)) / 100,
                      goods_name_translation(proute->goods),
                      name);
         break;
       case RDIR_TO:
-        cat_snprintf(buf, bufsz, _("%+4d : Trading %s to %s\n"),
+        cat_snprintf(buf, bufsz, _("%+4d : Trading %s from %s\n"),
                      proute->value
                      * (100 + get_city_bonus(pcity, EFT_TRADEROUTE_PCT)) / 100,
                      goods_name_translation(proute->goods),


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

Reply via email to