aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/text.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/agi/text.cpp')
-rw-r--r--engines/agi/text.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/engines/agi/text.cpp b/engines/agi/text.cpp
index bb334d0401..aea1468dcb 100644
--- a/engines/agi/text.cpp
+++ b/engines/agi/text.cpp
@@ -606,8 +606,16 @@ void AgiEngine::writeStatus() {
return;
}
- sprintf(x, " Score:%i of %-3i", _game.vars[vScore], _game.vars[vMaxScore]);
- printStatus("%-17s Sound:%s ", x, getflag(fSoundOn) ? "on " : "off");
+ switch (getLanguage()) {
+ case Common::RU_RUS:
+ sprintf(x, " \x91\xe7\xa5\xe2: %i \xa8\xa7 %-3i", _game.vars[vScore], _game.vars[vMaxScore]);
+ printStatus("%-17s \x87\xa2\xe3\xaa:%s", x, getflag(fSoundOn) ? "\xa2\xaa\xab " : "\xa2\xeb\xaa\xab");
+ break;
+ default:
+ sprintf(x, " Score:%i of %-3i", _game.vars[vScore], _game.vars[vMaxScore]);
+ printStatus("%-17s Sound:%s ", x, getflag(fSoundOn) ? "on " : "off");
+ break;
+ }
}
/**