How to translate QComboBox's "Cancel" and "Done" button in iOs ?
-

I use Qt to make a multilanguage app for iOS.
and i use ".ts" and ".qm" file to translate text.
the QComboBox in ios has 2 buttons can't be translate.
the ts file need a classname, but i can't found this 2 words in any class from qt source.
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.1" language="id-ID"> <context> <name>QComboBox</name> <message> <source>Cancel</source> <translation>test1</translation> </message> <message> <source>Done</source> <translation>test2</translation> </message> </context> -
the test source code:
int main(int argc, char *argv[]) { QApplication a(argc, argv); QWidget w; QLabel lb("你的年龄:", &w); QComboBox cmb(&w); QStringList sl; sl << "10-19岁" << "20-29岁" << "30-39岁"; cmb.addItems(sl); QHBoxLayout *hl = new QHBoxLayout(&w); hl->addWidget(&lb); hl->addWidget(&cmb); w.show(); return a.exec(); }app run ui:

after click QCombobox, it show as iPhone style with the "Done" and "Cancel“ button, how to translate this 2 buttons ?
