v2.5.2: fixed continue text in interlevelscene not having i18n
This commit is contained in:
@@ -82,6 +82,7 @@ scenes.interlevelscene$mode.fall=Falling!
|
||||
scenes.interlevelscene$mode.reset=Resetting
|
||||
scenes.interlevelscene.file_not_found=Save file not found. If this error persists after restarting, it may mean this save game is corrupted. Sorry about that.
|
||||
scenes.interlevelscene.io_error=Cannot read save file. If this error persists after restarting, it may mean this save game is corrupted. Sorry about that.
|
||||
scenes.interlevelscene.continue=Continue
|
||||
|
||||
scenes.journalscene.title=Journal
|
||||
|
||||
|
||||
@@ -274,7 +274,7 @@ public class InterlevelScene extends PixelScene {
|
||||
add(storyBG);
|
||||
add(storyMessage);
|
||||
|
||||
btnContinue = new StyledButton(Chrome.Type.TOAST_TR, "Continue", 9){
|
||||
btnContinue = new StyledButton(Chrome.Type.TOAST_TR, Messages.get(InterlevelScene.class, "continue"), 9){
|
||||
@Override
|
||||
protected void onClick() {
|
||||
phase = Phase.FADE_OUT;
|
||||
|
||||
Reference in New Issue
Block a user