Hi
I would like to have QFileDialor and QColorDialor translated.
I saw a few posts here and around but none were suficient for me.
to call:
Qt Code:
  1. QFileDialog::getOpenFileName(this, tr("some title"),
  2. QDir::homePath(),"*.filter",
  3. 0, QFileDialog::DontUseNativeDialog);
To copy to clipboard, switch view to plain text mode 
It is solution only in a half.

For native dialogs problem appears when KDE is installed and shows its own implementation of f.e. QColorDialog, unfortinately without localisation other than english.
In the same moment native KDE app can show propper translation.
Maybe it is possible to grab somehow the KDEish *.mo/*.po translations and load it by QTranslator::Load()
or some other way to have native dialog.
I think, reimplementing dialogs seems to be worst than QFileDialog::DontUseNativeDialog
With respects
Seelook