diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/messages/Languages.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/messages/Languages.java index 46f76f0b6..3c45b58e1 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/messages/Languages.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/messages/Languages.java @@ -31,7 +31,7 @@ public enum Languages { GERMAN("deutsch", "de", Status.UNREVIEWED, new String[]{"Dallukas", "KrystalCroft", "Wuzzy", "Zap0", "bernhardreiter", "davedude"}, new String[]{"Abracadabra", "Ceeee", "DarkPixel", "ErichME", "Faquarl", "LenzB", "Sarius", "SirEddi", "Sorpl3x", "ThunfischGott", "Topicranger", "apxwn", "azrdev", "carrageen", "gekko303", "johannes.schobel", "karoshi42", "koryphea", "luciocarreras", "niemand", "oragothen", "spixi"}), SPANISH("español", "es", Status.REVIEWED, new String[]{"Kiroto", "Kohru", "airman12", "grayscales"}, new String[]{"Alesxanderk", "CorvosUtopy", "Dewstend", "Dyrran", "Fervoreking", "Illyatwo2", "JPCHZ", "STKmonoqui", "alfongad", "benzarr410", "chepe567.jc", "ctrijueque", "dhg121", "javifs", "jonismack1", "tres.14159"}), FRENCH("français", "fr", Status.UNREVIEWED, new String[]{"Emether", "Xalofar", "canc42", "kultissim", "minikrob"}, new String[]{"Alsydis", "Axce", "Basttee", "Dekadisk", "Draal", "Neopolitan", "Nyrnx", "RomTheMareep", "SpeagleZNT", "TheKappaDuWeb", "Tronche2Cake", "Ygdrazil", "antoine9298", "go11um", "levilbatard", "linterpreteur", "maeltur70", "marmous", "solthaar", "vavavoum", "speagle"}), - CHINESE("中文", "zh", Status.UNREVIEWED, new String[]{"Jinkeloid(zdx00793)"}, new String[]{"931451545", "HoofBumpBlurryface", "Lery", "Lyn-0401", "ShatteredFlameBlast", "endlesssolitude", "hmdzl001", "tempest102"}), + CHINESE("中文", "zh", Status.UNREVIEWED, new String[]{"Jinkeloid(zdx00793)"}, new String[]{"931451545", "HoofBumpBlurryface", "Lery", "Lyn_0401", "ShatteredFlameBlast", "endlesssolitude", "hmdzl001", "tempest102"}), POLISH("polski", "pl", Status.UNREVIEWED, new String[]{"Deksippos", "kuadziw", "szymex73"}, new String[]{"Chasseur", "Darden", "KarixDaii", "MJedi", "MrKukurykpl", "Odiihinia", "Peperos", "Scharnvirk", "VasteelXolotl", "bvader95", "dusakus", "michaub", "ozziezombie", "szczoteczka22", "transportowiec96"}), PORTUGUESE("português", "pt", Status.UNREVIEWED, new String[]{"Chacal.Ex", "TDF2001", "matheus208"}, new String[]{"Bigode935", "ChainedFreaK", "Helen0903", "JST", "MadHorus", "Matie", "Tio_P_(Krampus)", "ancientorange", "danypr23", "denis.gnl", "ismael.henriques12", "mfcord", "owenreilly", "rafazago", "try31"}), ITALIAN("italiano", "it", Status.REVIEWED, new String[]{"bizzolino", "funnydwarf"}, new String[]{"4est", "DaniMare", "Danzl", "andrearubbino00", "nessunluogo", "righi.a", "umby000"}), diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/IconTitle.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/IconTitle.java index d3f37579a..a79d466bf 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/IconTitle.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/IconTitle.java @@ -76,6 +76,7 @@ public class IconTitle extends Component { tfLabel = PixelScene.renderTextBlock( (int)FONT_SIZE ); tfLabel.hardlight( Window.TITLE_COLOR ); + tfLabel.setHightlighting(false); add( tfLabel ); health = new HealthBar(); diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndLangs.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndLangs.java index 159476123..25c83db81 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndLangs.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndLangs.java @@ -161,7 +161,7 @@ public class WndLangs extends Window { int i; if (reviewers.length > 0){ - creds += "_" + Messages.titleCase(Messages.get(WndLangs.class, "reviewers")) + "_\n"; + creds += Messages.titleCase(Messages.get(WndLangs.class, "reviewers")) + "\n"; creds2 += ""; for ( i = 0; i < reviewers.length; i++){ if (wide && i % 2 == 1){ @@ -176,7 +176,7 @@ public class WndLangs extends Window { } if (reviewers.length > 0 || translators.length > 0){ - creds += "_" + Messages.titleCase(Messages.get(WndLangs.class, "translators")) + "_\n"; + creds += Messages.titleCase(Messages.get(WndLangs.class, "translators")) + "\n"; creds2 += "\n"; //reviewers are also translators for ( i = 0; i < reviewers.length; i++){ @@ -208,12 +208,14 @@ public class WndLangs extends Window { credits.add(title); RenderedTextBlock text = PixelScene.renderTextBlock(5); + text.setHightlighting(false); text.text(creds, 65); text.setPos(0, title.bottom() + 2); credits.add(text); if (wide){ RenderedTextBlock rightColumn = PixelScene.renderTextBlock(5); + rightColumn.setHightlighting(false); rightColumn.text(creds2, 65); rightColumn.setPos(70, title.bottom() + 8.5f); credits.add(rightColumn);