Hi, I am using QtLinguist for language translation in my application. I have several QDockWidget's and I am initializing their constructors with the title set as follows:

header:
Qt Code:
  1. View::View(const QString &colorName,const QString &nme, QWidget *parent, Qt::WindowFlags flags)
  2. : QDockWidget(parent, flags),name(nme)
To copy to clipboard, switch view to plain text mode 

cpp:
Qt Code:
  1. MyView::MyView(QWidget *parent)
  2. : View("Gray",tr("FVIEW_NME_FILES"), parent, Qt::WindowFlags(Qt::RightDockWidgetArea))
To copy to clipboard, switch view to plain text mode 

I edit the corresponding translations in the .ts file and save the result but Qt Linguist can not translate them properly. Instead of the translated string, the tag FVIEW_NME_FILES is shown in runtime.
What can be the problem here?
Thanks in advance.