forked from mirror/openmw-tes3mp
Fix "Level" string in the save/load menu not being localised (Bug #2840)
This commit is contained in:
parent
8241976368
commit
c25dacb480
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ namespace MWGui
|
||||||
char buffer[size];
|
char buffer[size];
|
||||||
if (std::strftime(buffer, size, "%x %X", timeinfo) > 0)
|
if (std::strftime(buffer, size, "%x %X", timeinfo) > 0)
|
||||||
text << buffer << "\n";
|
text << buffer << "\n";
|
||||||
text << "Level " << mCurrentSlot->mProfile.mPlayerLevel << "\n";
|
text << "#{sLevel} " << mCurrentSlot->mProfile.mPlayerLevel << "\n";
|
||||||
text << mCurrentSlot->mProfile.mPlayerCell << "\n";
|
text << mCurrentSlot->mProfile.mPlayerCell << "\n";
|
||||||
// text << "Time played: " << slot->mProfile.mTimePlayed << "\n";
|
// text << "Time played: " << slot->mProfile.mTimePlayed << "\n";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue