1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-08 21:04:26 +00:00

Support Right to left languages

This commit is contained in:
Christophe Dumez 2010-04-13 18:40:07 +00:00
parent 0bbeab9ad2
commit 98ec373f8c

View File

@ -231,6 +231,14 @@ int main(int argc, char *argv[]){
qDebug("%s locale unrecognized, using default (en_GB).", qPrintable(locale)); qDebug("%s locale unrecognized, using default (en_GB).", qPrintable(locale));
} }
app->installTranslator(&translator); app->installTranslator(&translator);
#ifndef DISABLE_GUI
if(locale.startsWith("ar")) {
qDebug("Right to Left mode");
app->setLayoutDirection(Qt::RightToLeft);
} else {
app->setLayoutDirection(Qt::LeftToRight);
}
#endif
app->setApplicationName(QString::fromUtf8("qBittorrent")); app->setApplicationName(QString::fromUtf8("qBittorrent"));
// Check for executable parameters // Check for executable parameters