blob: 0edef95101131ca4dc58121c540b5ae8e6ac55ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
.include "asm/macros.inc"
.include "constants/constants.inc"
.section .rodata
.align 2
@ TODO use tmc_strings to extract strings for other variants
translation:: @ 089B1D90
.ifdef DEMO_JP
@ some strings seem to be added compared to JP
.incbin "strings/translation_DEMO_JP.bin"
.else
.ifdef JP
.incbin "strings/translation_1_JP.bin"
.else
.ifdef EU
.incbin "translations/English.bin"
translationFrench::
.incbin "translations/French.bin"
translationGerman::
.incbin "translations/German.bin"
translationSpanish::
.incbin "translations/Spanish.bin"
translationItalian::
.incbin "translations/Italian.bin"
.else
.incbin "translations/USA.bin"
.endif
.endif
.endif
|