QMessageBox With french Buttom's label
-
Hi everyone,
In my application i have a QMessageBox, unfortunately i can't modify the buttom's label wich still remain in english ('ok' instead of 'Oui' etc...) is there some way that could respond to my will ?
Thank you@
QMessageBox msgBox;
QString Dir = QFileDialog::getExistingDirectory(this, tr("Chargement de repertoire"), "/home", QFileDialog::ShowDirsOnly|QFileDialog::DontResolveSymlinks);
if (Dir.count() > 0)
msgBox.setText("Path Non Nulle");
else
msgBox.setText("Path Nulle");
msgBox.exec();
@ -