Show
Ignore:
Timestamp:
03/23/06 18:48:53 (3 years ago)
Author:
hipplej
Message:

Replace evil rich text on forms with good ol' plaintext. Wrap strings sprinkled throughout code in a blanket of tr() goodness.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/help/browser/helpbrowser.cpp

    r466 r469  
    120120  QDomElement root = document->documentElement(); 
    121121  if (root.tagName() != ELEMENT_CONTENTS) { 
    122     errorString = "Supplied XML file is not a valid Contents document."; 
     122    errorString = tr("Supplied XML file is not a valid Contents document."); 
    123123    return false; 
    124124  } 
     
    359359 
    360360  /* Set the status bar text */ 
    361   this->statusBar()->showMessage(QString("Found %1 results") 
     361  this->statusBar()->showMessage(tr("Found %1 results") 
    362362                                .arg(ui.treeSearch->topLevelItemCount())); 
    363363}