Hello,
Qt Code:
  1. QString text = ( tr( "Select a line, circle or arc<br>" ) );
  2. text.append( tr( "and press <i><b>\"enter/return\"</b></i>.<br>" ) );
  3. text.append( tr( "One entity only!" ) );
  4. msgBox.setText( text );
To copy to clipboard, switch view to plain text mode 
Given a QString with embedded HTML, will the tanslate function work or do I have to seperate the text & HTML code ?

Regards