v2.5.2: fixed continue text in interlevelscene not having i18n

This commit is contained in:
Evan Debenham
2024-09-17 11:25:53 -04:00
parent 576f13154e
commit 6fe93bda2d
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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;