Year suffix change

WhimpyCiv

Warlord
Joined
Apr 10, 2004
Messages
100
Location
Houston, Texas
I'm wondering what it would take to change the year suffix. B.C. is Before Christ and A.D. is Anno Domini (Year of our Lord). Which may be fine for a Christian civ, though Christianity is rarely founded in year zero (or 1 AD, to be more precise). It would be interesting to change the readout date to reflect the foundation of the major religion in the society, but more modestly I'm wondering how one would go about changing "BC" to "BCE" and changing "AD" to "CE" if that's possible.
 
Sort of :deadhorse: thing because I discussed about it before, no one had told anything about modding this so I doubt it :). I wish too but we can live with this very minor thing :).
 
Create a new text file that loads in RoM and changes these entries:

Code:
<TEXT>
		<Tag>TXT_KEY_TIME_BC_SAVE</Tag>
		<English>BC-%s1_Date</English>
		<French>%s1_Date av. J-C.</French>
		<German>v. Chr.-%s1_Date</German>
		<Italian>a. C. - %s1_Date</Italian>
		<Spanish>%s1_Date a. C.</Spanish>
	</TEXT>
	<TEXT>
		<Tag>TXT_KEY_TIME_BC</Tag>
		<English>%d1_Date BC</English>
		<French>%d1_Date av. J-C.</French>
		<German>%d1_Date v. Chr.</German>
		<Italian>%d1_Date a. C.</Italian>
		<Spanish>%d1_Date a. C.</Spanish>
	</TEXT>
	<TEXT>
		<Tag>TXT_KEY_TIME_AD_SAVE</Tag>
		<English>AD-%s1_Date</English>
		<French>%s1_Date ap. J.C</French>
		<German>n. Chr.-%s1_Date</German>
		<Italian>d.C. - %s1_Date</Italian>
		<Spanish>%s1_Date d. C.</Spanish>
	</TEXT>
	<TEXT>
		<Tag>TXT_KEY_TIME_AD</Tag>
		<English>%d1_Date AD</English>
		<French>%d1_Date ap. J.C</French>
		<German>%d1_Date n. Chr.</German>
		<Italian>%d1_Date d.C.</Italian>
		<Spanish>%d1_Date d. C.</Spanish>
	</TEXT>
 
Back
Top Bottom