update translation (#1067)

* systemProp

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* fix that researched tech can be picked when we pick a free tech

* update to master

* update

* Update TechPickerScreen.kt

* delete english selectlanguage becauce menu have two choice, enlarge overview's image icon because it's too small to align.

* update

* language polish is wrong to be writing "polski"

* 显示教程
This commit is contained in:
lishaoxia1985 2019-09-12 18:05:58 +08:00 committed by Yair Morgenstern
parent 05a77a9a68
commit 6e34f4743a
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@
German:"[cityName] wurde gegründet!" German:"[cityName] wurde gegründet!"
Dutch:"[cityName] is gesticht!" Dutch:"[cityName] is gesticht!"
Spanish:"¡[cityName] ha sido fundada!" Spanish:"¡[cityName] ha sido fundada!"
Simplified_Chinese:"[cityName]被发现!" Simplified_Chinese:"已经建立了城市--[cityName]!"
Portuguese:"[cityName] foi fundada!" Portuguese:"[cityName] foi fundada!"
Japanese:"[cityName]が設立されました!" Japanese:"[cityName]が設立されました!"
} }

View File

@ -56,7 +56,7 @@ class CivInfoTransientUpdater(val civInfo: CivilizationInfo){
for (otherCiv in viewedCivs.filterNot { it == civInfo || it.isBarbarian() }) for (otherCiv in viewedCivs.filterNot { it == civInfo || it.isBarbarian() })
if (!civInfo.diplomacy.containsKey(otherCiv.civName)) { if (!civInfo.diplomacy.containsKey(otherCiv.civName)) {
civInfo.meetCivilization(otherCiv) civInfo.meetCivilization(otherCiv)
civInfo.addNotification("We have encountered [${otherCiv.civName}]!".tr(), null, Color.GOLD) civInfo.addNotification("We have encountered ["+otherCiv.civName+"]!", null, Color.GOLD)
} }
} }
} }