Mercurial > hg > easyhg
diff mainwindow.cpp @ 20:36e03b1f719e
Small help text changes.
author | Jari Korhonen <jtkorhonen@gmail.com> |
---|---|
date | Tue, 18 May 2010 01:54:28 +0300 |
parents | 9b52042baf39 |
children | 465fbf9ad5a9 |
line wrap: on
line diff
--- 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"));