Hi!!
I have problems in understanding how should i implement the dynamic language in my case:
I have a class "GlobalClass" contains an array of strings in this manner:
Qt Code:
  1. const char * const ids[] = {
  2. QT_TR_NOOP("METER"),
  3. QT_TR_NOOP("P.Q."),
  4. QT_TR_NOOP("Monitoring"),
  5. ...
To copy to clipboard, switch view to plain text mode 

I have some different widgets (icons) that contain a QString, which I initialize in this manner:
Qt Code:
  1. icons[index].Text = tr(GlobalClassObject->ids[index2]);
To copy to clipboard, switch view to plain text mode 

Till now everything is good, and i can see the text on the screen.
But! if i want to dynamic change it, how do i do it??
Please respond! thanks in advance..
Liran