Fix puppet city description (#13028)

* Update English.properties

* Update AlertPopup.kt

* Update English.properties
This commit is contained in:
EmperorPinguin 2025-03-06 19:20:26 +01:00 committed by GitHub
parent f922dcbc75
commit 7c8479326c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -2966,7 +2966,7 @@ Puppeted cities do not increase your tech or policy cost. =
# Requires translation! # Requires translation!
You have no control over the the production of puppeted cities. = You have no control over the the production of puppeted cities. =
# Requires translation! # Requires translation!
Puppeted cities also generate 25% less Gold and Science. = Puppeted cities also generate 25% less Science and Culture. =
# Requires translation! # Requires translation!
A puppeted city can be annexed at any time. = A puppeted city can be annexed at any time. =
# Requires translation! # Requires translation!

View File

@ -493,7 +493,7 @@ class AlertPopup(
add(button).row() add(button).row()
addGoodSizedLabel("Puppeted cities do not increase your tech or policy cost.").row() addGoodSizedLabel("Puppeted cities do not increase your tech or policy cost.").row()
addGoodSizedLabel("You have no control over the the production of puppeted cities.").row() addGoodSizedLabel("You have no control over the the production of puppeted cities.").row()
addGoodSizedLabel("Puppeted cities also generate 25% less Gold and Science.").row() addGoodSizedLabel("Puppeted cities also generate 25% less Science and Culture.").row()
if (mayAnnex) addGoodSizedLabel("A puppeted city can be annexed at any time.").row() if (mayAnnex) addGoodSizedLabel("A puppeted city can be annexed at any time.").row()
} }