Skip to content

Commit 6b0a796

Browse files
committed
- add missing locale string
1 parent 76db6e8 commit 6b0a796

7 files changed

Lines changed: 7 additions & 1 deletion

File tree

data/DRIVER2/LANG/EN_GAME.LTXT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Music Volume
5353
Film Director
5454
Quick Replay
5555
Exit
56+
Back
5657
Rotation
5758
Move
5859
Skip cutscene

data/DRIVER2/LANG/FR_GAME.LTXT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Volume de la musique
5353
R�alisateur de film
5454
Replay rapide
5555
Sortie
56+
Retour
5657
Rotation
5758
D�placement
5859
Passer la cin�matique

data/DRIVER2/LANG/GE_GAME.LTXT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Musik
5353
Filmregisseur
5454
Wiederholung
5555
Ende
56+
Zur�ck
5657
Rotation
5758
Bewegung
5859
Zwischensequenz �berspringen

data/DRIVER2/LANG/IT_GAME.LTXT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Volume musica
5353
Regista video
5454
Replay veloce
5555
Esci
56+
Indietro
5657
Ruota
5758
Sposta
5859
Salta filmato

data/DRIVER2/LANG/SP_GAME.LTXT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Volumen de m
5353
Director de pel�cula
5454
Repetici�n r�pida
5555
Salir
56+
Atr�s
5657
Rotaci�n
5758
Mover
5859
Saltear escena

src_rebuild/Game/C/overmap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1809,7 +1809,7 @@ void DrawFullscreenMap(void)
18091809
SetTextColour(128, 128, 128);
18101810

18111811
// print string with special characters representing some images inserted into it
1812-
sprintf(str, "\x80 %s \x81 %s \x8a %s", G_LTXT(GTXT_Exit), G_LTXT(GTXT_Rotation), G_LTXT(GTXT_Move));
1812+
sprintf(str, "\x80 %s \x81 %s \x8a %s", G_LTXT(GTXT_Back), G_LTXT(GTXT_Rotation), G_LTXT(GTXT_Move));
18131813
PrintStringCentred(str, SCREEN_H - 30); // 226
18141814
}
18151815

src_rebuild/Game/dr2locale.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ enum GameStrId
6868
GTXT_FilmDirector,
6969
GTXT_QuickReplay,
7070
GTXT_Exit,
71+
GTXT_Back,
7172
GTXT_Rotation,
7273
GTXT_Move,
7374
GTXT_SkipCutscene,

0 commit comments

Comments
 (0)