mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Load interface translations at launch
--HG-- branch : develop
This commit is contained in:
parent
5707757198
commit
c4b933d1bd
1 changed files with 8 additions and 0 deletions
|
@ -31,6 +31,14 @@ int main( sint32 argc, char **argv )
|
|||
|
||||
splash.show();
|
||||
|
||||
QString locale = QLocale::system().name().left(2);
|
||||
|
||||
QTranslator localTranslator;
|
||||
if (localTranslator.load(QString(":/translations/ryzom_configuration_%1.qm").arg(locale)))
|
||||
{
|
||||
app.installTranslator(&localTranslator);
|
||||
}
|
||||
|
||||
CSystem::GetInstance().config.load( "client.cfg" );
|
||||
|
||||
CClientConfigDialog d;
|
||||
|
|
Loading…
Reference in a new issue