Qt Code:
  1. char exceptionNames[N_EXCEPTIONS][24]=
  2. {
  3. "noerror",
  4. "notri",
  5. "samepnts",
  6. "flattri",
  7. "badheader",
  8. "baddata",
  9. "matrixmismatch",
  10. "singularmatrix",
  11. "unsetgeoid",
  12. "unsetsource",
  13. "badunits",
  14. "badnumber",
  15. "badbreaklineend",
  16. "breaklinescross",
  17. "badbreaklineformat",
  18. "fileerror"
  19. };
To copy to clipboard, switch view to plain text mode 
I'm going to call tr(exceptionNames[i]). How do I tell lupdate that these strings need to be translated?