Hi,

We have tr(), QT_TRANSLATE_NOOP, QT_TR_NOOP for marking a string to be eligible for translation.

I am facing problem when I want to mark a property name for language change.

For ex:
Q_PROPERTY(QString Width READ width WRITE setWidth)

If I change the language to say German, the property name should actually be "Weite" and not "Width".

How can I mark the type name or property name for language change?

Regards,