Victory status window should translate "Technologies" entry. (#7210)

There is no "Techs" string in the translation files. Use "Technologies" instead.
This commit is contained in:
Joan Josep 2022-06-18 23:31:50 +02:00 committed by GitHub
parent 7614cc01c4
commit c9f0d19555
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -773,7 +773,7 @@ class CivilizationInfo {
.sumOf { city -> city.cityConstructions.builtBuildings .sumOf { city -> city.cityConstructions.builtBuildings
.filter { gameInfo.ruleSet.buildings[it]!!.isWonder }.size .filter { gameInfo.ruleSet.buildings[it]!!.isWonder }.size
}.toDouble() }.toDouble()
scoreBreakdown["Techs"] = tech.getNumberOfTechsResearched() * 4.toDouble() scoreBreakdown["Technologies"] = tech.getNumberOfTechsResearched() * 4.toDouble()
scoreBreakdown["Future Tech"] = tech.repeatingTechsResearched * 10.toDouble() scoreBreakdown["Future Tech"] = tech.repeatingTechsResearched * 10.toDouble()
return scoreBreakdown return scoreBreakdown