Complete.Org:
Mailing Lists:
Archives:
freeciv-dev:
September 2005: [Freeciv-Dev] (PR#13960) can't change nation names |
![]() |
[Freeciv-Dev] (PR#13960) can't change nation names[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
<URL: http://bugs.freeciv.org/Ticket/Display.html?id=13960 > In this commit: Updates to several nations (including simple style improvements). Patches by Daniel Markstedt <himasaram@xxxxxxxx> in PR#13955. it breaks loading of savegames since the changing of the city name means the game can't be loaded. This is probably a bug in the design, although I'm not sure how to fix it. But for now I will simply apply this patch to revert it. -jason Index: data/nation/argentine.ruleset =================================================================== RCS file: /home/freeciv/CVS/freeciv/data/nation/argentine.ruleset,v retrieving revision 1.17 diff -p -u -r1.17 argentine.ruleset --- data/nation/argentine.ruleset 13 Sep 2005 23:14:38 -0000 1.17 +++ data/nation/argentine.ruleset 14 Sep 2005 02:06:26 -0000 @@ -1,6 +1,7 @@ [nation_argentine] -name=_("Argentinean") +; Changing the name will break savegames +name=_("Argentine") plural=_("?plural:Argentines") groups=_("Modern"), _("American") legend=_("Argentina is located on the south-eastern coast of South America.\ Index: data/nation/newzealand.ruleset =================================================================== RCS file: /home/freeciv/CVS/freeciv/data/nation/newzealand.ruleset,v retrieving revision 1.5 diff -p -u -r1.5 newzealand.ruleset --- data/nation/newzealand.ruleset 13 Sep 2005 23:14:38 -0000 1.5 +++ data/nation/newzealand.ruleset 14 Sep 2005 02:06:26 -0000 @@ -1,6 +1,7 @@ [nation_newzealand] -name=_("New Zealander") +; Changing the name will break savegames +name=_("New Zealand") plural=_("?plural:New Zealanders") legend=_("The island group of New Zealand was annexed by Britain in 1840.\ Following a royal proclamation in 1907, the country became an independent\ Index: data/nation/venezuelan.ruleset =================================================================== RCS file: /home/freeciv/CVS/freeciv/data/nation/venezuelan.ruleset,v retrieving revision 1.6 diff -p -u -r1.6 venezuelan.ruleset --- data/nation/venezuelan.ruleset 13 Sep 2005 23:14:38 -0000 1.6 +++ data/nation/venezuelan.ruleset 14 Sep 2005 02:06:26 -0000 @@ -1,6 +1,7 @@ [nation_venezuelan] -name=_("Venezuelan") +; Changing the name will break savegames +name=_("Venezuela") plural=_("?plural:Venezuelans") groups=_("American"), _("Modern") legend=_("Venezuela is the most northern country in South America. Having\
|