From 6c76393f2acc27e260f64057b99dfed9b9304876 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 18 Mar 2018 18:34:28 -0400 Subject: [PATCH] v0.6.4: fixed a non-externalized string --- .../shatteredpixeldungeon/windows/WndGameInProgress.java | 2 +- .../shatteredpixeldungeon/messages/windows/windows.properties | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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