diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/messages/Languages.java b/src/com/shatteredpixel/shatteredpixeldungeon/messages/Languages.java index 81941bf1f..53beb87e5 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/messages/Languages.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/messages/Languages.java @@ -28,7 +28,7 @@ public enum Languages { KOREAN("한국어", "ko", Status.REVIEWED, new String[]{"Flameblast12"}, new String[]{"Ddojin0115", "Eeeei", "lsiebnie", "WondarRabb1t"}), //Simplified - CHINESE("中文", "zh", Status.UNREVIEWED, new String[]{"Jinkeloid"}, new String[]{"931451545", "HoofBumpBlurryface", "Lyn_0401", "ShatteredFlameBlast", "Tempest102"}), + CHINESE("中文", "zh", Status.UNREVIEWED, new String[]{"Jinkeloid"}, new String[]{"931451545", "HoofBumpBlurryface", "Lyn-0401", "ShatteredFlameBlast", "Tempest102"}), //Brazillian PORTUGUESE("português", "pt", Status.UNREVIEWED, new String[]{"Matheus208"}, new String[]{"JST", "Try31"}), diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndLangs.java b/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndLangs.java index b7651f715..8d43afce2 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndLangs.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndLangs.java @@ -151,17 +151,17 @@ public class WndLangs extends Window { Window credits = new Window(); RenderedTextMultiline title = PixelScene.renderMultiline(9); - title.text(Messages.titleCase(Messages.get(WndLangs.class, "credits")) , 60); + title.text(Messages.titleCase(Messages.get(WndLangs.class, "credits")) , 65); title.hardlight(SHPX_COLOR); - title.setPos((60 - title.width())/2, 0); + title.setPos((65 - title.width())/2, 0); credits.add(title); RenderedTextMultiline text = PixelScene.renderMultiline(6); - text.text(creds, 60); + text.text(creds, 65); text.setPos(0, title.bottom() + 2); credits.add(text); - credits.resize(60, (int)text.bottom()); + credits.resize(65, (int)text.bottom()); parent.add(credits); } };