Mercurial > hg > easyhg
comparison 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 |
comparison
equal
deleted
inserted
replaced
19:39bbb7b00934 | 20:36e03b1f719e |
---|---|
1186 hgPushAct = new QAction(QIcon(":/images/push.png"), tr("Push to remote"), this); | 1186 hgPushAct = new QAction(QIcon(":/images/push.png"), tr("Push to remote"), this); |
1187 hgPushAct->setStatusTip(tr("Push local changesets to remote repository")); | 1187 hgPushAct->setStatusTip(tr("Push local changesets to remote repository")); |
1188 | 1188 |
1189 //Workfolder actions | 1189 //Workfolder actions |
1190 hgStatAct = new QAction(QIcon(":/images/status.png"), tr("Refresh status"), this); | 1190 hgStatAct = new QAction(QIcon(":/images/status.png"), tr("Refresh status"), this); |
1191 hgStatAct->setStatusTip(tr("Refresh (info of) status of workfolder files (A=Added, M=Mofified, R=Removed, C=Clean, !=Locally deleted, ?=Not tracked, I=Ignored)")); | 1191 hgStatAct->setStatusTip(tr("Refresh (info of) status of workfolder files")); |
1192 | 1192 |
1193 hgFileDiffAct = new QAction(QIcon(":/images/diff.png"), tr("View filediff"), this); | 1193 hgFileDiffAct = new QAction(QIcon(":/images/diff.png"), tr("View filediff"), this); |
1194 hgFileDiffAct->setStatusTip(tr("Filediff: View differences between selected working folder file and local repository file")); | 1194 hgFileDiffAct->setStatusTip(tr("Filediff: View differences between selected working folder file and local repository file")); |
1195 | 1195 |
1196 hgFolderDiffAct = new QAction(QIcon(":/images/folderdiff.png"), tr("View folderdiff"), this); | 1196 hgFolderDiffAct = new QAction(QIcon(":/images/folderdiff.png"), tr("View folderdiff"), this); |
1210 | 1210 |
1211 hgUpdateAct = new QAction(QIcon(":/images/update.png"), tr("Update working folder"), this); | 1211 hgUpdateAct = new QAction(QIcon(":/images/update.png"), tr("Update working folder"), this); |
1212 hgUpdateAct->setStatusTip(tr("Update working folder from local repository")); | 1212 hgUpdateAct->setStatusTip(tr("Update working folder from local repository")); |
1213 | 1213 |
1214 hgCommitAct = new QAction(QIcon(":/images/commit.png"), tr("Commit / Save change(s)"), this); | 1214 hgCommitAct = new QAction(QIcon(":/images/commit.png"), tr("Commit / Save change(s)"), this); |
1215 hgCommitAct->setStatusTip(tr("Save selected file(s) or all changed files in working folder (and all subfolders)) to local repository")); | 1215 hgCommitAct->setStatusTip(tr("Save selected file(s) or all changed files in working folder (and all subfolders) to local repository")); |
1216 | 1216 |
1217 hgMergeAct = new QAction(QIcon(":/images/merge.png"), tr("Merge"), this); | 1217 hgMergeAct = new QAction(QIcon(":/images/merge.png"), tr("Merge"), this); |
1218 hgMergeAct->setStatusTip(tr("Merge two local repository changesets to working folder")); | 1218 hgMergeAct->setStatusTip(tr("Merge two local repository changesets to working folder")); |
1219 | 1219 |
1220 //Advanced actions | 1220 //Advanced actions |