mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-21 22:03:36 -07:00
Localize "Scene Selection" header for each language
This commit is contained in:
parent
009204534b
commit
953a522f81
1 changed files with 19 additions and 1 deletions
|
@ -1311,7 +1311,25 @@ void Better_Select_PrintMenu(SelectContext* this, GfxPrint* printer) {
|
|||
|
||||
GfxPrint_SetColor(printer, 255, 255, 255, 255);
|
||||
GfxPrint_SetPos(printer, 12, 2);
|
||||
GfxPrint_Printf(printer, "Scene Selection");
|
||||
if (CVarGetInteger(CVAR_DEVELOPER_TOOLS("DebugWarpScreenTranslation"), 1)) {
|
||||
switch (gSaveContext.language) {
|
||||
case LANGUAGE_ENG:
|
||||
default:
|
||||
GfxPrint_Printf(printer, "Scene Selection");
|
||||
break;
|
||||
case LANGUAGE_GER:
|
||||
GfxPrint_Printf(printer, "Szenenauswahl");
|
||||
break;
|
||||
case LANGUAGE_FRA:
|
||||
GfxPrint_Printf(printer, "Selection de Scene");
|
||||
break;
|
||||
case LANGUAGE_JPN:
|
||||
GfxPrint_Printf(printer, "シーンセレクト");
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
GfxPrint_Printf(printer, "Scene Selection");
|
||||
}
|
||||
GfxPrint_SetColor(printer, 255, 255, 255, 255);
|
||||
|
||||
for (i = 0; i < 20; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue