There is a Qt application, I would like to make it work in two languages āā- Russian and English. Everything that seems to be necessary, I have already done - tr() for the text, the translation file in Linguist too.
At the moment I'm trying to call the translation like this
QTranslator translator; translator.load("translation_"+QLocale::system().name()); qApp->installTranslator(&translator); However, nothing changes, everything is the same as in the source
What am I doing wrong? What needs to be changed?