# HG changeset patch # User Jari Korhonen # Date 1274136868 -10800 # Node ID 36e03b1f719e53e8dd6f4f05e3b9d276d580f657 # Parent 39bbb7b00934989ef3c82a10ca4c509274cdb3ae Small help text changes. diff -r 39bbb7b00934 -r 36e03b1f719e mainwindow.cpp --- a/mainwindow.cpp Tue May 18 01:48:38 2010 +0300 +++ b/mainwindow.cpp Tue May 18 01:54:28 2010 +0300 @@ -1188,7 +1188,7 @@ //Workfolder actions hgStatAct = new QAction(QIcon(":/images/status.png"), tr("Refresh status"), this); - hgStatAct->setStatusTip(tr("Refresh (info of) status of workfolder files (A=Added, M=Mofified, R=Removed, C=Clean, !=Locally deleted, ?=Not tracked, I=Ignored)")); + hgStatAct->setStatusTip(tr("Refresh (info of) status of workfolder files")); hgFileDiffAct = new QAction(QIcon(":/images/diff.png"), tr("View filediff"), this); hgFileDiffAct->setStatusTip(tr("Filediff: View differences between selected working folder file and local repository file")); @@ -1212,7 +1212,7 @@ hgUpdateAct->setStatusTip(tr("Update working folder from local repository")); hgCommitAct = new QAction(QIcon(":/images/commit.png"), tr("Commit / Save change(s)"), this); - hgCommitAct->setStatusTip(tr("Save selected file(s) or all changed files in working folder (and all subfolders)) to local repository")); + hgCommitAct->setStatusTip(tr("Save selected file(s) or all changed files in working folder (and all subfolders) to local repository")); hgMergeAct = new QAction(QIcon(":/images/merge.png"), tr("Merge"), this); hgMergeAct->setStatusTip(tr("Merge two local repository changesets to working folder"));