Intitulé QDialogButtonBox Save
Bonjour,
Dans mon application, j'ai deux boutons "Close" & "Save", traduits de l'anglais au français.
Code:
1 2 3
| buttonBox = new QDialogButtonBox(QDialogButtonBox::Close|QDialogButtonBox::Save, Qt::Horizontal, MainContainer);
connect(buttonBox, SIGNAL(accepted()), this, SLOT(okButtonClicked()));
connect(buttonBox, SIGNAL(rejected()), this, SLOT(closeButtonClicked())); |
Je souhaiterais modifier l'intitulé de mon bouton "Save" en "Transférer".
Mais je ne sais pas comment m'y prendre.
Pourriez-vous m'indiquer la meilleure option ?