diff --git a/android/assets/jsons/Nations.json b/android/assets/jsons/Nations.json index 6eb888be3e..05763358ed 100644 --- a/android/assets/jsons/Nations.json +++ b/android/assets/jsons/Nations.json @@ -531,7 +531,9 @@ hateYes:["Hm... very well, fine.","I suppose I should agree...","Very well..."] afterPeace:"It seems you implemented some interesting strategies... Very well, perhaps we should call it a tie." - tradeRequest:"We have many things to discuss and have much to benefit from each other.", + tradeRequest:"We have many things to discuss and have much to benefit from each other." + + outerColor:[20,25,73], innerColor:[187,33,51], uniqueName:"Scholars of the Jade Hall" unique:"+2 Science for all specialists and Great Person tile improvements", diff --git a/android/assets/jsons/Translations/Notifications.json b/android/assets/jsons/Translations/Notifications.json index bbd3f5e2cc..61a1d2a51e 100644 --- a/android/assets/jsons/Translations/Notifications.json +++ b/android/assets/jsons/Translations/Notifications.json @@ -574,10 +574,12 @@ "[nation] agreed to stop settling cities near us!": { Italian:"[nation] ha promesso di smettere di fondare città vicino a noi!" + Simplified_Chinese:"[nation]同意停止在我们附近建城!" }, "[nation] refused to stop settling cities near us!": { Italian:"[nation] ha rifiutato di smettere di fondare città vicino a noi!" + Simplified_Chinese:"[nation]拒绝停止在我们附近建城!" }, } diff --git a/android/assets/jsons/Translations/Other.json b/android/assets/jsons/Translations/Other.json index 1c15b81904..1a2dd8c765 100644 --- a/android/assets/jsons/Translations/Other.json +++ b/android/assets/jsons/Translations/Other.json @@ -45,7 +45,7 @@ German:"in" Dutch:"in" Spanish:"en" - Simplified_Chinese:"建造/组建完成还需" + Simplified_Chinese:"建造/组建完成需" Portuguese:"em" Japanese:"に" } diff --git a/core/src/com/unciv/ui/utils/Fonts.kt b/core/src/com/unciv/ui/utils/Fonts.kt index 36b477bfa2..804723229f 100644 --- a/core/src/com/unciv/ui/utils/Fonts.kt +++ b/core/src/com/unciv/ui/utils/Fonts.kt @@ -88,10 +88,10 @@ class Fonts { Gdx.files.local("fonts/$fontForLanguage.ttf").delete() UnCivGame.Current.settings.fontSet="NativeFont(Recommended)" Gdx.app.postRunnable { - val downloading = PopupTable(UnCivGame.Current.worldScreen) - downloading.add("Checksum error!\nIf you want to use the font \"WenQuanYiMicroHei\", please download again.".toLabel().setFontColor(Color.RED)).row() - downloading.addButton("Close".tr()) { downloading.remove() }.row() - downloading.open() + val checksumFailed = PopupTable(UnCivGame.Current.worldScreen) + checksumFailed.add("Checksum error!\nIf you want to use the font \"WenQuanYiMicroHei\", please download again.".toLabel().setFontColor(Color.RED)).row() + checksumFailed.addButton("Close".tr()) { checksumFailed.remove() }.row() + checksumFailed.open() } } else {