diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndGameInProgress.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndGameInProgress.java index c810a01c8..044f13c4f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndGameInProgress.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndGameInProgress.java @@ -72,7 +72,7 @@ public class WndGameInProgress extends Window { pos = title.bottom() + GAP; if (info.challenges > 0) { - RedButton btnChallenges = new RedButton( "Challenges" ) { + RedButton btnChallenges = new RedButton( Messages.get(this, "challenges") ) { @Override protected void onClick() { Game.scene().add( new WndChallenges( info.challenges, false ) ); diff --git a/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/windows/windows.properties b/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/windows/windows.properties index 17570a4ac..7a1b2a3e5 100644 --- a/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/windows/windows.properties +++ b/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/windows/windows.properties @@ -28,6 +28,7 @@ windows.wndgame.exit=Exit Game windows.wndgame.return=Return to Game windows.wndgameinprogress.title=Level %1$d %2$s +windows.wndgameinprogress.challenges=Challenges windows.wndgameinprogress.exp=Experience windows.wndgameinprogress.str=Strength windows.wndgameinprogress.health=Health