diff --git a/core/src/com/unciv/ui/LanguagePickerScreen.kt b/core/src/com/unciv/ui/LanguagePickerScreen.kt index c33cfaa7ee..87d2bc365c 100644 --- a/core/src/com/unciv/ui/LanguagePickerScreen.kt +++ b/core/src/com/unciv/ui/LanguagePickerScreen.kt @@ -9,7 +9,9 @@ import com.unciv.UnCivGame import com.unciv.models.gamebasics.GameBasics import com.unciv.models.gamebasics.tr import com.unciv.ui.pickerscreens.PickerScreen -import com.unciv.ui.utils.* +import com.unciv.ui.utils.ImageGetter +import com.unciv.ui.utils.enable +import com.unciv.ui.utils.onClick class LanguageTable(val language:String,skin: Skin):Table(skin){ @@ -55,8 +57,8 @@ class LanguagePickerScreen: PickerScreen(){ "Please note that translations are a " + "community-based work in progress and are INCOMPLETE! \n" + "The percentage shown is how much of the language is translated in-game.\n" + - "If you want to help translating the game " + - "into your language, send me an email to yairm210@hotmail.com!",skin)).pad(10f).row() + "If you want to help translating the game into your language, \n"+ + " instructions are in the Github readme! (Menu > Community > Github)",skin)).pad(10f).row() languageTables.addAll(GameBasics.Translations.getLanguages().map { LanguageTable(it,skin) } .sortedByDescending { it.percentComplete } )