mirror of
https://github.com/pret/pokeemerald.git
synced 2026-09-26 12:42:56 -04:00
23 lines
480 B
ObjectPascal
23 lines
480 B
ObjectPascal
Text_ThisIsATestSignpostMsg::
|
|
.ifdef FRENCH
|
|
.string "Message test.\n"
|
|
.string "Panneau.$"
|
|
.else
|
|
.ifdef ITALIAN
|
|
.string "Questo è un messaggio di prova.\n"
|
|
.string "Questo è un cartello.$"
|
|
.else
|
|
.ifdef SPANISH
|
|
.string "Éste es un mensaje de texto.\n"
|
|
.string "Esto es una señal.$"
|
|
.else @ENGLISH
|
|
.string "This is a test message.\n"
|
|
.string "This is a signpost.$"
|
|
.endif
|
|
.endif
|
|
.endif
|
|
|
|
EventScript_TestSignpostMsg::
|
|
msgbox Text_ThisIsATestSignpostMsg, MSGBOX_SIGN
|
|
end
|