Hi everybody,
I'm working on an application that use 2 laguages french and english.
I can install and change the language of the application without any probleme.
I'm using this code in the main:
QTranslator translator;
translator.load(ln);
//ln is a string containing language file name
app.installTranslator(
&translator);
In my application, i'm using QMessageBox with the 2 bouttons YES and NO.
My probleme is that this 2 bouttons are always in english even if I use the french language.
How can I change the language of these bouttons in fonction with the application language??
Thanks for your answers