From 18be826c1a33dff42882723477baa80fff472cc0 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Sat, 23 Nov 2019 21:52:43 +0200 Subject: [PATCH] Changed "help translating" initial message to point to Github --- core/src/com/unciv/ui/LanguagePickerScreen.kt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 } )