Skip to content

Commit

Permalink
Translating link menus.
Browse files Browse the repository at this point in the history
  • Loading branch information
basvroegop committed Jan 3, 2025
1 parent 6cb9fc4 commit 7ccf7c3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions engine/events/mom.asm
Original file line number Diff line number Diff line change
Expand Up @@ -627,16 +627,16 @@ MomJustDoWhatYouCanText:
text_end

Mom_SavedString:
db "SAVED@"
db "GESPAARD@" ; "SAVED@"

Mon_WithdrawString:
db "WITHDRAW@"
db "HAAL OP@" ; "WITHDRAW@"

Mom_DepositString:
db "DEPOSIT@"
db "STORT@" ; "DEPOSIT@"

Mom_HeldString:
db "HELD@"
db "VAST@" ; "HELD@"

BankOfMom_MenuHeader:
db MENU_BACKUP_TILES ; flags
Expand All @@ -647,7 +647,7 @@ BankOfMom_MenuHeader:
.MenuData:
db STATICMENU_CURSOR ; flags
db 4 ; items
db "GET@"
db "SAVE@"
db "CHANGE@"
db "CANCEL@"
db "HAAL@" ; "GET@"
db "SPAAR@" ; "SAVE@"
db "WISSEL@" ; "CHANGE@"
db "SLUITEN@" ; "CANCEL@"
2 changes: 1 addition & 1 deletion engine/link/link.asm
Original file line number Diff line number Diff line change
Expand Up @@ -1571,7 +1571,7 @@ LinkTrade_TradeStatsMenu:
text_end

.String_Stats_Trade:
db "STATS RUIL@" ; "STATS TRADE@"
db "STATS RUIL@" ; "STATS TRADE@"

.LinkAbnormalMonText:
text_far _LinkAbnormalMonText
Expand Down
4 changes: 2 additions & 2 deletions engine/link/link_trade.asm
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ InitTradeSpeciesList:
ret

.CancelString:
db "CANCEL@"
db "SLUITEN@" ; "CANCEL@"

_LoadTradeScreenBorderGFX:
call __LoadTradeScreenBorderGFX
Expand Down Expand Up @@ -178,7 +178,7 @@ PlaceWaitingTextAndSyncAndExchangeNybble:
jp DelayFrames

.Waiting:
db "WAITING..!@"
db "WACHTEN..!@" ; "WAITING..!@"

LinkTradeMenu:
call .MenuAction
Expand Down

0 comments on commit 7ccf7c3

Please sign in to comment.